diff options
author | Leah Rowe <leah@libreboot.org> | 2024-12-28 16:46:59 +0000 |
---|---|---|
committer | Leah Rowe <leah@libreboot.org> | 2024-12-28 16:46:59 +0000 |
commit | 754bd1e6ca3aa95bb1aa44b97612762e37c957b8 (patch) | |
tree | 1f0b76193a2e9a1b2105474b08e57f1f88101875 /include/vendor.sh | |
parent | db22308eba516a85044ed738f0c9205d41701b33 (diff) |
rom.sh: Name pico directory serprog_pico
Previously serprog_rp2040, but we now also support
the RP2530 boards.
Therefore, serprog_pico is a nice generic name. The
directory on release archives will now be serprog_pico
instead of serprog_rp2040; it will contain serprog images
for both RP2040 and RP2530 devices.
Signed-off-by: Leah Rowe <leah@libreboot.org>
Diffstat (limited to 'include/vendor.sh')
-rw-r--r-- | include/vendor.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/vendor.sh b/include/vendor.sh index aa7256c4..7d1356f2 100644 --- a/include/vendor.sh +++ b/include/vendor.sh @@ -375,7 +375,8 @@ detect_board() readcfg() { if [ "$board" = "serprog_rp2040" ] || \ - [ "$board" = "serprog_stm32" ]; then + [ "$board" = "serprog_stm32" ] || \ + [ "$board" = "serprog_pico" ]; then return 1 fi; boarddir="$cbcfgsdir/$board" eval `setcfg "$boarddir/target.cfg"`; chkvars vcfg tree |