File tree Expand file tree Collapse file tree 2 files changed +12
-0
lines changed
Expand file tree Collapse file tree 2 files changed +12
-0
lines changed Original file line number Diff line number Diff line change @@ -21,6 +21,7 @@ deploy:
2121 - build/kexec-tools/build/sbin/kexec
2222 - build/flashrom/flashrom
2323 - build/memtester/memtester
24+ - build/vpd/vpd
2425 skip_cleanup : true
2526 on :
2627 repo : systemboot/binaries
Original file line number Diff line number Diff line change @@ -6,6 +6,7 @@ OUTDIR="${BASEDIR}/build"
66KEXEC_TOOLS_VERSION=" tags/v2.0.17"
77FLASHROM_VERSION=" tags/v1.0"
88MEMTESTER_VERSION=4.3.0
9+ VPD_VERSION=" release-R74-11895.B"
910
1011rm -rf " ${OUTDIR} "
1112mkdir -p " ${OUTDIR} "
@@ -45,3 +46,13 @@ cd "memtester-${MEMTESTER_VERSION}"
4546CFLAGS=-Os CC=musl-gcc make # build statically
4647du -hs memtester
4748ldd memtester
49+
50+ # build vpd
51+ cd " ${OUTDIR} "
52+ git clone https://chromium.googlesource.com/chromiumos/platform/vpd
53+ cd vpd
54+ git checkout " ${VPD_VERSION} "
55+ make
56+ strip vpd
57+ du -hs vpd
58+ ldd vpd
You can’t perform that action at this time.
0 commit comments