diff options
-rw-r--r-- | Base/etc/fstab | 1 | ||||
-rwxr-xr-x | Meta/build-root-filesystem.sh | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/Base/etc/fstab b/Base/etc/fstab index 4c1f6a35e9..2c8ea0da07 100644 --- a/Base/etc/fstab +++ b/Base/etc/fstab @@ -9,5 +9,6 @@ /var /var bind bind,nodev,nosuid /www /www bind bind,nodev,nosuid /usr/Tests /usr/Tests bind bind,nodev,ro +/usr/local /usr/local bind bind,nodev,nosuid none /tmp tmp nodev,nosuid diff --git a/Meta/build-root-filesystem.sh b/Meta/build-root-filesystem.sh index c8fe60db3b..8355ccf460 100755 --- a/Meta/build-root-filesystem.sh +++ b/Meta/build-root-filesystem.sh @@ -122,7 +122,7 @@ chmod 755 mnt/res/devel/templates/*.postcreate echo "done" printf "creating initial filesystem structure... " -for dir in bin etc proc mnt tmp boot mod var/run; do +for dir in bin etc proc mnt tmp boot mod var/run usr/local; do mkdir -p mnt/$dir done chmod 700 mnt/boot |