Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/hooks/boot-usb
diff options
context:
space:
mode:
authorSimo Leone <simo@archlinux.org>2007-10-05 20:52:03 -0500
committerDan McGee <dpmcgee@gmail.com>2007-10-09 20:59:26 -0500
commit0ed7712017ddeb24973dcf3cc61d2d3bf479c5ae (patch)
tree88a665c231217faf142311939235fd2906bcc38a /hooks/boot-usb
parentc2c8c2a77a4feb7fd948933cc11cffb0595acf71 (diff)
Fixed references to archiso.sqfs
Appears to have been changed to archlive.sqfs, a couple hooks refered to the old name and didn't work. Signed-off-by: Simo Leone <simo@archlinux.org>
Diffstat (limited to 'hooks/boot-usb')
-rw-r--r--hooks/boot-usb2
1 files changed, 1 insertions, 1 deletions
diff --git a/hooks/boot-usb b/hooks/boot-usb
index 9898ff6..bb86596 100644
--- a/hooks/boot-usb
+++ b/hooks/boot-usb
@@ -10,7 +10,7 @@ run_hook ()
for usb in /dev/sd[a-z][0-9]; do
if mount -r -t vfat "${usb}" ${bootmnt} >/dev/null 2>&1 ||\
mount -r -t ext2 "${usb}" ${bootmnt} >/dev/null 2>&1; then
- if [ -e "${bootmnt}/archiso.sqfs" ]; then
+ if [ -e "${bootmnt}/archlive.sqfs" ]; then
found=1
msg "${usb}"
break