1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- #!/bin/bash
- [ "x${DEBUG+set}" = 'xset' ] && set -v
- set -e -u
- printf "Searching for blobs in coreboot\n"
- cp "deblob-check" "../../../coreboot/coreboot/"
- cd "../../../coreboot/coreboot/"
- chmod +x "deblob-check"
- find -type f | xargs ./deblob-check > "tocheck"
- rm -f "deblob-check"
- rm -f "../../resources/utilities/coreboot-libre/tocheck"
- mv "tocheck" "../../resources/utilities/coreboot-libre/"
- cd "../../resources/utilities/coreboot-libre/"
- printf "Done! open resources/utilities/coreboot-libre/tocheck in an editor\n"
- printf "This will contain the names of the files that you must decide whether they are blobs or not\n\n"
|