2018-10-07 03:58:27 +02:00
|
|
|
#!/usr/bin/env bash
|
util: Add scripts to download and extract blobs
This turned out really handy when I tried to build coreboot
for my Chromebox.
These scripts can be used to extract System Agent reference code
and other blobs (e.g. mrc.bin, refcode, VGA option roms) from a
Chrome OS recovery image.
crosfirmware.sh downloads a Chrome OS recovery image from the recovery
image server, unpacks it, extracts the firmware update shell archive,
extracts the firmware images from the shell archive.
To download all Chrome OS firmware images, run
$ ./crosfirmware.sh
To download, e.g. the Panther firmware image, run
$ ./crosfirmware.sh panther
extract_blobs.sh extracts the blobs from a Chrome OS firmware image.
Right now it will produce the ME firmware blob, IFD, VGA option rom,
and mrc.bin
Change-Id: I5fb7e14b10e03e18cd360bc35f1dc92e8ed34e63
Signed-off-by: Joe Pillow <joseph.a.pillow@gmail.com>
Reviewed-on: https://review.coreboot.org/13752
Tested-by: build bot (Jenkins)
Reviewed-by: Martin Roth <martinroth@google.com>
2016-02-20 00:18:14 +01:00
|
|
|
#
|
|
|
|
# This file is part of the coreboot project.
|
|
|
|
#
|
|
|
|
# Copyright (C) 2016 Joe Pillow
|
|
|
|
#
|
|
|
|
# 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; version 2 of the License.
|
|
|
|
#
|
|
|
|
# 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.
|
|
|
|
#
|
|
|
|
|
2018-10-07 03:58:27 +02:00
|
|
|
set -x
|
|
|
|
|
util: Add scripts to download and extract blobs
This turned out really handy when I tried to build coreboot
for my Chromebox.
These scripts can be used to extract System Agent reference code
and other blobs (e.g. mrc.bin, refcode, VGA option roms) from a
Chrome OS recovery image.
crosfirmware.sh downloads a Chrome OS recovery image from the recovery
image server, unpacks it, extracts the firmware update shell archive,
extracts the firmware images from the shell archive.
To download all Chrome OS firmware images, run
$ ./crosfirmware.sh
To download, e.g. the Panther firmware image, run
$ ./crosfirmware.sh panther
extract_blobs.sh extracts the blobs from a Chrome OS firmware image.
Right now it will produce the ME firmware blob, IFD, VGA option rom,
and mrc.bin
Change-Id: I5fb7e14b10e03e18cd360bc35f1dc92e8ed34e63
Signed-off-by: Joe Pillow <joseph.a.pillow@gmail.com>
Reviewed-on: https://review.coreboot.org/13752
Tested-by: build bot (Jenkins)
Reviewed-by: Martin Roth <martinroth@google.com>
2016-02-20 00:18:14 +01:00
|
|
|
IMAGE=$1
|
|
|
|
|
|
|
|
if [ ! -r "$IMAGE" ]; then
|
|
|
|
echo "Can't find image $IMAGE."
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
CBFSTOOL=$(which cbfstool)
|
|
|
|
if [ $? != 0 ]; then
|
|
|
|
echo "Can't find cbfstool."
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
IFDTOOL=$(which ifdtool)
|
|
|
|
if [ $? != 0 ]; then
|
|
|
|
echo "Can't find ifdtool."
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
$CBFSTOOL $IMAGE print
|
|
|
|
|
|
|
|
if [ $? -ne 0 ]; then
|
|
|
|
echo "Not a coreboot image: $IMAGE"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
PCI=$($CBFSTOOL $IMAGE print|grep pci|cut -f1 -d\ )
|
|
|
|
MRC=$($CBFSTOOL $IMAGE print|grep mrc.bin|cut -f1 -d\ )
|
|
|
|
|
|
|
|
$CBFSTOOL $IMAGE extract -n $PCI -f $PCI
|
|
|
|
$CBFSTOOL $IMAGE extract -n $MRC -f $MRC
|
|
|
|
$IFDTOOL -x $IMAGE
|
|
|
|
mv flashregion_0_flashdescriptor.bin flashdescriptor.bin
|
|
|
|
mv flashregion_2_intel_me.bin me.bin
|
|
|
|
rm flashregion_*.bin
|