download/coreboot functions: rename board variable
parent
7a6f40fcbf
commit
4c2cff5e7c
|
@ -70,7 +70,7 @@ main()
|
||||||
|
|
||||||
downloadfor() {
|
downloadfor() {
|
||||||
|
|
||||||
board="${1}"
|
_board="${1}"
|
||||||
cbtree="undefined"
|
cbtree="undefined"
|
||||||
cbrevision="undefined"
|
cbrevision="undefined"
|
||||||
|
|
||||||
|
@ -82,46 +82,46 @@ downloadfor() {
|
||||||
cbrevision="undefined"
|
cbrevision="undefined"
|
||||||
cbtree="undefined"
|
cbtree="undefined"
|
||||||
|
|
||||||
if [ ! -f "resources/coreboot/${board}/board.cfg" ]; then
|
if [ ! -f "resources/coreboot/${_board}/board.cfg" ]; then
|
||||||
printf "ERROR: download/coreboot: board.cfg does not"
|
printf "ERROR: download/coreboot: board.cfg does not"
|
||||||
printf " exist for '%s'\n" ${board}
|
printf " exist for '%s'\n" ${_board}
|
||||||
return 1
|
return 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ -f "resources/coreboot/${board}/seen" ]; then
|
if [ -f "resources/coreboot/${_board}/seen" ]; then
|
||||||
printf "ERROR: download/coreboot: logical loop:"
|
printf "ERROR: download/coreboot: logical loop:"
|
||||||
printf " '%s' board.cfg refers to another tree," \
|
printf " '%s' board.cfg refers to another tree," \
|
||||||
${board}
|
${_board}
|
||||||
printf " which ultimately refers back to '%s'." \
|
printf " which ultimately refers back to '%s'." \
|
||||||
${board}
|
${_board}
|
||||||
return 1
|
return 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# This is to override $cbrevision and $cbtree
|
# This is to override $cbrevision and $cbtree
|
||||||
. "resources/coreboot/${board}/board.cfg" \
|
. "resources/coreboot/${_board}/board.cfg" \
|
||||||
|| touch ../build_error
|
|| touch ../build_error
|
||||||
|
|
||||||
if [ -f build_error ]; then
|
if [ -f build_error ]; then
|
||||||
printf "ERROR: download/coreboot:"
|
printf "ERROR: download/coreboot:"
|
||||||
printf " problem sourcing %s/board.cfg\n" "${board}"
|
printf " problem sourcing %s/board.cfg\n" ${_board}
|
||||||
return 1
|
return 1
|
||||||
fi
|
fi
|
||||||
touch "resources/coreboot/${board}/seen"
|
touch "resources/coreboot/${_board}/seen"
|
||||||
|
|
||||||
if [ "${board}" != "${cbtree}" ]; then
|
if [ "${_board}" != "${cbtree}" ]; then
|
||||||
board="${cbtree}"
|
board="${cbtree}"
|
||||||
else
|
else
|
||||||
if [ "${cbtree}" = "undefined" ]; then
|
if [ "${cbtree}" = "undefined" ]; then
|
||||||
printf "ERROR: download/coreboot:"
|
printf "ERROR: download/coreboot:"
|
||||||
printf " tree name undefined for '%s\n'" \
|
printf " tree name undefined for '%s\n'" \
|
||||||
${board}
|
${_board}
|
||||||
return 1
|
return 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ "${cbrevision}" = "undefined" ]; then
|
if [ "${cbrevision}" = "undefined" ]; then
|
||||||
printf "ERROR: download/coreboot:"
|
printf "ERROR: download/coreboot:"
|
||||||
printf " commit ID undefined for '%s'\n" \
|
printf " commit ID undefined for '%s'\n" \
|
||||||
${board}
|
${_board}
|
||||||
return 1
|
return 1
|
||||||
fi
|
fi
|
||||||
break
|
break
|
||||||
|
@ -227,8 +227,8 @@ downloadfor() {
|
||||||
# it's rare that you'd want to patch them, so this is handled by
|
# it's rare that you'd want to patch them, so this is handled by
|
||||||
# extra.sh on a per-board basis
|
# extra.sh on a per-board basis
|
||||||
# In fact, extra.sh can be used for anything you want.
|
# In fact, extra.sh can be used for anything you want.
|
||||||
if [ -f "../../resources/coreboot/${board}/extra.sh" ]; then
|
if [ -f "../../resources/coreboot/${_board}/extra.sh" ]; then
|
||||||
"../../resources/coreboot/${board}/extra.sh" \
|
"../../resources/coreboot/${_board}/extra.sh" \
|
||||||
|| touch ../../build_error
|
|| touch ../../build_error
|
||||||
if [ -f ../../build_error ]; then
|
if [ -f ../../build_error ]; then
|
||||||
cd ../../; return 1
|
cd ../../; return 1
|
||||||
|
@ -254,8 +254,8 @@ usage()
|
||||||
|
|
||||||
list_supported_boards()
|
list_supported_boards()
|
||||||
{
|
{
|
||||||
for board in resources/coreboot/*; do
|
for _board in resources/coreboot/*; do
|
||||||
echo $board | sed 's#resources/coreboot/##'
|
echo ${_board} | sed 's#resources/coreboot/##'
|
||||||
done
|
done
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue