blob: 7333b3fa581ccb823106b445da7803b98afab85e (
plain) (
blame)
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
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
|
#!/usr/bin/env bash
# Copyright (C) 2016 Paul Kocialkowski <contact@paulk.fr>
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
SYS_BLOCK_PATH="/sys/class/block"
DEV_PATH="/dev"
DEVICE="device"
VENDOR="vendor"
MODEL="model"
NAME="name"
usage() {
printf '%s\n' "$executable [action] [storage] [kernel image|kernel modules]" >&2
printf '\n%s\n' 'Actions:' >&2
printf '%s\n' ' backup - Backup kernel image' >&2
printf '%s\n' ' image - Install kernel image' >&2
printf '%s\n' ' modules - Install kernel modules' >&2
usage_storage
printf '\n%s\n' 'Environment variables:' >&2
printf '%s\n' ' VBOOT_KEYS_PATH - Path to the vboot keys' >&2
printf '%s\n' ' VBOOT_TOOLS_PATH - Path to vboot tools' >&2
}
usage_storage() {
printf '\n%s\n' 'Storage:' >&2
local nodes=$( ls "$SYS_BLOCK_PATH" )
local node_path
local name
for node in $nodes
do
node_path="$DEV_PATH/$node"
if ! [ -b "$node_path" ]
then
continue
fi
name=$( storage_name "$node_path" )
if [ -z "$name" ]
then
continue
fi
printf '%s\n' " $node_path - $name" >&2
done
}
storage_affect_confirm() {
local storage_path=$1
local name=$( storage_name "$storage_path" )
local confirm
printf '%s\n' 'This is going to affect the following storage:'
printf '%s\n' " $storage_path - $name"
printf '%s' 'Press enter to confirm: '
read confirm
}
storage_name() {
local storage_path=$1
local node=$( basename "$storage_path" )
local vendor_path="$SYS_BLOCK_PATH/$node/$DEVICE/$VENDOR"
local model_path="$SYS_BLOCK_PATH/$node/$DEVICE/$MODEL"
local name_path="$SYS_BLOCK_PATH/$node/$DEVICE/$NAME"
local vendor
local name
if [ -f "$model_path" ]
then
name=$( cat "$model_path" )
elif [ -f "$name_path" ]
then
name=$( cat "$name_path" )
else
return 0
fi
name=$( printf '%s\n' "$name" | sed -e "s/^[[:space:]]*//;s/[[:space:]]*$//" )
if [ -f "$vendor_path" ]
then
vendor=$( cat "$vendor_path" )
vendor=$( printf '%s\n' "$vendor" | sed -e "s/^[[:space:]]*//;s/[[:space:]]*$//" )
name="$vendor $name"
fi
printf '%s\n' "$name"
}
storage_partition_path() {
local storage_path=$1
local index=$2
storage_partition_path="$storage_path$index"
if ! [ -b "$storage_partition_path" ]
then
storage_partition_path="$storage_path""p$index"
fi
if ! [ -b "$storage_partition_path" ]
then
return 1
fi
printf '%s\n' "$storage_partition_path"
}
storage_partition_mount_path() {
local storage_partition_path=$1
local storage_partition_mount_path=$( udisksctl info -b "$storage_partition_path" | grep "MountPoints" | sed "s/.*MountPoints:[[:space:]]*\(.*\)/\1/g" )
printf '%s\n' "$storage_partition_mount_path"
}
storage_kernel_path() {
local storage_path=$1
cgpt find -t kernel "$storage_path" | head -n 1
}
storage_rootfs_path() {
local storage_path=$1
cgpt find -t rootfs "$storage_path" | head -n 1
}
backup() {
local storage_path=$1
local kernel_image_path=$2
local storage_kernel_path=$( storage_kernel_path "$storage_path" )
if [ -z "$storage_kernel_path" ]
then
printf '%s\n' "No kernel partition found on storage $storage_path" >&2
return 1
fi
cat "$storage_kernel_path" > "$kernel_image_path"
printf '\n%s\n' "Backed up kernel image to $kernel_image_path"
}
image() {
local storage_path=$1
local kernel_image_path=$2
local storage_kernel_path=$( storage_kernel_path "$storage_path" )
if [ -z "$storage_kernel_path" ]
then
printf '%s\n' "No kernel partition found on storage $storage_path" >&2
return 1
fi
storage_affect_confirm "$storage_path"
cat "$kernel_image_path" > "$storage_kernel_path"
sync
printf '\n%s\n' "Installed kernel image on storage $storage_path"
}
modules() {
local storage_path=$1
local kernel_modules_path=$2
local storage_rootfs_path=$( storage_rootfs_path "$storage_path" )
if [ -z "$storage_rootfs_path" ]
then
printf '%s\n' "No rootfs partition found on storage $storage_path" >&2
return 1
fi
storage_affect_confirm "$storage_path"
# Partition may already be mounted.
udisksctl mount -b "$storage_rootfs_path" || true
storage_rootfs_mount_path=$( storage_partition_mount_path "$storage_rootfs_path" )
rsync -a --keep-dirlinks "$kernel_modules_path" "$storage_rootfs_mount_path/"
sync
udisksctl unmount -b "$storage_rootfs_path"
printf '\n%s\n' "Installed kernel modules on storage $storage_path"
}
requirements() {
local requirement
local requirement_path
for requirement in "$@"
do
requirement_path=$( which "$requirement" || true )
if [ -z "$requirement_path" ]
then
printf '%s\n' "Missing requirement: $requirement" >&2
exit 1
fi
done
}
setup() {
root=$(readlink -f "$( dirname "$0" )" )
executable=$( basename "$0" )
if ! [ -z "$VBOOT_TOOLS_PATH" ]
then
PATH="$PATH:$VBOOT_TOOLS_PATH"
fi
if [ -z "$VBOOT_KEYS_PATH" ]
then
if ! [ -z "$VBOOT_TOOLS_PATH" ] && [ -d "$VBOOT_TOOLS_PATH/devkeys" ]
then
VBOOT_KEYS_PATH="$VBOOT_TOOLS_PATH/devkeys"
else
VBOOT_KEYS_PATH="/usr/share/vboot/devkeys"
fi
fi
}
cros_kernel_install() {
local action=$1
local storage_path=$2
local kernel_image_path=$3
local kernel_modules_path=$3
set -e
setup "$@"
if [ -z "$action" ] || [ -z "$storage_path" ] || [ -z "$kernel_image_path" ] || [ -z "$kernel_modules_path" ]
then
usage
exit 1
fi
case $action in
"backup")
requirements "cgpt"
backup "$storage_path" "$kernel_image_path"
;;
"image")
requirements "cgpt"
image "$storage_path" "$kernel_image_path"
;;
"modules")
requirements "cgpt"
modules "$storage_path" "$kernel_modules_path"
;;
*)
usage
exit 1
;;
esac
}
cros_kernel_install "$@"
|