From a1f4f22a0dc01872153c2a23a217df142a6644e2 Mon Sep 17 00:00:00 2001 From: Francis Rowe Date: Mon, 08 Jun 2015 09:23:55 -0400 Subject: 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. --- 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 # ------------- -- cgit v0.9.1