summaryrefslogtreecommitdiff
path: root/script
diff options
context:
space:
mode:
authorLeah Rowe <leah@libreboot.org>2024-05-19 06:30:32 +0100
committerLeah Rowe <leah@libreboot.org>2024-05-19 06:30:32 +0100
commitb40118ae59b2a48d7287bdcebd2314b0184d4806 (patch)
treee4de80d8827fd0ae649d0c2ab7a73467fa11a925 /script
parent998f30ad4d58d176429e47feafbbf6b709c27f1d (diff)
minor code cleanup in the build system
Signed-off-by: Leah Rowe <leah@libreboot.org>
Diffstat (limited to 'script')
-rwxr-xr-xscript/roms30
-rwxr-xr-xscript/trees3
2 files changed, 10 insertions, 23 deletions
diff --git a/script/roms b/script/roms
index 292193e9..66d6134d 100755
--- a/script/roms
+++ b/script/roms
@@ -148,10 +148,8 @@ handle_coreboot_target()
[ -d "bin/${board}" ] || return 0
[ "$xbmk_release" = "y" ] || targets="* bin/${board}\n${targets}"
- [ "$xbmk_release" = "y" ] || return 0
-
- targets="* bin/${relname}_$board.tar.xz\n$targets"
- mktar_release "bin/$board"
+ [ "$xbmk_release" = "y" ] && mktar_release "bin/$board" && \
+ targets="* bin/${relname}_$board.tar.xz\n$targets"; return 0
}
configure_target()
@@ -179,8 +177,7 @@ configure_target()
[ "$payload_seabios_grubonly" = "y" ] && payload_seabios_withgrub="y"
# The reverse logic must not be applied. If SeaBIOS-with-GRUB works,
- # that doesn't mean GRUB-withSeaBIOS will. For example, the board
- # might have a graphics card whose vga rom coreboot doesn't execute
+ # that doesn't mean GRUB-with-SeaBIOS will, e.g. VGA ROM execution
[ "$payload_grub" != "y" ] && [ "$payload_seabios" != "y" ] && \
[ "${payload_uboot}" != "y" ] && ! check_defconfig "$targetdir" \
&& $err "target '$board' defines no payload"
@@ -192,7 +189,6 @@ configure_target()
# Override all payload directives with cmdline args
[ -z "${_payload}" ] && return 0
- printf "setting payload to: %s\n" "${_payload}"
eval "$(setvars "n" payload_grub payload_memtest payload_seabios \
payload_seabios_withgrub payload_uboot payload_grub_withseabios \
payload_seabios_grubonly)"
@@ -235,13 +231,9 @@ build_grub_payload()
[ -f "$grubelf" ] && return 0
[ -f "src/grub/grub-mkstandalone" ] || x_ ./update trees -b grub
- ./src/grub/grub-mkstandalone \
- --grub-mkimage="src/grub/grub-mkimage" \
- -O i386-coreboot \
- -o "elf/grub/grub.elf" \
- -d "src/grub/grub-core/" \
- --fonts= --themes= --locales= \
- --modules="${grub_modules}" \
+ ./src/grub/grub-mkstandalone --grub-mkimage="src/grub/grub-mkimage" \
+ -O i386-coreboot -o "elf/grub/grub.elf" -d "src/grub/grub-core/" \
+ --fonts= --themes= --locales= --modules="${grub_modules}" \
--install-modules="${grub_install_modules}" \
"/boot/grub/grub.cfg=${grubcfgsdir}/config/grub_memdisk.cfg" \
"/boot/grub/grub_default.cfg=${grubcfgsdir}/config/grub.cfg" || \
@@ -255,8 +247,7 @@ build_uboot_payload()
ubootelf="${ubdir}/u-boot.elf"
[ ! -f "${ubootelf}" ] && [ -f "${ubdir}/u-boot" ] && \
ubootelf="${ubdir}/u-boot"
- [ -f "${ubootelf}" ] && return 0
- $err "Can't find u-boot build for board, $board";
+ [ -f "${ubootelf}" ] || $err "$board: Can't find u-boot"; return 0
}
build_target_mainboard()
@@ -281,7 +272,6 @@ build_target_mainboard()
done
}
-# Main ROM building function. This calls all other functions below
build_roms()
{
cbcfg="${1}"
@@ -457,10 +447,8 @@ moverom()
x_ mkdir -p "${2%/*}"
x_ cp "$1" "$2"
- [ "$xbmk_release" = "y" ] || return 0
-
- mksha512sum "${2}" "vendorhashes"
- x_ ./vendor inject -r "${2}" -b "$board" -n nuke
+ [ "$xbmk_release" = "y" ] && mksha512sum "${2}" "vendorhashes" && \
+ x_ ./vendor inject -r "${2}" -b "$board" -n nuke; return 0
}
main $@
diff --git a/script/trees b/script/trees
index 3b126e56..f2b988f1 100755
--- a/script/trees
+++ b/script/trees
@@ -230,8 +230,7 @@ check_cmake()
check_makefile "${1}" || \
$err "check_cmake ${1}: can't cmake ${cmakedir}"
[ -z "${cmakedir}" ] || check_makefile "${1}" || \
- $err "check_cmake ${1}: could not generate Makefile"
- return 0
+ $err "check_cmake ${1}: can't generate Makefile"; return 0
}
check_autoconf()