diff options
Diffstat (limited to 'scripts/build/chroot_sysfs')
-rwxr-xr-x | scripts/build/chroot_sysfs | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/scripts/build/chroot_sysfs b/scripts/build/chroot_sysfs index 041bf9706..09f26432f 100755 --- a/scripts/build/chroot_sysfs +++ b/scripts/build/chroot_sysfs @@ -11,7 +11,7 @@ set -e # Including common functions -. "${LH_BASE:-/usr/share/live/build}"/scripts/build.sh +. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh # Setting static variables DESCRIPTION="$(Echo 'mount /sys')" @@ -43,13 +43,13 @@ case "${1}" in # Creating lock file Create_lockfile .lock - if [ "${LH_USE_FAKEROOT}" != "true" ] + if [ "${LB_USE_FAKEROOT}" != "true" ] then # Create mountpoint mkdir -p chroot/sys # Mounting /sys - ${LH_ROOT_COMMAND} mount sysfs-live -t sysfs chroot/sys + ${LB_ROOT_COMMAND} mount sysfs-live -t sysfs chroot/sys else rm -rf chroot/sys ln -s /sys chroot/ @@ -68,13 +68,13 @@ case "${1}" in # Creating lock file Create_lockfile .lock - if [ "${LH_USE_FAKEROOT}" != "true" ] + if [ "${LB_USE_FAKEROOT}" != "true" ] then # Unmounting /sys #fuser -km chroot/sys if [ -e chroot/sys/class ] then - ${LH_ROOT_COMMAND} umount chroot/sys + ${LB_ROOT_COMMAND} umount chroot/sys fi else rm -rf chroot/sys |