Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/configs/default
diff options
context:
space:
mode:
Diffstat (limited to 'configs/default')
-rw-r--r--configs/default/Makefile30
-rw-r--r--configs/default/menu.lst15
-rw-r--r--configs/default/mkinitcpio.conf6
3 files changed, 0 insertions, 51 deletions
diff --git a/configs/default/Makefile b/configs/default/Makefile
deleted file mode 100644
index 82482be..0000000
--- a/configs/default/Makefile
+++ /dev/null
@@ -1,30 +0,0 @@
-#### Change these settings to modify how this ISO is built
-# The directory that we use for working files
-WORKDIR=work
-# A list of packages to install, space separated. Can include groups
-PACKAGES="base grub"
-# The name of our ISO. Does not specify the architecture!
-ISONAME=sample-1.0.0.iso
-
-all:
- mkarchiso -p "$(PACKAGES)" create "$(WORKDIR)"
-
- # Do any editing to $(WORKDIR)/iso/ or $(WORKDIR)/root-image/ here
- # Copy grub files to the ISO dir so we can boot it
- mkdir -p "$(WORKDIR)/iso/boot/grub"
- mv "$(WORKDIR)/root-image/boot" "$(WORKDIR)/iso/"
- cp -r "$(WORKDIR)/root-image/usr/lib/grub/i386-pc/"* "$(WORKDIR)/iso/boot/grub"
-
- # Use our own menu.lst
- cp menu.lst "$(WORKDIR)/iso/boot/grub/"
-
- #Rebuild the mkinitcpio image with the archiso hook
- mkinitcpio -c mkinitcpio.conf -b "$(WORKDIR)/root-image" -k $(kver) -g "$(WORKDIR)/iso/boot/archiso.img"
-
- mkarchiso -p grub iso "$(WORKDIR)" "$(ISONAME)"
-
- # Cleanup our working dir
- rm -rf "$(WORKDIR)"
-
-clean:
- rm -rf "$(WORKDIR)" "$(ISONAME)"
diff --git a/configs/default/menu.lst b/configs/default/menu.lst
deleted file mode 100644
index 8cad364..0000000
--- a/configs/default/menu.lst
+++ /dev/null
@@ -1,15 +0,0 @@
-timeout 30
-default 0
-color light-blue/blue black/light-grey
-splashimage=/boot/splash.xpm.gz
-
-title Boot Arch Linux Live CD
-kernel /boot/vmlinuz26 lang=en locale=en_US.UTF-8 tmpfs_size=75%
-initrd /boot/archiso.img
-
-title Shutdown the Computer
-halt
-
-title Reboot the Computer
-reboot
-
diff --git a/configs/default/mkinitcpio.conf b/configs/default/mkinitcpio.conf
deleted file mode 100644
index e8cb0af..0000000
--- a/configs/default/mkinitcpio.conf
+++ /dev/null
@@ -1,6 +0,0 @@
-# vim:set ft=sh
-MODULES=""
-BINARIES=""
-FILES=""
-
-HOOKS="base udev archiso ide scsi sata usb fw filesystems"