blob: a61499c672d332741c216c2f92ca99b6a6394854 (
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
|
#!/bin/sh
# Exit if system was not booted by live-boot
grep -qs boot=live /proc/cmdline || exit 0
DO_SNAPSHOT=/sbin/live-snapshot
SNAPSHOT_CONF="/etc/live/boot.d/snapshot.conf"
# Read snapshot configuration variables
[ -r ${SNAPSHOT_CONF} ] && . ${SNAPSHOT_CONF}
# Define LSB log_* functions.
# Depend on lsb-base (>= 3.0-6) to ensure that this file is present.
. /lib/lsb/init-functions
# Try to cache everything we're likely to need after ejecting. This
# is fragile and simple-minded, but our options are limited.
cache_path()
{
path="${1}"
if [ -d "${path}" ]
then
find "${path}" -type f | xargs cat > /dev/null 2>&1
elif [ -f "${path}" ]
then
if file -L "${path}" | grep -q 'dynamically linked'
then
# ldd output can be of three forms:
# 1. linux-vdso.so.1 => (0x00007fffe3fb4000)
# This is a virtual, kernel shared library and we want to skip it
# 2. libc.so.6 => /lib/libc.so.6 (0x00007f5e9dc0c000)
# We want to cache the third word.
# 3. /lib64/ld-linux-x86-64.so.2 (0x00007f5e9df8b000)
# We want to cache the first word.
ldd "${path}" | while read line
do
if echo "$line" | grep -qs ' => '
then
continue
elif echo "$line" | grep -qs ' => '
then
lib=$(echo "${line}" | awk '{ print $3 }')
else
lib=$(echo "${line}" | awk '{ print $1 }')
fi
cache_path "${lib}"
done
fi
cat "${path}" >/dev/null 2>&1
fi
}
get_boot_device()
{
# search in /proc/mounts for the device that is mounted at /live/image
while read DEVICE MOUNT REST
do
if [ "${MOUNT}" = "/live/image" ]
then
echo "${DEVICE}"
exit 0
fi
done < /proc/mounts
}
device_is_USB_flash_drive()
{
# remove leading "/dev/" and all trailing numbers from input
DEVICE=$(expr substr ${1} 6 3)
# check that device starts with "sd"
[ "$(expr substr ${DEVICE} 1 2)" != "sd" ] && return 1
# check that the device is an USB device
if readlink /sys/block/${DEVICE} | grep -q usb
then
return 0
fi
return 1
}
log_begin_msg "live-boot: resyncing snapshots and caching reboot files..."
if ! grep -qs nopersistent /proc/cmdline && grep -qs persistent /proc/cmdline
then
# ROOTSNAP and HOMESNAP are defined in ${SNAPSHOT_CONF} file
if [ ! -z "${ROOTSNAP}" ]
then
${DO_SNAPSHOT} --resync-string="${ROOTSNAP}"
fi
if [ ! -z "${HOMESNAP}" ]
then
${DO_SNAPSHOT} --resync-string="${HOMESNAP}"
fi
fi
# check for netboot
if [ ! -z "${NETBOOT}" ] || grep -qs netboot /proc/cmdline || grep -qsi root=/dev/nfs /proc/cmdline || grep -qsi root=/dev/cifs /proc/cmdline
then
return 0
fi
# check for toram
if grep -qs toram /proc/cmdline
then
return 0
fi
# Don't prompt to eject the SD card on Babbage board, where we reuse it
# as a quasi-boot-floppy. Technically this uses a bit of ubiquity
# (archdetect), but since this is mostly only relevant for
# installations, who cares ...
if type archdetect >/dev/null 2>&1
then
subarch="$(archdetect)"
case $subarch in
arm*/imx51)
return 0
;;
esac
fi
prompt=1
if [ "${NOPROMPT}" = "Yes" ]
then
prompt=
fi
for path in $(which halt) $(which reboot) /etc/rc?.d /etc/default $(which stty) /bin/plymouth
do
cache_path "${path}"
done
for x in $(cat /proc/cmdline)
do
case ${x} in
quickreboot)
QUICKREBOOT="Yes"
;;
esac
done
mount -o remount,ro /live/cow
if [ -z ${QUICKREBOOT} ]
then
# Exit if the system was booted from an ISO image rather than a physical CD
grep -qs find_iso= /proc/cmdline && return 0
# TODO: i18n
BOOT_DEVICE="$(get_boot_device)"
if device_is_USB_flash_drive ${BOOT_DEVICE}
then
# do NOT eject USB flash drives!
# otherwise rebooting with most USB flash drives
# failes because they actually remember the
# "ejected" state even after reboot
MESSAGE="Please remove the USB flash drive"
if [ "${NOPROMPT}" = "usb" ]
then
prompt=
fi
else
# ejecting is a very good idea here
MESSAGE="Please remove the disc, close the tray (if any)"
if [ -x /usr/bin/eject ]
then
eject -p -m /live/image >/dev/null 2>&1
fi
if [ "${NOPROMPT}" = "cd" ]
then
prompt=
fi
fi
[ "$prompt" ] || return 0
if [ -x /bin/plymouth ] && plymouth --ping
then
plymouth message --text="${MESSAGE} and press ENTER to continue:"
plymouth watch-keystroke > /dev/null
else
stty sane < /dev/console
printf "\n\n${MESSAGE} and press ENTER to continue:" > /dev/console
read x < /dev/console
fi
fi
|