diff options
author | Francis Rowe <info@gluglug.org.uk> | 2015-06-08 09:23:55 (EDT) |
---|---|---|
committer | Francis Rowe <info@gluglug.org.uk> | 2015-06-08 09:23:55 (EDT) |
commit | a1f4f22a0dc01872153c2a23a217df142a6644e2 (patch) | |
tree | f0a91c00569e70184fccc76ad44a6ed0eb3ab8dd /resources/scripts/helpers | |
parent | 8f9e414149ff76151f71cf5eef33e53c4f99ca61 (diff) | |
download | libreboot-a1f4f22a0dc01872153c2a23a217df142a6644e2.zip libreboot-a1f4f22a0dc01872153c2a23a217df142a6644e2.tar.gz libreboot-a1f4f22a0dc01872153c2a23a217df142a6644e2.tar.bz2 |
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/scripts/helpers')
-rwxr-xr-x | resources/scripts/helpers/build/release/util | 55 |
1 files changed, 0 insertions, 55 deletions
diff --git a/resources/scripts/helpers/build/release/util b/resources/scripts/helpers/build/release/util index 87880e3..b5f4bdf 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 # ------------- |