Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/archiso/hooks
diff options
context:
space:
mode:
authorAaron Griffin <aaronmgriffin@gmail.com>2008-10-19 15:49:55 -0500
committerAaron Griffin <aaronmgriffin@gmail.com>2008-10-19 15:49:55 -0500
commitc2ffda39f9c400945ca0283eccfeda2afc40891b (patch)
tree572abd0052adb55026e5646f4b1c7bf02e60dcf2 /archiso/hooks
parentf3c061b5413fcb7ed7ea75036054ea14115b8f41 (diff)
Rename all uses of 'archlive' to 'archiso'
Additionally change grub prompts to use "ArchLinux LiveCD" as the boot item name Signed-off-by: Aaron Griffin <aaronmgriffin@gmail.com>
Diffstat (limited to 'archiso/hooks')
-rw-r--r--archiso/hooks/archiso10
1 files changed, 5 insertions, 5 deletions
diff --git a/archiso/hooks/archiso b/archiso/hooks/archiso
index 1464a6a..b614afd 100644
--- a/archiso/hooks/archiso
+++ b/archiso/hooks/archiso
@@ -47,7 +47,7 @@ run_hook ()
msg ":: Scanning cd drives..."
for cdrom in /dev/cd/*; do
if mount -r -t iso9660 "${cdrom}" ${bootmnt} >/dev/null 2>&1; then
- if [ -e "${bootmnt}/archlive.sqfs" ]; then
+ if [ -e "${bootmnt}/archiso.sqfs" ]; then
found=1
msg "${cdrom}"
break
@@ -63,7 +63,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}/archlive.sqfs" ]; then
+ if [ -e "${bootmnt}/archiso.sqfs" ]; then
found=1
msg "${usb}"
break
@@ -80,11 +80,11 @@ run_hook ()
exit 1
fi
- base_img="${bootmnt}/archlive.sqfs"
+ base_img="${bootmnt}/archiso.sqfs"
if [ "${copytoram}" = "y" ]; then
msg ":: Copying squashfs image to RAM"
- /bin/cat ${base_img} > /tmpfs/archlive.sqfs
- base_img="/tmpfs/archlive.sqfs"
+ /bin/cat ${base_img} > /tmpfs/archiso.sqfs
+ base_img="/tmpfs/archiso.sqfs"
fi
msg ":: Mounting squashfs image"