diff options
author | Gerardo Exequiel Pozzi <vmlinuz386@yahoo.com.ar> | 2011-11-16 21:35:46 -0300 |
---|---|---|
committer | Gerardo Exequiel Pozzi <vmlinuz386@yahoo.com.ar> | 2011-11-16 23:18:41 -0300 |
commit | baf0ae0013618f56f53ab94e55b83b0a1efc88f6 (patch) | |
tree | 5aad082cfda2b4340b2e7885da143038753f1f16 | |
parent | 54d2e0336aa299a2134a9c030e1c270381b5edde (diff) | |
download | archiso32-baf0ae0013618f56f53ab94e55b83b0a1efc88f6.tar.xz |
[archiso] Do not bind mount on /bootmnt
Boot media is already available in /run/archiso/bootmnt
if no copytoram is used.
Signed-off-by: Gerardo Exequiel Pozzi <vmlinuz386@yahoo.com.ar>
-rw-r--r-- | archiso/hooks/archiso | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/archiso/hooks/archiso b/archiso/hooks/archiso index e4872e2..ae17d40 100644 --- a/archiso/hooks/archiso +++ b/archiso/hooks/archiso @@ -242,9 +242,6 @@ archiso_mount_handler() { if [[ "${copytoram}" == "y" ]]; then umount /run/archiso/bootmnt - else - mkdir -p "${newroot}/bootmnt" - mount --bind /run/archiso/bootmnt "${newroot}/bootmnt" fi } |