mirror of
https://codeberg.org/libreboot/lbmk.git
synced 2026-07-11 05:52:36 +02:00
build/roms: simplify seabios dependency check
the update/trees script checks this binary itself, before deciding whether to recompile/compile, so we don't need to do such checks here. Signed-off-by: Leah Rowe <leah@libreboot.org>
This commit is contained in:
+2
-12
@@ -132,22 +132,12 @@ configure_dependencies()
|
||||
[ "${payload_memtest}" != "y" ] || [ -f "src/${memtest_bin}" ] || \
|
||||
x_ ./update trees -b memtest86plus
|
||||
|
||||
for bt in dependency_seabios grub_payload dependency_uboot target; do
|
||||
[ "$payload_seabios" = "y" ] && x_ ./update trees -b seabios
|
||||
for bt in grub_payload dependency_uboot target; do
|
||||
eval "build_${bt}"
|
||||
done
|
||||
}
|
||||
|
||||
build_dependency_seabios()
|
||||
{
|
||||
[ "${payload_seabios}" = "y" ] || return 0
|
||||
[ -f "${seavgabiosrom}" ] && \
|
||||
[ -f elf/seabios/default/libgfxinit/bios.bin.elf ] && \
|
||||
[ -f elf/seabios/default/vgarom/bios.bin.elf ] && \
|
||||
[ -f elf/seabios/default/normal/bios.bin.elf ] && return 0
|
||||
|
||||
x_ ./update trees -b seabios
|
||||
}
|
||||
|
||||
build_grub_payload()
|
||||
{
|
||||
[ "$payload_grub" != "y" ] && [ "$payload_seabios_withgrub" != "y" ] \
|
||||
|
||||
Reference in New Issue
Block a user