Fix a typo in the archiso hook

remount,append=: should be remount,append:

Signed-off-by: Aaron Griffin <aaronmgriffin@gmail.com>
This commit is contained in:
Sven-Hendrik Haase 2009-06-12 07:28:57 -07:00 committed by Aaron Griffin
parent d3cb36a83d
commit 6be0f68611

View File

@ -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