Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/create_cdrom.sh
diff options
context:
space:
mode:
authorAndreas Baumann <mail@andreasbaumann.cc>2018-02-04 21:16:10 +0100
committerAndreas Baumann <mail@andreasbaumann.cc>2018-02-04 21:16:10 +0100
commitae49983b15e102ff4850e2b387ebafc839cdc9e5 (patch)
treec853ccae95e60c0a3ca50be9814a7b0e73cd196e /create_cdrom.sh
parent02ad152b238969c713c6febb8954a7aea1787cb5 (diff)
added a simple CD-ROM creation script
Diffstat (limited to 'create_cdrom.sh')
-rwxr-xr-xcreate_cdrom.sh57
1 files changed, 57 insertions, 0 deletions
diff --git a/create_cdrom.sh b/create_cdrom.sh
new file mode 100755
index 0000000..b0dab38
--- /dev/null
+++ b/create_cdrom.sh
@@ -0,0 +1,57 @@
+#!/bin/sh
+
+. "./default.conf"
+
+# builds a small ISO image for stage 1 system:
+# no ramdisk, no modules, no fancy startup, just a shell script
+
+sudo rm -rf $STAGE1_ISOLINUX
+mkdir $STAGE1_ISOLINUX
+sudo cp -a $STAGE1_CHROOT/* $STAGE1_ISOLINUX/.
+sudo chown -R cross:cross $STAGE1_ISOLINUX/.
+cd $STAGE1_ISOLINUX
+mkdir boot/isolinux
+sudo chown cross:cross boot/isolinux/isolinux.cfg
+cat >boot/isolinux/isolinux.cfg <<EOF
+UI menu.c32
+TIMEOUT 300
+PROMPT 1
+LABEL hda
+ KERNEL /boot/vmlinuz-linux
+ APPEND root=/dev/hda init=/sbin/init console=ttyS0 console=tty0'
+LABEL hdb
+ KERNEL /boot/vmlinuz-linux
+ APPEND root=/dev/hdb init=/sbin/init console=ttyS0 console=tty0'
+LABEL hdc
+ KERNEL /boot/vmlinuz-linux
+ APPEND root=/dev/hdc init=/sbin/init console=ttyS0 console=tty0'
+LABEL hdd
+ KERNEL /boot/vmlinuz-linux
+ APPEND root=/dev/hdd init=/sbin/init console=ttyS0 console=tty0'
+LABEL sr0
+ KERNEL /boot/vmlinuz-linux
+ APPEND root=/dev/sr0 init=/sbin/init console=ttyS0 console=tty0'
+LABEL sr1
+ KERNEL /boot/vmlinuz-linux
+ APPEND root=/dev/sr1 init=/sbin/init console=ttyS0 console=tty0'
+EOF
+mkdir -p etc/init
+cat >etc/init/boot <<EOF
+#!/bin/sh
+mount -t proc proc /proc
+ln -s /proc/self/fd /dev/fd
+mount -t sysfs sys /sys
+mount -t tmpfs nodev,nosuid,size=4M /tmp
+exec /usr/bin/bash
+EOF
+sudo chown -R root:root .
+sudo chmod 0775 etc/init/boot
+sudo cp /usr/lib/syslinux/bios/ldlinux.c32 boot/isolinux/.
+sudo cp /usr/lib/syslinux/bios/menu.c32 boot/isolinux/.
+sudo cp /usr/lib/syslinux/bios/libutil.c32 boot/isolinux/.
+sudo cp /usr/lib/syslinux/bios/isolinux.bin boot/isolinux/.
+sudo genisoimage -J -r -o ../arch486.iso -b boot/isolinux/isolinux.bin \
+ -c boot/isolinux/boot.cat -input-charset UTF-8 -no-emul-boot \
+ -boot-load-size 4 -boot-info-table -joliet-long .
+cd ..
+