roms: simplify the check for serprog srcdir

Signed-off-by: Leah Rowe <leah@libreboot.org>
audit2
Leah Rowe 2024-06-18 02:15:25 +01:00 committed by Leah Rowe
parent 8136b640b9
commit 49c41411bd
1 changed files with 3 additions and 7 deletions

View File

@ -55,13 +55,9 @@ mkserprog()
{
[ -z "${1+x}" ] && badcmd
[ "$1" != "rp2040" ] && [ "$1" != "stm32" ] && $err "bad command"
if [ "$1" = "rp2040" ]; then
serprogdir="$picosdk/src/boards/include/boards"
[ -d "$rp2040src" ] || x_ ./update trees -f "pico-serprog"
elif [ "$1" = "stm32" ]; then
serprogdir="$stm32src/boards"
[ -d "$stm32src" ] || x_ ./update trees -f "stm32-vserprog"
fi
[ "$1" = "rp2040" ] && serprogdir="$picosdk/src/boards/include/boards"
[ "$1" = "stm32" ] && serprogdir="$stm32src/boards"
eval "[ -d \"\$${1}src\" ] || x_ ./update trees -f \"\${${1}src##*/}\""
x_ mkdir -p "bin/serprog_$1"
[ $# -gt 1 ] && [ "$2" = "list" ] && serlist "$serprogdir" && return 0