index : mkinitcpio-archiso32 | |
Archlinux32 initcpio scripts used by archiso | gitolite user |
summaryrefslogtreecommitdiff |
author | Dan McGee <dan@archlinux.org> | 2007-10-10 22:57:29 -0500 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2007-10-10 23:05:26 -0500 |
commit | 9aa96d8b07637705e4d0feecdaf6fe3239a88829 (patch) | |
tree | 936da89ca3af1621aded94bc67e89375acbcca26 /hooks/archiso | |
parent | 6b0c16b4bdf7a172ce3b28a2d61b4799f56975b9 (diff) |
-rw-r--r-- | hooks/archiso | 3 |
diff --git a/hooks/archiso b/hooks/archiso index 43bbdad..f06e56b 100644 --- a/hooks/archiso +++ b/hooks/archiso @@ -7,7 +7,7 @@ run_hook () mount -t tmpfs -o "size=${ramdisk_size}" tmpfs /tmpfs msg "done." - if [ "x${BOOT_MOUNT}" -eq "x" ]; then + if [ "x${BOOT_MOUNT}" = "x" ]; then echo "ERROR: BOOT_MOUNT is not set. The boot-cd or boot-usb hook MUST" echo " be run before this one. This image was improperly built" exit 1 @@ -50,7 +50,6 @@ run_hook () 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} } |