diff options
author | Michal Suchanek <hramrach@gmail.com> | 2012-10-05 15:32:05 +0200 |
---|---|---|
committer | Daniel Baumann <daniel@debian.org> | 2012-12-12 16:43:54 +0100 |
commit | bb0bb603ed3011e83727f89d89c27be4d2309a5a (patch) | |
tree | 6296ea40b4c27ebee256ae6db8944629831e46d1 /backends | |
parent | 28ad683d417e97fb94cbc0626c0d6999026fb872 (diff) | |
download | live-boot-bb0bb603ed3011e83727f89d89c27be4d2309a5a.tar.gz live-boot-bb0bb603ed3011e83727f89d89c27be4d2309a5a.zip |
Including util-linux mount in initramfs.
Diffstat (limited to 'backends')
-rwxr-xr-x | backends/initramfs-tools/live.hook | 14 |
1 files changed, 4 insertions, 10 deletions
diff --git a/backends/initramfs-tools/live.hook b/backends/initramfs-tools/live.hook index 3860f4c..c5b81b0 100755 --- a/backends/initramfs-tools/live.hook +++ b/backends/initramfs-tools/live.hook @@ -143,6 +143,10 @@ then copy_exec /usr/bin/eject /bin fi +# Program: mount +# fuse does not work with klibc mount +copy_exec /bin/mount /bin/mount.util-linux + [ "${QUIET}" ] || echo -n " utils" # Feature: Verify Checksums @@ -236,14 +240,4 @@ case "${LIVE_DNS}" in ;; esac -case "${LIVE_UNIONMOUNT}" in - true) - [ "${QUIET}" ] || echo -n " unionmount" - - # UnionMount - # only mount from patched util-linux can do this currently - copy_exec /bin/mount /bin/mount_full - ;; -esac - [ "${QUIET}" ] || echo . |