tools-uclibc/desktop: update build for uclibc desktop (lilblue)

This commit is contained in:
Anthony G. Basile 2014-01-24 13:08:07 -05:00
parent 7666dee327
commit 3d4d415a27
11 changed files with 32 additions and 7 deletions

View file

@ -19,6 +19,7 @@ mount_dirs() {
mount --bind /proc/ "${ROOTFS}"/proc/
mount --bind /dev/ "${ROOTFS}"/dev/
mount --bind /dev/pts "${ROOTFS}"/dev/pts/
mount -t tmpfs shm "${ROOTFS}"/dev/shm
mount --bind /sys/ "${ROOTFS}"/sys/
}
@ -156,6 +157,7 @@ cleanup_dirs() {
unmount_dirs() {
umount "${ROOTFS}"/sys/
umount "${ROOTFS}"/dev/shm
umount "${ROOTFS}"/dev/pts/
umount "${ROOTFS}"/dev/
umount "${ROOTFS}"/proc/