summaryrefslogtreecommitdiff
path: root/archiso
diff options
context:
space:
mode:
authorSven-Hendrik Haase <sh@lutzhaase.com>2009-06-12 07:28:57 -0700
committerAaron Griffin <aaronmgriffin@gmail.com>2009-06-12 07:28:57 -0700
commit6be0f68611e8796093e8091de32707d43885cb67 (patch)
treefe13384324c414dac473203f1d2c3ed9f04778f6 /archiso
parentd3cb36a83d2ec577071a7bffe4aaf672aefeed82 (diff)
Fix a typo in the archiso hook
remount,append=: should be remount,append: Signed-off-by: Aaron Griffin <aaronmgriffin@gmail.com>
Diffstat (limited to 'archiso')
-rw-r--r--archiso/hooks/archiso2
1 files changed, 1 insertions, 1 deletions
diff --git a/archiso/hooks/archiso b/archiso/hooks/archiso
index 6b9aa6c..d779478 100644
--- a/archiso/hooks/archiso
+++ b/archiso/hooks/archiso
@@ -33,7 +33,7 @@ _mnt_squashfs()
fi
/bin/mount -r -t squashfs "/dev/loop${LOOP_NUM}" "/tmpfs/mnt/loop${LOOP_NUM}"
if [ "${mnt}" = "/" ]; then
- /bin/mount -t aufs -o remount,append=:/tmpfs/mnt/loop${LOOP_NUM}=ro none "/real_root"
+ /bin/mount -t aufs -o remount,append:/tmpfs/mnt/loop${LOOP_NUM}=ro none "/real_root"
else
_mnt_bind "/tmpfs/mnt/loop${LOOP_NUM}" "${mnt}"
fi