roms: remove useless confirmation in mkserprogfw

the user knows where to look. replace it with a single
declaration.

Signed-off-by: Leah Rowe <leah@libreboot.org>
This commit is contained in:
Leah Rowe
2024-06-18 01:21:20 +01:00
parent 1881d34dbc
commit 1a4f97ffd1
+1 -2
View File
@@ -83,14 +83,13 @@ mkserprogfw()
x_ cmake --build "$picosrc/build"
x_ mv "$picosrc/build/pico_serprog.uf2" \
"bin/serprog_rp2040/serprog_$2.uf2"
printf "output to bin/serprog_rp2040/serprog_%s.uf2\n" "$2"
else
x_ make -C "$stm32src" libopencm3-just-make BOARD=$2
x_ make -C "$stm32src" BOARD=$2
x_ mv "$stm32src/stm32-vserprog.hex" \
"bin/serprog_stm32/serprog_$2.hex"
printf "output to bin/serprog_stm32/serprog_%s.hex\n" "$2"
fi
printf "Look in bin/serprog_%s/ for images\n" "$1"
}
serlist()