summaryrefslogtreecommitdiff
path: root/helpers/binary_virtual-hdd
diff options
context:
space:
mode:
Diffstat (limited to 'helpers/binary_virtual-hdd')
-rwxr-xr-xhelpers/binary_virtual-hdd7
1 files changed, 7 insertions, 0 deletions
diff --git a/helpers/binary_virtual-hdd b/helpers/binary_virtual-hdd
index 4e61c6b99..aeb701ad4 100755
--- a/helpers/binary_virtual-hdd
+++ b/helpers/binary_virtual-hdd
@@ -70,6 +70,13 @@ if [ "${LH_BUILD_WITH_CHROOT}" = "true" ]
then
mv binary-virtual.img chroot
+ # hack to recreate mtab from chroot_hacks if its gone for some reason
+ if ! Chroot chroot "test -s /etc/mtab"
+ then
+ Chroot chroot "rm -f /etc/mtab"
+ Chroot chroot "ln -s /proc/mounts /etc/mtab"
+ fi
+
case "${LH_BINARY_FILESYSTEM}" in
ext2)
Chroot chroot "mkfs.ext2 -F binary-virtual.img"