diff options
author | Francis Rowe <info@gluglug.org.uk> | 2016-03-03 20:55:50 +0100 |
---|---|---|
committer | Francis Rowe <info@gluglug.org.uk> | 2016-03-03 20:56:05 +0100 |
commit | 2f3d87aec85f5759180380cbc156472378164d11 (patch) | |
tree | 79865b35916651f6c4342e3fba977a73018eee98 /resources/scripts/helpers/build/clean | |
parent | 278362ead551ebc1ed767df2e0896b04b51242cd (diff) | |
download | librebootfr-2f3d87aec85f5759180380cbc156472378164d11.tar.gz librebootfr-2f3d87aec85f5759180380cbc156472378164d11.zip |
Revert "iunfinished patch: copy coreboot per revision, not board"
I'm an idiot. This patch wasn't supposed to be pushed yet because
not finished. Reverting it for the time being.
This reverts commit 89cc8c38c1cf3865c3684e5bd6658eedf0e61cfd.
Diffstat (limited to 'resources/scripts/helpers/build/clean')
-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 880447d0..baaabbd4 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 |