diff options
author | Scott Ullrich <sullrich@pfsense.org> | 2010-05-23 00:58:25 -0400 |
---|---|---|
committer | Scott Ullrich <sullrich@pfsense.org> | 2010-05-23 00:58:25 -0400 |
commit | 8b3a495bac40fdf967d7c1984ec0dcf1996c14db (patch) | |
tree | e87e71eb238334a631a9c190cb262d9ac861ce51 /etc | |
parent | 89e47a070a6bb0b73fdd8ef59c25d9f7eecd4b0a (diff) | |
download | pfsense-8b3a495bac40fdf967d7c1984ec0dcf1996c14db.zip pfsense-8b3a495bac40fdf967d7c1984ec0dcf1996c14db.tar.gz |
Make installer unionfs
Diffstat (limited to 'etc')
-rwxr-xr-x | etc/rc | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -112,7 +112,7 @@ if [ "$PLATFORM" = "cdrom" ] ; then mkdir /tmp/unionfs/bin mkdir /tmp/unionfs/boot mkdir /tmp/unionfs/confdefault - mkdir /tmp/unionfs/diskroot + mkdir /tmp/unionfs/PCBSD echo -n "Mounting unionfs directories:" echo -n " usr" mount_unionfs /tmp/unionfs/usr /usr/ @@ -126,6 +126,8 @@ if [ "$PLATFORM" = "cdrom" ] ; then mount_unionfs /tmp/unionfs/boot /boot/ echo -n " conf.default" mount_unionfs /tmp/unionfs/confdefault /conf.default/ + echo -n " installer" + mount_unionfs /tmp/unionfs/PCBSD /PCBSD/ echo "... done." fi |