diff options
author | Francis Rowe <info@gluglug.org.uk> | 2016-03-03 15:10:29 (EST) |
---|---|---|
committer | Francis Rowe <info@gluglug.org.uk> | 2016-03-03 15:10:29 (EST) |
commit | 79d015913feef9257bfd19f70d3733cefb0bb0cd (patch) | |
tree | f956b747237ca21ee2dc9f0b63c082fc2139d774 /resources/scripts/helpers/build/clean/coreboot | |
parent | 903fac5e654bd7f0db210aea1de00effbf7db413 (diff) | |
download | libreboot-79d015913feef9257bfd19f70d3733cefb0bb0cd.zip libreboot-79d015913feef9257bfd19f70d3733cefb0bb0cd.tar.gz libreboot-79d015913feef9257bfd19f70d3733cefb0bb0cd.tar.bz2 |
Revert "Revert "Revert "iunfinished patch: copy coreboot per revision, not board"""
When you have to revert a revert of a revert in the same 20 minute window
then you my friend are an idiot. And that's exactly what I am.
This reverts commit d105b4a8b74645d5936cf8a51b1517f3ba89fd26.
Diffstat (limited to 'resources/scripts/helpers/build/clean/coreboot')
-rwxr-xr-x | resources/scripts/helpers/build/clean/coreboot | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/resources/scripts/helpers/build/clean/coreboot b/resources/scripts/helpers/build/clean/coreboot index 880447d..baaabbd 100755 --- a/resources/scripts/helpers/build/clean/coreboot +++ b/resources/scripts/helpers/build/clean/coreboot @@ -32,15 +32,6 @@ printf "Cleaning the previous build of coreboot and its utilities\n" for payload in coreboot/*; do for board in "${payload}/"*; do - ( - # Reset to master branch, where there are no board-specific patches applied - # also remove the .git history and so on - cd "${board}/" - git checkout master - rm -Rf ".git/"* - rm -Rf "3rdparty/"*/*.git - ) - # Clean coreboot, of course make -C "${board}/" distclean @@ -55,7 +46,6 @@ for payload in coreboot/*; do done # Also do the same for the crossgcc version of coreboot -# Note how we do not want to delete crossgcc. We only clean it make -C "crossgcc/" crossgcc-clean for util in {cbfs,ifd,nvram}tool cbmem; do make -C "crossgcc/util/${util}/" clean |