index : archiso32 | |
Archlinux32 iso tools | gitolite user |
summaryrefslogtreecommitdiff |
-rw-r--r-- | hooks/boot-cd | 6 |
diff --git a/hooks/boot-cd b/hooks/boot-cd index d6d9da6..a730412 100644 --- a/hooks/boot-cd +++ b/hooks/boot-cd @@ -3,14 +3,14 @@ run_hook () { msg ":: Scanning for boot cdrom device..." - /bin/mkdir -p /tmpfs/bootmnt - bootmnt="/tmpfs/bootmnt/" + /bin/mkdir -p /bootmnt + bootmnt="/bootmnt/" found=0 /bin/modprobe -q isofs >/dev/null 2>&1 for cdrom in /dev/cd/*; do if mount -r -t iso9660 "${cdrom}" ${bootmnt} >/dev/null 2>&1; then - if [ -e "${bootmnt}/archiso.sqfs" ]; then + if [ -e "${bootmnt}/archlive.sqfs" ]; then found=1 msg "${cdrom}" break |