summaryrefslogtreecommitdiff
path: root/helpers
diff options
context:
space:
mode:
authorDaniel Baumann <daniel@debian.org>2007-11-14 10:13:58 +0100
committerDaniel Baumann <daniel@debian.org>2011-03-09 18:22:29 +0100
commitec72b41c82c66d18a508759f17f54fcce59cfb69 (patch)
tree41edc828d00eb6693d651417de0f79c3dd2eb201 /helpers
parentd27d31616073636cce2e0d43f3157fbb5f7c0c8c (diff)
downloadlive-build-ec72b41c82c66d18a508759f17f54fcce59cfb69.zip
live-build-ec72b41c82c66d18a508759f17f54fcce59cfb69.tar.gz
Mounting pseudo filesystems before creating binary images in non-chrooted builds.
Diffstat (limited to 'helpers')
-rwxr-xr-xhelpers/lh_binary14
1 files changed, 11 insertions, 3 deletions
diff --git a/helpers/lh_binary b/helpers/lh_binary
index b6a30cd..63606e9 100755
--- a/helpers/lh_binary
+++ b/helpers/lh_binary
@@ -67,6 +67,13 @@ lh_binary_local-includes ${*}
lh_binary_local-hooks ${*}
lh_binary_md5sum ${*}
+if [ "${LH_CHROOT_BUILD}" != "enabled" ]
+then
+ lh_chroot_devpts install ${*}
+ lh_chroot_proc install ${*}
+ lh_chroot_sysfs install ${*}
+fi
+
# Building images
lh_binary_iso ${*}
lh_binary_net ${*}
@@ -80,7 +87,8 @@ then
lh_chroot_hostname remove ${*}
lh_chroot_resolv remove ${*}
lh_chroot_hosts remove ${*}
- lh_chroot_sysfs remove ${*}
- lh_chroot_proc remove ${*}
- lh_chroot_devpts remove ${*}
fi
+
+lh_chroot_sysfs remove ${*}
+lh_chroot_proc remove ${*}
+lh_chroot_devpts remove ${*}