1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- #!/usr/bin/env bash
- [ "x${DEBUG+set}" = 'xset' ] && set -v
- set -u -e
- printf "Downloading ich9utils\n"
- if [ -d ich9utils ]; then
- printf "ich9utils already downloaded. skipping\n"
- exit 0
- fi
- git clone https://notabug.org/libreboot/ich9utils.git
- if [ ! -d "ich9utils" ]; then
- printf "ich9utils not downloaded; check network connection?\n\n"
- exit 1
- fi
- (
- cd "ich9utils/"
- git reset --hard 53749b0c6f7c5778bdd1ec2b91cd230626752579
- )
- printf "\n\n"
|