diff options
author | Michał Masłowski <mtjm@mtjm.eu> | 2014-09-03 20:30:21 +0200 |
---|---|---|
committer | Michał Masłowski <mtjm@mtjm.eu> | 2014-09-03 20:30:21 +0200 |
commit | 96ca7ee67a36605a33de8d57eb8e8d3998bc6427 (patch) | |
tree | 07202c5fe7d366f50d9d17010f3bbf0a44c08ee8 /cleandeps | |
parent | 4e8051dfaa0ba5617961481056eb7e79d7b50861 (diff) | |
parent | 9a321884379a71b5f0986fdfb97a2b6c5bdccd8a (diff) | |
download | librebootfr-96ca7ee67a36605a33de8d57eb8e8d3998bc6427.tar.gz librebootfr-96ca7ee67a36605a33de8d57eb8e8d3998bc6427.zip |
Merge libreboot-6b6.
Conflicts:
buildrom-withgrub
Diffstat (limited to 'cleandeps')
-rwxr-xr-x | cleandeps | 35 |
1 files changed, 34 insertions, 1 deletions
@@ -2,7 +2,7 @@ # cleandeps script: cleans everything (make clean) # -# Copyright (C) 2014 Francis Rowe +# Copyright (C) 2014 Francis Rowe <info@gluglug.org.uk> # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -45,6 +45,12 @@ rm -rf grub.elf # clean reference crossGCC for coreboot make crossgcc-clean +# clean libpayload +cd payloads/libpayload +make clean +rm -rf install +cd ../../ + # done. go back to main directory cd ../ @@ -90,6 +96,33 @@ rm -rf flashrom_lenovobios_macronix # done. go back to main directory cd ../ +# clean seabios +# -------------------------------------------------------- + +cd seabios + +make clean + +cd ../ + +# clean grubinvaders +# -------------------------------------------------------- + +cd grubinvaders + +./clean.sh + +cd ../ + +# clean i945-pwm +# -------------------------------------------------------- + +cd resources/utilities/i945-pwm + +make clean + +cd ../../../ + # a few more things to do last # -------------------------------------------------------- |