diff options
author | Francis Rowe <info@gluglug.org.uk> | 2014-11-28 00:08:04 (EST) |
---|---|---|
committer | Francis Rowe <info@gluglug.org.uk> | 2014-11-28 00:08:04 (EST) |
commit | c0d941b5b03842505e8bd87d8b1b8d9663ee8fdb (patch) | |
tree | bb8bb3665ba22fbfd0bfb66d218cba9aa7394c77 | |
parent | 9f67c319dfaef2d3e7920bb5b750ec5b8f5a52d6 (diff) | |
download | libreboot-c0d941b5b03842505e8bd87d8b1b8d9663ee8fdb.zip libreboot-c0d941b5b03842505e8bd87d8b1b8d9663ee8fdb.tar.gz libreboot-c0d941b5b03842505e8bd87d8b1b8d9663ee8fdb.tar.bz2 |
builddeps-coreboot and cleandeps: improve commenting
-rwxr-xr-x | builddeps-coreboot | 4 | ||||
-rwxr-xr-x | cleandeps | 14 |
2 files changed, 11 insertions, 7 deletions
diff --git a/builddeps-coreboot b/builddeps-coreboot index 67ee968..6b5794f 100755 --- a/builddeps-coreboot +++ b/builddeps-coreboot @@ -37,10 +37,10 @@ cd coreboot # Build the utilities required by libreboot # ----------------------------------------- -# build cbfstool +# cbfstool cd util/cbfstool make -# build nvramtool +# nvramtool cd ../nvramtool make @@ -27,13 +27,17 @@ set -u -e -v cd coreboot +# ---------------------- # clean coreboot itself: +# ---------------------- make clean +# ------------------- +# clean the utilities +# ------------------- # clean cbfstool cd util/cbfstool make clean - # clean nvramtool cd ../nvramtool make clean @@ -41,10 +45,10 @@ make clean # go back to coreboot dir cd ../../ -# remove the payloads (they will be built by "build") -rm -f grub*.elf - +# ------------------------------------- # clean reference crossGCC for coreboot +# source archive not deleted (intended) +# ------------------------------------- make crossgcc-clean # done. go back to main directory @@ -85,7 +89,7 @@ cd ../ cd flashrom make clean -# remove modified binaries +# remove patched binaries rm -f flashrom_lenovobios_sst rm -f flashrom_lenovobios_macronix |