aboutsummaryrefslogtreecommitdiff
path: root/resources
diff options
context:
space:
mode:
authorFrancis Rowe <info@gluglug.org.uk>2015-06-08 14:23:55 +0100
committerFrancis Rowe <info@gluglug.org.uk>2015-06-08 14:23:55 +0100
commita1f4f22a0dc01872153c2a23a217df142a6644e2 (patch)
treef0a91c00569e70184fccc76ad44a6ed0eb3ab8dd /resources
parent8f9e414149ff76151f71cf5eef33e53c4f99ca61 (diff)
downloadlibrebootfr-a1f4f22a0dc01872153c2a23a217df142a6644e2.tar.gz
librebootfr-a1f4f22a0dc01872153c2a23a217df142a6644e2.zip
build/release/util: don't include nvramtool and cbmem
These utilities are unnecessary for most people. The kinds of people that would need them can just as easily build them from source.
Diffstat (limited to 'resources')
-rwxr-xr-xresources/scripts/helpers/build/release/util55
1 files changed, 0 insertions, 55 deletions
diff --git a/resources/scripts/helpers/build/release/util b/resources/scripts/helpers/build/release/util
index 87880e3e..b5f4bdf2 100755
--- a/resources/scripts/helpers/build/release/util
+++ b/resources/scripts/helpers/build/release/util
@@ -177,61 +177,6 @@ rm -Rf ich9deblob
mv ich9deblob_ ich9deblob
cd ../../
-# -----------------
-# nvramtool related
-# -----------------
-# build nvramtool, compiled (statically linked) and include the binary
-cd coreboot/util/
-cp -R nvramtool nvramtool_
-cd nvramtool/
-make clean
-make SHARED=0 CC='gcc -static'
-mkdir ../../../libreboot_util/nvramtool
-
-mkdir ../../../libreboot_util/nvramtool/"$arch"
-mv nvramtool ../../../libreboot_util/nvramtool/"$arch"/
-
-if [ "$arch" = "x86_64" ]
- then
- # Now build 32-bit binaries
- make clean
- make SHARED=0 CC='gcc -static -m32'
- mkdir ../../../libreboot_util/nvramtool/i686
- mv nvramtool ../../../libreboot_util/nvramtool/i686/
-fi
-
-cd ../
-rm -Rf nvramtool
-mv nvramtool_ nvramtool
-cd ../../
-
-# -----------------
-# cbmem related
-# -----------------
-# build cbmem, compiled (statically linked) and include the binary
-cd coreboot/util/
-cp -R cbmem cbmem_
-cd cbmem/
-make clean
-make SHARED=0 CC='gcc -static'
-mkdir ../../../libreboot_util/cbmem
-
-mkdir ../../../libreboot_util/cbmem/"$arch"
-mv cbmem ../../../libreboot_util/cbmem/"$arch"/
-
-if [ "$arch" = "x86_64" ]
- then
- # Now build 32-bit binaries
- make clean
- make SHARED=0 CC='gcc -static -m32'
- mkdir ../../../libreboot_util/cbmem/i686
- mv cbmem ../../../libreboot_util/cbmem/i686/
-fi
-cd ../
-rm -Rf cbmem
-mv cbmem_ cbmem
-cd ../../
-
# -------------
# Miscellaneous
# -------------