From 6facdf3a08ea9926e5e14bd9b7289d9baf2aa116 Mon Sep 17 00:00:00 2001 From: Thomas Lamprecht Date: Mon, 22 May 2023 12:01:05 +0200 Subject: [PATCH] also exclude hppa-firmware.img ROM from build We don't use it and with debhelper compat level >= 11, the switch from detecting files for strip through patters to checking for an ELF header caused a build failure with the hppa-firmware.img ROM, as some tools cannot cope with HP PARISC files. Signed-off-by: Thomas Lamprecht --- Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile b/Makefile index d9af212..2857e2e 100644 --- a/Makefile +++ b/Makefile @@ -20,6 +20,7 @@ submodule: test -f "${SRCDIR}/configure" || git submodule update --init --recursive PC_BIOS_FW_PURGE_LIST_IN = \ + hppa-firmware.img \ openbios-ppc \ openbios-sparc32 \ openbios-sparc64 \