index : archiso32 | |
Archlinux32 iso tools | gitolite user |
summaryrefslogtreecommitdiff |
author | Aaron Griffin <aaron@archlinux.org> | 2006-09-11 08:36:37 +0000 |
---|---|---|
committer | Aaron Griffin <aaron@archlinux.org> | 2006-09-11 08:36:37 +0000 |
commit | 9e499e11b22ec0b26fda36b972829bcc45801abf (patch) | |
tree | 2bc9b0e0cf83cc7fed79d6652b96c40971693f3b /archlive_hook | |
parent | 9275011f0ec188df50e4a59e59a8019eed22e238 (diff) |
-rw-r--r-- | archlive_hook | 23 |
diff --git a/archlive_hook b/archlive_hook index 12d14c8..754c266 100644 --- a/archlive_hook +++ b/archlive_hook @@ -10,14 +10,21 @@ run_hook () msg "done." squashfound=0 + #TODO check for usb devices as well... msg -n ":: Scanning for boot cdrom device..." + squashimg="/tmpfs/bootcd/archlive.sqfs" + + /bin/modprobe -q isofs >/dev/null 2>&1 + PS1="ramfs$ " /bin/sh -i for cdrom in /dev/cd/*; do - if mount -r -t iso9660 "${cdrom}" /tmpfs/bootcd >/dev/null 2>&1; then - if [ -e /tmpfs/bootcd/archlive.sqfs ]; then + if mount -r -t isofs "${cdrom}" /tmpfs/bootcd >/dev/null 2>&1; then + if [ -e "${squashimg}" ]; then squashfound=1 msg "${cdrom}" break fi + else + echo "Failed to mount ${cdrom}" fi [ ${squashfound} -eq 0 ] && umount /tmpfs/bootcd >/dev/null 2>&1 done @@ -27,15 +34,20 @@ run_hook () exit 1 fi + if [ "${copytoram}" == "y" ]; then + /bin/cat /tmpfs/bootcd/archlive.sqfs > /tmpfs/archlive.sqfs + squashimg="/tmpfs/archlive.sqfs" + fi + msg -n ":: Mounting squashfs image..." /bin/modprobe -q squashfs >/dev/null 2>&1 /bin/mkdir -p /tmpfs/squashfs_root - if ! /bin/losetup /dev/loop0 /tmpfs/bootcd/archlive.sqfs; then + if ! /bin/losetup /dev/loop0 "${squashimg}"; then echo "ERROR: Cannot mount loop device /dev/loop0...aborting" exit 1 fi + /bin/mount -r -t squashfs /dev/loop0 /tmpfs/squashfs_root - #mount.full -r -t squashfs -o loop /tmpfs/bootcd/squashfs_image /tmpfs/squashfs_root msg "done." msg -n ":: Mounting root (union) filesystem..." @@ -52,5 +64,8 @@ run_hook () [ "x${udevpid}" != "x" ] && /bin/kill -9 $udevpid 2>&1 >/dev/null #Yep, we're bailing out here. We don't need kinit. msg ":: Passing control to Archlinux Initscripts...Please Wait" + /bin/umount /sys + /bin/umount /proc + /bin/umount /dev exec /bin/run-init -c /dev/console /real_root /sbin/init ${CMDLINE} } |