aboutsummaryrefslogtreecommitdiff
path: root/resources/scripts/helpers/download/crossgcc
diff options
context:
space:
mode:
authorLeah Rowe <info@minifree.org>2016-08-22 13:21:26 +0100
committerLeah Rowe <info@minifree.org>2016-08-22 13:21:26 +0100
commitddc4f2af70e09a2848ee2eb1705eca92e036923d (patch)
tree35f71c75194ce13e3b82cad5426894006dfec5e3 /resources/scripts/helpers/download/crossgcc
parent6548427829daf30b1fcd0e8f07fcfde58b591b8a (diff)
downloadlibrebootfr-ddc4f2af70e09a2848ee2eb1705eca92e036923d.tar.gz
librebootfr-ddc4f2af70e09a2848ee2eb1705eca92e036923d.zip
add vboot to crossgcc/ directory (needed for building cbfstool in release/util)
Diffstat (limited to 'resources/scripts/helpers/download/crossgcc')
-rwxr-xr-xresources/scripts/helpers/download/crossgcc7
1 files changed, 6 insertions, 1 deletions
diff --git a/resources/scripts/helpers/download/crossgcc b/resources/scripts/helpers/download/crossgcc
index 35bb2f38..6b77917c 100755
--- a/resources/scripts/helpers/download/crossgcc
+++ b/resources/scripts/helpers/download/crossgcc
@@ -34,14 +34,19 @@ fi
# coreboot revisios used for crossgcc
crossgccrevision="00aa45391ddb22b5ac24151d54615ca1d89eb745"
+vbootrevision="d187cd3fc792f8bcefbee4587c83eafbd08441fc"
rm -Rf "crossgcc/"
(
git clone https://review.coreboot.org/coreboot crossgcc || git clone https://github.com/coreboot/coreboot.git crossgcc
cd "crossgcc/"
git reset --hard ${crossgccrevision}
+ git submodule update --init --checkout -- 3rdparty/vboot/
+ (
+ cd 3rdparty/vboot/
+ git reset --hard ${vbootrevision}
+ )
rm -Rf .git* */*/.git*
- rm -Rf "3rdparty/"
)
printf "Deblobbing coreboot\n"