diff options
author | Daniel Baumann <daniel@debian.org> | 2013-02-18 13:56:07 +0100 |
---|---|---|
committer | Daniel Baumann <mail@daniel-baumann.ch> | 2013-05-06 14:50:06 +0200 |
commit | dbfe7b10d78d8a71ee404af0d3952af48eeb4d1d (patch) | |
tree | 709a2c9331091622e6b96bb22b52410d0109ccb1 /scripts/build/chroot_sysfs | |
parent | 04cec317cc4437eed514f4277f6779010e587662 (diff) | |
download | vyos-live-build-dbfe7b10d78d8a71ee404af0d3952af48eeb4d1d.tar.gz vyos-live-build-dbfe7b10d78d8a71ee404af0d3952af48eeb4d1d.zip |
Removing incomplete support for fakeroot.
Diffstat (limited to 'scripts/build/chroot_sysfs')
-rwxr-xr-x | scripts/build/chroot_sysfs | 29 |
1 files changed, 8 insertions, 21 deletions
diff --git a/scripts/build/chroot_sysfs b/scripts/build/chroot_sysfs index a40078f30..4dab358db 100755 --- a/scripts/build/chroot_sysfs +++ b/scripts/build/chroot_sysfs @@ -43,17 +43,11 @@ case "${1}" in # Creating lock file Create_lockfile .lock - if [ "${LB_USE_FAKEROOT}" != "true" ] - then - # Create mountpoint - mkdir -p chroot/sys - - # Mounting /sys - mount sysfs-live -t sysfs chroot/sys - else - rm -rf chroot/sys - ln -s /sys chroot/ - fi + # Create mountpoint + mkdir -p chroot/sys + + # Mounting /sys + mount sysfs-live -t sysfs chroot/sys # Creating stage file Create_stagefile .build/chroot_sysfs @@ -68,17 +62,10 @@ case "${1}" in # Creating lock file Create_lockfile .lock - if [ "${LB_USE_FAKEROOT}" != "true" ] + # Unmounting /sys + if [ -e chroot/sys/class ] then - # Unmounting /sys - #fuser -km chroot/sys - if [ -e chroot/sys/class ] - then - umount chroot/sys - fi - else - rm -rf chroot/sys - mkdir -p chroot/sys + umount chroot/sys fi # Removing stage file |