-
-
Notifications
You must be signed in to change notification settings - Fork 66
/
external_install_top.sh
executable file
·276 lines (250 loc) · 6.48 KB
/
external_install_top.sh
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
#!/usr/bin/env bash
# SPDX-License-Identifier: GPL-3.0+
# Copyright (C) 2018, Martin Kepplinger <[email protected]>
RED='\033[0;31m'
GREEN='\033[0;32m'
NC='\033[0m'
set -e
cd "$(dirname "$0")"
source "util/functions.sh"
have_input_image=0
have_chipname=0
have_backupname=0
have_flasher=0
rpi_frequency=0
have_board=0
BOARD=""
usage()
{
echo "The Skulls coreboot distribution"
echo " Run this script on an external computer with a flasher"
echo " connected to the X230's top chip (closer to the display"
echo " and farther from you)"
echo ""
echo "Usage: $0 -b <board> [-i <image.rom>] [-c <chipname>] [-k <backup_filename>] [-f <flasher>] [-s <spispeed>]"
echo ""
echo " -b (x230|x230t|t430|t440p|t530|w530) board to flash."
echo " -f <hardware_flasher> supported flashers: rpi, ch341a, FT232H, Tigard"
echo " -i <image> path to image to flash"
echo " -c <chipname> to use for flashrom"
echo " -k <backup> save the current image as"
echo " -s <spi frequency> frequency of the RPi SPI bus in Hz. default: 128"
}
args=$(getopt -o f:i:c:k:hs:b: -- "$@")
if [ $? -ne 0 ] ; then
usage
exit 1
fi
eval set -- "$args"
while [ $# -gt 0 ]
do
case "$1" in
-b)
BOARD=$2
have_board=1
shift
;;
-f)
FLASHER=$2
have_flasher=1
shift
;;
-i)
INPUT_IMAGE_PATH=$2
have_input_image=1
shift
;;
-c)
CHIPNAME=$2
have_chipname=1
shift
;;
-k)
BACKUPNAME=$2
have_backupname=1
shift
;;
-s)
rpi_frequency=$2
shift
;;
-h)
usage
exit 1
;;
--)
shift
break
;;
*)
echo "Invalid option: $1"
exit 1
;;
esac
shift
done
# TODO make interactive and move to functions
if [ ! "$have_board" -gt 0 ] ; then
echo "No board specified. Please add -b <board>"
echo ""
usage
exit 1
fi
if [[ $BOARD == "x230" ]] ; then
echo "Board: $BOARD"
elif [[ $BOARD == "x230t" ]] ; then
echo "Board: $BOARD"
elif [[ $BOARD == "t430" ]] ; then
echo "Board: $BOARD"
elif [[ $BOARD == "t440p" ]] ; then
echo "Board: $BOARD"
elif [[ $BOARD == "t530" ]] ; then
echo "Board: $BOARD"
elif [[ $BOARD == "w530" ]] ; then
echo "Board: $BOARD"
else
echo "Unsupported board: $BOARD"
echo ""
usage
exit 1
fi
command -v flashrom >/dev/null 2>&1 || { echo -e >&2 "${RED}Please install flashrom and run as root${NC}."; exit 1; }
command -v mktemp >/dev/null 2>&1 || { echo -e >&2 "${RED}Please install mktemp (coreutils)${NC}."; exit 1; }
if [ ! "$have_input_image" -gt 0 ] ; then
image_available=$(ls -1 | grep ${BOARD}_coreboot_seabios || true)
if [ -z "${image_available}" ] ; then
echo "No image file found. Please add -i <file>"
echo ""
usage
exit 1
fi
prompt="Please select a file to flash or start with the -i option to use a different one:"
options=( $(find -maxdepth 1 -name "${BOARD}_coreboot*rom" -print0 | xargs -0) )
PS3="$prompt "
select INPUT_IMAGE_PATH in "${options[@]}" "Quit" ; do
if (( REPLY == 1 + ${#options[@]} )) ; then
exit
elif (( REPLY > 0 && REPLY <= ${#options[@]} )) ; then
break
else
echo "Invalid option. Try another one."
fi
done
fi
if [ ! "$have_flasher" -gt 0 ] ; then
echo "Please select the hardware you use:"
PS3='Please select the hardware flasher: '
options=("Raspberry Pi" "CH341A" "Tigard" "FT232H" "Quit")
select opt in "${options[@]}"
do
case $opt in
"Raspberry Pi")
FLASHER="rpi"
break
;;
"CH341A")
FLASHER="ch341a"
break
;;
"Tigard")
FLASHER="Tigard"
break
;;
"FT232H")
FLASHER="ft232h"
break
;;
"Quit")
exit 0
;;
*) echo invalid option;;
esac
done
fi
if [ ! "${rpi_frequency}" -gt 0 ] ; then
rpi_frequency=512
fi
programmer=""
if [ "${FLASHER}" = "rpi" ] ; then
programmer="linux_spi:dev=/dev/spidev0.0,spispeed=${rpi_frequency}"
elif [ "${FLASHER}" = "ch341a" ] ; then
programmer="ch341a_spi"
elif [ "${FLASHER}" = "Tigard" ] ; then
programmer="ft2232_spi:type=2232H,port=B,divisor=4"
elif [ "${FLASHER}" = "ft232h" ] ; then
programmer="ft2232_spi:type=232H,port=A,divisor=8"
else
echo "invalid flashrom programmer"
usage
exit 1
fi
TEMP_DIR=$(mktemp -d)
if [ ! -d "$TEMP_DIR" ]; then
echo "${RED}Error:${NC} Could not create temp dir"
exit 1
fi
if [ ! "$have_chipname" -gt 0 ] ; then
echo "trying to detect the chip..."
${FLASHROM} -p ${programmer} &> "${TEMP_DIR}"/chips || true
flashrom_error=""
flashrom_error=$(cat "${TEMP_DIR}"/chips | grep -i error || true)
if [ ! -z "${flashrom_error}" ] ; then
cat "${TEMP_DIR}"/chips
rm -rf "${TEMP_DIR}"
exit 1
fi
CHIPNAME=""
chip_found=0
if [ ! "$chip_found" -gt 0 ] ; then
CHIPNAME=$(cat "${TEMP_DIR}"/chips | grep Found | grep MX25L3206E | grep -oP '"\K[^"\047]+(?=["\047])' || true)
if [ ! -z "${CHIPNAME}" ] ; then
chip_found=1
fi
fi
if [ ! "$chip_found" -gt 0 ] ; then
CHIPNAME=$(cat "${TEMP_DIR}"/chips | grep Found | grep EN25QH32 | grep -oP '"\K[^"\047]+(?=["\047])' || true)
if [ ! -z "${CHIPNAME}" ] ; then
chip_found=1
fi
fi
if [ ! "$chip_found" -gt 0 ] ; then
CHIPNAME=$(cat "${TEMP_DIR}"/chips | grep Found | grep W25Q32.V | grep -o '".*"' | grep -oP '"\K[^"\047]+(?=["\047])' || true)
if [ ! -z "${CHIPNAME}" ] ; then
chip_found=1
fi
fi
if [ ! "$chip_found" -gt 0 ] ; then
echo "chip not detected."
${FLASHROM} -p ${programmer} || true
rm -rf "${TEMP_DIR}"
echo "Please find it manually in the list above and rerun with the -c parameter."
exit 1
else
echo -e "Detected ${GREEN}${CHIPNAME}${NC}."
fi
fi
INPUT_IMAGE_NAME=$(basename "${INPUT_IMAGE_PATH}")
INPUT_IMAGE_SIZE=$(wc -c < "$INPUT_IMAGE_PATH")
reference_filesize=4194304
if [ ! "$INPUT_IMAGE_SIZE" -eq "$reference_filesize" ] ; then
echo -e "${RED}Error:${NC} input file must be 4MB of size"
exit 1
fi
echo "verifying SPI connection by reading 2 times. please wait."
${FLASHROM} -p ${programmer} -c ${CHIPNAME} -r ${TEMP_DIR}/test1.rom
${FLASHROM} -p ${programmer} -c ${CHIPNAME} -r ${TEMP_DIR}/test2.rom
cmp "${TEMP_DIR}"/test1.rom "${TEMP_DIR}"/test2.rom
if [ "$have_backupname" -gt 0 ] ; then
cp "${TEMP_DIR}"/test1.rom "${BACKUPNAME}"
sha256sum "${TEMP_DIR}"/test1.rom > "${BACKUPNAME}".sha256
echo "current image saved as ${BACKUPNAME}"
fi
TEMP_SIZE=$(wc -c < "$TEMP_DIR/test1.rom")
if [ ! "$INPUT_IMAGE_SIZE" -eq "$TEMP_SIZE" ] ; then
echo -e "${RED}Error:${NC} read image (${TEMP_SIZE}) has different size that new image $INPUT_IMAGE_NAME (${INPUT_IMAGE_SIZE})"
exit 1
fi
rm -rf "${TEMP_DIR}"
echo -e "${GREEN}connection ok${NC}. flashing ${INPUT_IMAGE_NAME}"
${FLASHROM} -p ${programmer} -c "${CHIPNAME}" -w "${INPUT_IMAGE_PATH}"
echo -e "${GREEN}DONE${NC}"