mirror of
https://codeberg.org/libreboot/lbmk.git
synced 2026-07-18 23:24:11 +02:00
build/boot/roms: rename buildrom to build_target
Signed-off-by: Leah Rowe <leah@libreboot.org>
This commit is contained in:
@@ -58,14 +58,13 @@ handle_targets()
|
|||||||
err "handle_targets: Cannot get list of boards"
|
err "handle_targets: Cannot get list of boards"
|
||||||
|
|
||||||
for board in ${boards}; do
|
for board in ${boards}; do
|
||||||
buildrom "${board}" || err "handle_targets: build error"
|
build_target "${board}" || err "handle_targets: build error"
|
||||||
[ -d "bin/${board}" ] && targets="${board} ${targets}"
|
[ -d "bin/${board}" ] && targets="${board} ${targets}"
|
||||||
done
|
done
|
||||||
confirm_targets
|
confirm_targets
|
||||||
}
|
}
|
||||||
|
|
||||||
# Build ROM images for supported boards
|
build_target() {
|
||||||
buildrom() {
|
|
||||||
[ -d "config/coreboot/${1}/" ] || \
|
[ -d "config/coreboot/${1}/" ] || \
|
||||||
err "build/roms: target not defined: ${1}"
|
err "build/roms: target not defined: ${1}"
|
||||||
./build boot roms_helper ${1}${opts} || return 1
|
./build boot roms_helper ${1}${opts} || return 1
|
||||||
|
|||||||
Reference in New Issue
Block a user