blob: c5340ebbb94ea11d706be40ff7201e3760a22e4a (
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
43
44
45
46
47
48
49
50
51
52
|
#!/bin/sh
#set -e
Vyos ()
{
# live-initramfs header
. /scripts/functions
. /lib/live/boot/9990-initramfs-tools.sh
# live-initramfs script
# try floppy
# if we do not discover an fd device, try loading the floppy module
grep -q fd /proc/devices || modprobe -q floppy 2>/dev/null
if grep -q fd /proc/devices
then
mkdir -p /root/media/floppy
mount /dev/fd0 /root/media/floppy -o sync,noatime,noexec,nosuid,nodev
fi 2>/dev/null
# bind the vyatta config directory with the following precedence
# 1) backing store if present
# 2) floppy if present
# 3) create live/"overlay" which may or maynot be on a non-volatile device
# but is certainly read-write
unioncfgpath="$(trim_path /root/lib/${VYOS_MOUNT}/${PERSISTENCE_PATH}/rw)"
if [ -d /root/opt/vyatta/etc/config ]
then
if [ -d ${unioncfgpath}/config ]
then
log_begin_msg "Using ${unioncfgpath}/config..."
mount -o bind ${unioncfgpath}/config /root/opt/vyatta/etc/config
log_end_msg
elif [ -d /root/media/floppy/config ]
then
log_begin_msg "Using /root/media/floppy/config..."
mount -o bind /root/media/floppy/config /root/opt/vyatta/etc/config
log_end_msg
else
log_begin_msg "Creating ${unioncfgpath}/config..."
cp -a /root/opt/vyatta/etc/config ${unioncfgpath} >/dev/null 2>&1
mount -o bind ${unioncfgpath}/config /root/opt/vyatta/etc/config
log_end_msg
fi
fi
}
|