2018-05-11 19:27:50 +00:00
|
|
|
#!/bin/sh
|
|
|
|
#
|
2018-05-11 21:08:31 +00:00
|
|
|
# based off of flashrom-x230
|
2018-05-11 19:27:50 +00:00
|
|
|
#
|
|
|
|
set -e -o pipefail
|
|
|
|
. /etc/functions
|
2018-12-06 23:24:28 +00:00
|
|
|
. /tmp/config
|
2018-05-11 19:27:50 +00:00
|
|
|
|
2020-02-19 21:33:43 +00:00
|
|
|
case "$CONFIG_FLASHROM_OPTIONS" in
|
2020-02-19 17:04:56 +00:00
|
|
|
-* )
|
|
|
|
echo "Board $CONFIG_BOARD detected, continuing..."
|
2018-05-11 21:08:31 +00:00
|
|
|
;;
|
2018-05-11 19:27:50 +00:00
|
|
|
* )
|
2018-05-11 21:08:31 +00:00
|
|
|
die "ERROR: No board has been configured!\n\nEach board requires specific flashrom options and it's unsafe to flash without them.\n\nAborting."
|
2018-05-11 19:27:50 +00:00
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
2019-12-24 04:49:54 +00:00
|
|
|
flashrom_progress() {
|
|
|
|
local current=0
|
|
|
|
local total_bytes=0
|
|
|
|
local percent=0
|
|
|
|
local IN=''
|
|
|
|
local spin='-\|/'
|
|
|
|
local spin_idx=0
|
|
|
|
local progressbar=''
|
|
|
|
local progressbar2=''
|
|
|
|
local status='init'
|
|
|
|
local prev_word=''
|
|
|
|
local prev_prev_word=''
|
2022-10-26 19:14:29 +00:00
|
|
|
local spaces=' '
|
|
|
|
local hashes='##################################################'
|
2019-12-24 04:49:54 +00:00
|
|
|
|
|
|
|
progressbar2=$(for i in `seq 48` ; do echo -ne ' ' ; done)
|
2022-10-26 19:14:29 +00:00
|
|
|
echo -e "\nInitializing Flash Programmer"
|
2019-12-24 04:49:54 +00:00
|
|
|
while true ; do
|
|
|
|
prev_prev_word=$prev_word
|
|
|
|
prev_word=$IN
|
2022-10-26 19:14:29 +00:00
|
|
|
read -r -d' ' IN
|
2019-12-24 04:49:54 +00:00
|
|
|
if [ "$total_bytes" != "0" ]; then
|
2022-10-26 19:14:29 +00:00
|
|
|
current=$(echo "$IN" | sed -nE 's/.*(0x[0-9a-f]+).*/\1/p')
|
2019-12-24 04:49:54 +00:00
|
|
|
if [ "${current}" != "" ]; then
|
|
|
|
percent=$((100 * (current + 1) / total_bytes))
|
|
|
|
pct1=$((percent / 2))
|
2022-10-26 19:14:29 +00:00
|
|
|
pct2=$((50 - percent / 2))
|
|
|
|
progressbar=${hashes:0:$pct1}
|
|
|
|
progressbar2=${spaces:0:$pct2}
|
2019-12-24 04:49:54 +00:00
|
|
|
fi
|
|
|
|
else
|
|
|
|
if [ "$prev_prev_word" == "Reading" ] && [ "$IN" == "bytes" ]; then
|
|
|
|
# flashrom may read the descriptor first, so ensure total_bytes is at least 4MB
|
|
|
|
if [[ $prev_word -gt 4194303 ]]; then
|
|
|
|
total_bytes=$prev_word
|
|
|
|
echo "Total flash size : $total_bytes bytes"
|
|
|
|
fi
|
|
|
|
fi
|
2022-10-26 19:14:29 +00:00
|
|
|
if [ "$prev_word" == "total_size:" ]; then
|
|
|
|
# Next is total size in bytes
|
|
|
|
total_bytes=$(echo "$IN" | grep -E -o '[0-9]+')
|
|
|
|
echo "Total flash size : $total_bytes bytes"
|
|
|
|
fi
|
2019-12-24 04:49:54 +00:00
|
|
|
fi
|
|
|
|
if [ "$percent" -gt 99 ]; then
|
|
|
|
spin_idx=4
|
|
|
|
else
|
|
|
|
spin_idx=$(( (spin_idx+1) %4 ))
|
|
|
|
fi
|
|
|
|
if [ "$status" == "init" ]; then
|
|
|
|
if [ "$IN" == "contents..." ]; then
|
|
|
|
status="reading"
|
|
|
|
echo "Reading old flash contents. Please wait..."
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
if [ "$status" == "reading" ]; then
|
|
|
|
if echo "${IN}" | grep "done." > /dev/null ; then
|
|
|
|
status="writing"
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
if [ "$status" == "writing" ]; then
|
|
|
|
echo -ne "Flashing: [${progressbar}${spin:$spin_idx:1}${progressbar2}] (${percent}%)\\r"
|
|
|
|
if echo "$IN" | grep "Verifying" > /dev/null ; then
|
|
|
|
status="verifying"
|
|
|
|
echo ""
|
|
|
|
echo "Verifying flash contents. Please wait..."
|
|
|
|
fi
|
|
|
|
if echo "$IN" | grep "identical" > /dev/null ; then
|
|
|
|
status="done"
|
2022-10-26 19:14:29 +00:00
|
|
|
echo ""
|
2019-12-24 04:49:54 +00:00
|
|
|
echo "The flash contents are identical to the image being flashed."
|
2022-10-26 19:14:29 +00:00
|
|
|
break
|
2019-12-24 04:49:54 +00:00
|
|
|
fi
|
|
|
|
fi
|
|
|
|
if [ "$status" == "verifying" ]; then
|
|
|
|
if echo "${IN}" | grep "VERIFIED." > /dev/null ; then
|
|
|
|
status="done"
|
|
|
|
echo "The flash contents were verified and the image was flashed correctly."
|
2022-10-26 19:14:29 +00:00
|
|
|
break
|
|
|
|
elif echo "${IN}" | grep "FAILED" > /dev/null ; then
|
|
|
|
echo 'Error while verifying flash content'
|
|
|
|
break
|
2019-12-24 04:49:54 +00:00
|
|
|
fi
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
echo ""
|
|
|
|
if [ "$status" == "done" ]; then
|
|
|
|
return 0
|
|
|
|
else
|
|
|
|
echo 'Error flashing coreboot -- see timestampped flashrom log in /tmp for more info'
|
|
|
|
echo ""
|
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2018-05-11 19:27:50 +00:00
|
|
|
flash_rom() {
|
|
|
|
ROM=$1
|
2018-05-15 23:24:24 +00:00
|
|
|
if [ "$READ" -eq 1 ]; then
|
2022-10-26 19:14:29 +00:00
|
|
|
flashrom $CONFIG_FLASHROM_OPTIONS -r "${ROM}" \
|
|
|
|
|| die "Backup to $ROM failed"
|
2018-05-15 23:24:24 +00:00
|
|
|
else
|
|
|
|
cp "$ROM" /tmp/${CONFIG_BOARD}.rom
|
|
|
|
sha256sum /tmp/${CONFIG_BOARD}.rom
|
|
|
|
if [ "$CLEAN" -eq 0 ]; then
|
|
|
|
preserve_rom /tmp/${CONFIG_BOARD}.rom \
|
|
|
|
|| die "$ROM: Config preservation failed"
|
|
|
|
fi
|
2019-08-01 03:53:04 +00:00
|
|
|
# persist serial number from CBFS
|
|
|
|
if cbfs -r serial_number > /tmp/serial 2>/dev/null; then
|
|
|
|
echo "Persisting system serial"
|
|
|
|
cbfs -o /tmp/${CONFIG_BOARD}.rom -d serial_number 2>/dev/null || true
|
|
|
|
cbfs -o /tmp/${CONFIG_BOARD}.rom -a serial_number -f /tmp/serial
|
|
|
|
fi
|
2020-10-18 18:48:25 +00:00
|
|
|
# persist PCHSTRP9 from flash descriptor
|
|
|
|
if [ "$CONFIG_BOARD" = "librem_l1um" ]; then
|
|
|
|
echo "Persisting PCHSTRP9"
|
|
|
|
flashrom $CONFIG_FLASHROM_OPTIONS -r /tmp/ifd.bin --ifd -i fd >/dev/null 2>&1 \
|
|
|
|
|| die "Failed to read flash descriptor"
|
|
|
|
dd if=/tmp/ifd.bin bs=1 count=4 skip=292 of=/tmp/pchstrp9.bin >/dev/null 2>&1
|
|
|
|
dd if=/tmp/pchstrp9.bin bs=1 count=4 seek=292 of=/tmp/${CONFIG_BOARD}.rom conv=notrunc >/dev/null 2>&1
|
|
|
|
fi
|
2018-05-11 19:27:50 +00:00
|
|
|
|
2020-02-19 21:33:43 +00:00
|
|
|
flashrom $CONFIG_FLASHROM_OPTIONS -w /tmp/${CONFIG_BOARD}.rom \
|
2019-12-24 04:49:54 +00:00
|
|
|
-V -o "/tmp/flashrom-$(date '+%Y%m%d-%H%M%S').log" 2>&1 | flashrom_progress \
|
|
|
|
|| die "$ROM: Flash failed"
|
2018-05-15 23:24:24 +00:00
|
|
|
fi
|
2018-05-11 19:27:50 +00:00
|
|
|
}
|
|
|
|
|
2018-05-15 23:24:24 +00:00
|
|
|
if [ "$1" == "-c" ]; then
|
2018-05-11 21:08:31 +00:00
|
|
|
CLEAN=1
|
2018-05-15 23:24:24 +00:00
|
|
|
READ=0
|
|
|
|
ROM="$2"
|
|
|
|
elif [ "$1" == "-r" ]; then
|
|
|
|
CLEAN=0
|
|
|
|
READ=1
|
2018-05-11 21:08:31 +00:00
|
|
|
ROM="$2"
|
2018-05-15 23:24:24 +00:00
|
|
|
touch $ROM
|
2018-05-11 19:27:50 +00:00
|
|
|
else
|
2018-05-11 21:08:31 +00:00
|
|
|
CLEAN=0
|
2018-05-15 23:24:24 +00:00
|
|
|
READ=0
|
2018-05-11 21:08:31 +00:00
|
|
|
ROM="$1"
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ ! -e "$ROM" ]; then
|
2018-05-15 23:24:24 +00:00
|
|
|
die "Usage: $0 [-c|-r] <path_to_image.rom>"
|
2018-05-11 19:27:50 +00:00
|
|
|
fi
|
|
|
|
|
2018-05-11 21:08:31 +00:00
|
|
|
flash_rom $ROM
|
2018-05-11 19:27:50 +00:00
|
|
|
exit 0
|