From 0c334380637652ae917404e7f404f54df55d54bf Mon Sep 17 00:00:00 2001 From: Leah Rowe Date: Mon, 5 Dec 2022 00:40:58 +0000 Subject: build/boot/roms: remove errant code --- resources/scripts/build/boot/roms | 17 +---------------- 1 file changed, 1 insertion(+), 16 deletions(-) (limited to 'resources/scripts/build') diff --git a/resources/scripts/build/boot/roms b/resources/scripts/build/boot/roms index c526c268..d4368689 100755 --- a/resources/scripts/build/boot/roms +++ b/resources/scripts/build/boot/roms @@ -79,17 +79,6 @@ buildrom() { fi } -buildrom_release() { - board="$1" - - if [ -d "resources/coreboot/${board}/" ]; then - ./build boot roms_helper "${board}" - else - die "\nbuild/roms: target not defined in the build system: %s\n" "${board}" - fi -} - - if [ $# -gt 0 ]; then firstoption="${1}" if [ "${firstoption}" = "help" ]; then @@ -124,11 +113,7 @@ fi printf "Building %s ROM images\n" "${projectname}" - if [ "${firstoption}" = "release" ]; then - for boardname in $(listboards); do - buildrom_release "${boardname}" || die "build/roms: something went wrong" - done - elif [ "${firstoption}" = "all" ]; then + if [ "${firstoption}" = "all" ]; then for boardname in $(listboards); do buildrom "${boardname}" || die "build/roms: something went wrong" done -- cgit v1.2.1