diff options
author | Klemens Nanni <contact@autoboot.org> | 2015-11-05 18:17:26 +0100 |
---|---|---|
committer | Francis Rowe <info@gluglug.org.uk> | 2015-11-05 17:46:05 +0000 |
commit | 58caf14937c73246b1b2aca31b5c92c49332fb01 (patch) | |
tree | 5775506b5e64c505a04dec8229facb757001118e /resources/scripts/helpers/build/module/grub | |
parent | 03196594ba97c9b3a29e3ebf4f0ce1af218b80ee (diff) | |
download | librebootfr-58caf14937c73246b1b2aca31b5c92c49332fb01.tar.gz librebootfr-58caf14937c73246b1b2aca31b5c92c49332fb01.zip |
Simplify ./build module routines
Diffstat (limited to 'resources/scripts/helpers/build/module/grub')
-rwxr-xr-x | resources/scripts/helpers/build/module/grub | 13 |
1 files changed, 4 insertions, 9 deletions
diff --git a/resources/scripts/helpers/build/module/grub b/resources/scripts/helpers/build/module/grub index 47589d54..030dd952 100755 --- a/resources/scripts/helpers/build/module/grub +++ b/resources/scripts/helpers/build/module/grub @@ -20,12 +20,12 @@ # # This script assumes that the working directory is the root -# of libreboot_src or git +# of git or release archive [ "x${DEBUG+set}" = 'xset' ] && set -v set -u -e -# Build utilies needed for building GRUB payloads +# Build GRUB as coreboot payload # --------------------------------------------------------------------- printf "Building GRUB\n" @@ -33,14 +33,9 @@ printf "Building GRUB\n" cd "grub/" # clean it first -[ -f Makefile ] && make distclean +make distclean # build grub ./autogen.sh ./configure --with-platform=coreboot -make -j"$(nproc)" - -printf "\n\n" - -# done. go back to main directory -cd "../" +make -j$(nproc) |