123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235 |
- #!/usr/bin/env sh
- [ "x${DEBUG+set}" = 'xset' ] && set -v
- set -u -e
- list_supported_boards()
- {
- for board in resources/coreboot/*; do
- echo $board | sed 's#resources/coreboot/##'
- done
- }
- usage()
- {
- progname="./download coreboot"
- printf "Usage:\n"
- printf "\t%s # %s\n" \
- "${progname}" \
- "Download coreboot for all the boards"
- printf "\t%s [board [board] ...] # %s\n" \
- "${progname}" \
- "Download coreboot for the given boards"
- printf "\t%s --list-boards # %s\n" \
- "${progname}" \
- "Prints this help"
- printf "\t%s --help # %s\n" \
- "${progname}" \
- "List supported boards"
- printf "\t%s --help # %s\n" \
- "${progname}" \
- "Prints this help"
- }
- if [ $# -eq 1 ] && [ "$1" = "--help" ] ; then
- usage
- exit 0
- elif [ $# -eq 1 ] && [ "$1" = "--list-boards" ] ; then
- list_supported_boards
- exit 0
- fi
- [ -f build_error ] && rm -f build_error
- rm -f resources/coreboot/*/seen
- downloadfor() {
- board="${1}"
- cbtree="undefined"
- cbrevision="undefined"
-
-
-
- while true; do
- cbrevision="undefined"
- cbtree="undefined"
- if [ ! -f "resources/coreboot/${board}/board.cfg" ]; then
- printf "ERROR: download/coreboot: board.cfg does not exist for '%s'\n" "${board}"
- return 1
- fi
- if [ -f "resources/coreboot/${board}/seen" ]; then
- printf "ERROR: download/coreboot: logical loop; '%s' board.cfg refers to another tree, which ultimately refers back to '%s'.\n" "${board}" "${board}"
- return 1
- fi
-
- . "resources/coreboot/${board}/board.cfg" || touch ../build_error
- if [ -f build_error ]; then
- printf "ERROR: download/coreboot: problem sourcing %s/board.cfg\n" "${board}"
- return 1
- fi
- touch "resources/coreboot/${board}/seen"
- if [ "${board}" != "${cbtree}" ]; then
- board="${cbtree}"
- else
- if [ "${cbtree}" = "undefined" ]; then
- printf "ERROR: download/coreboot: tree name undefined for '%s\n'" "${board}"
- return 1
- fi
- if [ "${cbrevision}" = "undefined" ]; then
- printf "ERROR: download/coreboot: commit ID undefined for '%s'\n" "${board}"
- return 1
- fi
- break
- fi
- done
- rm -f resources/coreboot/*/seen
- if [ -d "coreboot/${cbtree}" ]; then
- printf "REMARK: download/coreboot: directory for '%s' already exists. Skipping setup.\n" "${cbtree}"
- if [ "${cbtree}" != "${1}" ]; then
- printf "(for board: '${1}')\n"
- fi
- return 0
- fi
- if [ ! -d coreboot ]; then
- mkdir "coreboot/"
- fi
- if [ ! -d coreboot ]; then
- printf "ERROR: download/coreboot: directory not created. Check file system permissions\n"
- return 1
- fi
- cd "coreboot/"
- if [ ! -d coreboot/.git ] && [ -d coreboot ]; then
- rm -Rf coreboot/
- fi
- if [ ! -d coreboot ]; then
- printf "Download coreboot from upstream:\n"
- git clone https://review.coreboot.org/coreboot || rm -Rf coreboot
- if [ ! -d coreboot ]; then
- printf "WARNING: Upstream failed. Trying backup github repository:\n"
- git clone https://github.com/coreboot/coreboot.git || rm -Rf coreboot
- fi
- if [ ! -d coreboot ]; then
- printf "ERROR: download/coreboot: Problem with git-clone. Network issue?\n"
- cd ../; return 1
- fi
- else
- ( cd coreboot/; git pull || touch ../build_error )
- if [ -f ../build_error ]; then
- printf "ERROR: download/coreboot: Problem with git-pull. Network issue?\n"
- cd ../; return 1
- fi
- fi
- cp -R coreboot "${cbtree}" || touch ../build_error
- if [ -d ../build_error ]; then
- printf "ERROR: download/coreboot: Unable to copy directory. Check file system permissions or free space.\n"
- rm -Rf "${cbtree}/"
- cd ../; return 1
- fi
- cd ${cbtree}/
- git reset --hard ${cbrevision} || touch ../../build_error
- if [ -f ../../build_error ]; then
- printf "ERROR: download/coreboot: Unable to reset to commit ID/tag '%s' for board '%s' on tree '%s'\n" "${cbrevision}" "${1}" "${cbtree}"
- cd ../../; return 1
- fi
- git submodule update --init --checkout || touch ../../build_error
- if [ -f ../../build_error ]; then
- printf "ERROR: download/coreboot: Unable to update submodules for tree '%s'\n" "${cbtree}"
- cd ../../; return 1
- fi
- for patch in ../../resources/coreboot/${cbtree}/patches/*.patch; do
- if [ ! -f "${patch}" ]; then
- continue
- fi
- git am "${patch}" || touch ../../build_error
- if [ -f ../../build_error ]; then
- printf "ERROR: download/coreboot: Unable to apply patch '%s' for board '%s' on tree '%s'" "${patch}" "${1}" "${cbtree}"
- git am --abort
- cd ../../; return 1
- fi
- done
-
-
-
-
-
- if [ -f "../../resources/coreboot/${board}/extra.sh" ]; then
- "../../resources/coreboot/${board}/extra.sh" || touch ../../build_error
- if [ -f ../../build_error ]; then
- cd ../../; return 1
- fi
- return 0
- else
- cd ../../
- return 0
- fi
- }
- printf "Downloading coreboot and (if exist in build system) applying patches\n"
- if [ $# -gt 0 ]; then
- for board in "${@}"; do
- rm -f resources/coreboot/*/seen
- downloadfor "${board}"
- if [ -f build_error ]; then break; fi
- done
- else
- for board in resources/coreboot/*; do
- rm -f resources/coreboot/*/seen
- if [ ! -d "${board}/" ]; then
- continue
- fi
- downloadfor "${board##*/}"
- if [ -f build_error ]; then break; fi
- done
- fi
- rm -f resources/coreboot/*/seen
- rm -f "build_error"
- printf "\n\n"
- exit 0
|