diff options
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 | bc8ec134e107af1e92871ebba0b1d5c6e8cae9bc (patch) | |
tree | 754828fdbebd44046fe99b85f6e14d497625c6c4 /hooks/boot-cd | |
parent | 34c7ce71932e9edf3640928f65652d37415a6fc0 (diff) | |
download | archiso32-bc8ec134e107af1e92871ebba0b1d5c6e8cae9bc.tar.xz |
Slight updates to initcpio hooks
* Get rid of unnecessary trailing slash on BOOT_MOUNT variable
* Fix -eq/= mixup- we are comparing strings, not numbers
* Don't unmount /dev, as it was never mounted
Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'hooks/boot-cd')
-rw-r--r-- | hooks/boot-cd | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hooks/boot-cd b/hooks/boot-cd index a9b6f61..1773023 100644 --- a/hooks/boot-cd +++ b/hooks/boot-cd @@ -3,7 +3,7 @@ run_hook () msg ":: Scanning for boot cdrom device..." /bin/mkdir -p /bootmnt - bootmnt="/bootmnt/" + bootmnt="/bootmnt" found=0 /bin/modprobe -q isofs >/dev/null 2>&1 |