blob: c78bb7bbfe751f6be0ebd55e2ab3681d3360a399 (
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
|
#!/bin/sh
usage="Usage: $0 disk1|disk2"
# Set target disk
if [ $# -gt 1 ] ; then
echo $usage
exit 1
fi
if [ $# -eq 1 ] ; then
if [ "$1" = "disk1" ] ; then
targ=/share/hdd/data
flag=.sdb1root
elif [ "$1" = "disk2" ] ; then
targ=/share/flash/data
flag=.sda1root
elif [ "$1" = "hdd-data" ] ; then
targ=/share/hdd/data
flag=.sdb1root
elif [ "$1" = "hdd-conf" ] ; then
targ=/share/hdd/conf
flag=.sdb2root
elif [ "$1" = "flash-data" ] ; then
targ=/share/flash/data
flag=.sda1root
elif [ "$1" = "flash-conf" ] ; then
targ=/share/flash/conf
flag=.sda2root
else
echo $usage
exit 1
fi
else
echo $usage
exit 1
fi
# Check it's a real mount point
if grep $targ /proc/mounts >/dev/null 2>&1 ; then
echo "Target disk is $targ"
else
echo "Error: $targ is not a mounted disk"
exit 1
fi
# Start at the root directory
cd /
# Save the existing ipkg database.
rm -rf $targ/usr/lib/ipkg.old
if [ -f $targ/usr/lib/ipkg/status ] ; then
mv $targ/usr/lib/ipkg $targ/usr/lib/ipkg.old
fi
# Copy the complete rootfs to the target.
echo "Copying the complete rootfs from / to $targ."
/usr/bin/find / -print0 -mount | /usr/bin/cpio -p -0 -d -m -u $targ
rm -rf $targ/dev ; mv $targ/dev.state $targ/dev
rm -rf $targ/var ; mv $targ/var.state $targ/var
# Copy over the existing ipkg database.
if [ -f $targ/usr/lib/ipkg.old/status ] ; then
echo "Preserving existing ipkg database on target disk."
( cd $targ/usr/lib/ipkg.old ; tar cf - . ) | ( cd $targ/usr/lib/ipkg ; tar xf - )
fi
echo "Linking /usr/bin/ipkg executable on target disk."
rm -f $targ/usr/bin/ipkg ; ln -s /usr/bin/ipkg-cl $targ/usr/bin/ipkg
# Create the boot flag file.
rm -f /.sd??root $targ/.sd??root
echo "Creating /$flag to direct switchbox to boot from $targ."
echo > /$flag
echo > $targ/$flag
exit 0
|