summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLeah Rowe <info@minifree.org>2016-07-18 19:14:40 (EDT)
committer Leah Rowe <info@minifree.org>2016-07-18 19:14:40 (EDT)
commitb5df1a4fe87a36d4d9e9434bec15a7a2ac902c44 (patch)
treed2541b839da5426712fb50c96ab18fc8b69894d1
parent2f4397439fb70ca603d4369a944d8f1e5afa9ac1 (diff)
downloadlibreboot-b5df1a4fe87a36d4d9e9434bec15a7a2ac902c44.zip
libreboot-b5df1a4fe87a36d4d9e9434bec15a7a2ac902c44.tar.gz
libreboot-b5df1a4fe87a36d4d9e9434bec15a7a2ac902c44.tar.bz2
make _util archive for releases source code only
-rwxr-xr-xresources/scripts/helpers/build/release/util65
1 files changed, 11 insertions, 54 deletions
diff --git a/resources/scripts/helpers/build/release/util b/resources/scripts/helpers/build/release/util
index 3b1c8bb..5f25de5 100755
--- a/resources/scripts/helpers/build/release/util
+++ b/resources/scripts/helpers/build/release/util
@@ -54,7 +54,7 @@ versiondir="release/${version}"
distname="libreboot_${version}_util"
distdir="${versiondir}/${distname}"
-printf "Creating utility archive (static executables)\n"
+printf "Creating utility archive (source code of commonly needed utilities)\n"
# delete the old data
rm -Rf "${distdir:?}/"
@@ -84,13 +84,10 @@ printf '%s\n' "${versiondate}" >"${distdir}/versiondate"
# --------------
# BUC.TS related
# --------------
-# X60/T60: BUC.TS utility is needed to flash libreboot while Lenovo BIOS is running
-# Include it statically compiled
cp -R "bucts" "bucts_/"
-# make it statically compile
-./build module bucts static
-mkdir -p "${distdir}/bucts/${arch}/"
-mv "bucts/bucts" "${distdir}/bucts/${arch}/"
+mkdir -p "${distdir}/bucts/"
+./build clean bucts
+cp -R "bucts/" "${distdir}/"
rm -Rf "bucts/"
mv "bucts_/" "bucts/"
@@ -100,63 +97,23 @@ mv "bucts_/" "bucts/"
# Flashrom is used to install libreboot on supported targets
# Include it statically compiled
cp -R "flashrom/" "flashrom_/"
-# make it statically compile
-./build module flashrom static
-mkdir -p "${distdir}/flashrom/${arch}/"
-mv "flashrom/flashrom" "${distdir}/flashrom/${arch}/"
-mv "flashrom/flashrom_lenovobios_sst" "${distdir}/flashrom/${arch}/"
-mv "flashrom/flashrom_lenovobios_macronix" "${distdir}/flashrom/${arch}/"
+./build clean flashrom
+cp -R "flashrom/" "${distdir}/"
rm -Rf "flashrom/"
mv "flashrom_/" "flashrom/"
-# ----------------
-# ich9deblob related
-# ----------------
-# build ich9deblob, compiled (statically linked) and include the binary
-
-mkdir -p "${distdir}/ich9deblob/${arch}"
-
-cd "resources/utilities/"
-cp -R "ich9deblob" "ich9deblob_/"
-cd "ich9deblob/"
-make clean
-make SHARED=0 CC='gcc -static'
-
-mv "ich9deblob" "../../../${distdir}/ich9deblob/${arch}/"
-mv "ich9gen" "../../../${distdir}/ich9deblob/${arch}/"
-mv "demefactory" "../../../${distdir}/ich9deblob/${arch}/"
-
-if [ "${arch}" = "x86_64" ]
- then
- # Now build 32-bit binaries
- make clean
- make SHARED=0 CC='gcc -static -m32'
- mkdir "../../../${distdir}/ich9deblob/i686/"
- mv "ich9deblob" "../../../${distdir}/ich9deblob/i686/"
- mv "ich9gen" "../../../${distdir}/ich9deblob/i686/"
- mv "demefactory" "../../../${distdir}/ich9deblob/i686/"
-fi
-
-# cross-compile for ARM
-make clean
-make SHARED=0 CC='arm-linux-gnueabi-gcc -static'
-mkdir "../../../${distdir}/ich9deblob/armv7l"
-mv "ich9deblob" "../../../${distdir}/ich9deblob/armv7l/"
-mv "ich9gen" "../../../${distdir}/ich9deblob/armv7l/"
-mv "demefactory" "../../../${distdir}/ich9deblob/armv7l/"
-
-cd "../"
-rm -Rf "ich9deblob/"
-mv "ich9deblob_/" "ich9deblob/"
-cd "../../"
-
# -------------
# Miscellaneous
# -------------
+cp -R "resources/" "${distdir}/"
+
# Flashing script
cp "flash" "${distdir}/"
+# Build script
+cp "build" "${distdir}/"
+
# powertop script
cp "resources/scripts/misc/powertop.trisquel7" "${distdir}/"