summaryrefslogtreecommitdiffstats
path: root/etc
diff options
context:
space:
mode:
Diffstat (limited to 'etc')
-rwxr-xr-xetc/rc6
-rwxr-xr-xetc/rc.cdrom7
2 files changed, 8 insertions, 5 deletions
diff --git a/etc/rc b/etc/rc
index 18bd5d3..b066ded 100755
--- a/etc/rc
+++ b/etc/rc
@@ -88,12 +88,12 @@ if [ "$PLATFORM" = "cdrom" ] ; then
mkdir /tmp/unionfs
mkdir /tmp/unionfs/usr
mkdir /tmp/unionfs/root
- echo -n "Mounting unionfs directories: "
- echo -n "usr"
+ echo -n "Mounting unionfs directories:"
+ echo -n " usr"
mount_unionfs /tmp/unionfs/usr /usr/
echo -n " root"
mount_unionfs /tmp/unionfs/root /root/
- echo " ... done."
+ echo "... done."
fi
echo -n "Creating symlinks..."
diff --git a/etc/rc.cdrom b/etc/rc.cdrom
index 38c5499..aa5ddf5 100755
--- a/etc/rc.cdrom
+++ b/etc/rc.cdrom
@@ -4,18 +4,21 @@
# For pfSense
# Size of memory file system /conf partition
-partsize="3m"
+partsize="6m"
# Run some initialization routines
/etc/rc.d/uzip start
export VARMFS_COPYDBPKG=yes
+echo -n "Starting memory file systems:"
for i in tmp varmfs etcmfs; do
if [ -f /etc/rc.d/$i ]; then
- sh /etc/rc.d/$i start
+ echo -n " $i"
+ sh /etc/rc.d/$i start
fi
done
+echo "... done."
# Start PFI
/bin/sh /scripts/pfi start
OpenPOWER on IntegriCloud