summaryrefslogtreecommitdiffstats
path: root/etc/rc.embedded
blob: 3ebf16f94f76c27407d129b8964b04f75bb0438c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
#!/bin/sh
#
# rc.embedded - embedded system specific startup information
# For pfSense

# Size of memory file system /conf partition
partsize="3m"

# Size of /tmp
tmpsize="40m"

# Size of /var
varsize="20m"

# Run some initialization routines
[ -f /etc/rc.d/uzip ] && /etc/rc.d/uzip start

if [ `cat /etc/platform | grep "nanobsd"` ]; then
	echo -n "Setting up NanoBSD/embedded specific environment..."
	# Init /etc and /var, /tmp to point towards /var/tmp
	# All these to be done by rc.initdiskless
    sh /etc/rc.initdiskless
else
	echo -n "Setting up embedded specific environment..."
	# Initialize MFS for /tmp. Partly taken from /etc/rc.d/var
    if (/bin/mkdir -p /tmp/.diskless 2> /dev/null); then
		rmdir /tmp/.diskless
    else
		mdmfs -S -M -s ${tmpsize} md /tmp
    fi
	# Initialize MFS for /var. Partly taken from /etc/rc.d/var
    if (/bin/mkdir -p /var/.diskless 2> /dev/null); then
		rmdir /var/.diskless
    else
		mdmfs -S -M -s ${varsize} md /var
    fi
fi

# Create some needed directories
/bin/mkdir -p /var/db/pkg/
/bin/mkdir -p /var/tmp/vi.recover/
echo " done."
OpenPOWER on IntegriCloud