1234567891011121314151617181920212223242526272829303132333435363738394041 |
- #!/usr/bin/env bash
- [ "x${DEBUG+set}" = 'xset' ] && set -v
- set -u -e
- if [ ! -d "flashrom/" ]; then
- ./download flashrom
- fi
- printf "Building flashrom\n"
- (
- cd "flashrom/"
- make clean
- make WARNERROR=no -j$(nproc)
- )
|