packages: seabios: remove seabios_vgarom.elf

This commit removes the generation of the unused seabios_vgarom.elf image.

Signed-off-by: Adrien 'neox' Bourmault <neox@gnu.org>
GNUtoo: Removed speculations from the commit message
Acked-by: Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>
This commit is contained in:
Adrien Bourmault 2024-11-28 23:40:15 +01:00 committed by Denis 'GNUtoo' Carikli
parent e6cb97c91c
commit d80a69e47c
Signed by: GNUtoo
GPG Key ID: 5F5DFCC14177E263
2 changed files with 1 additions and 10 deletions

View File

@ -164,8 +164,7 @@ if [ ! -f "${cbfstool}" ]; then
fi
if [ ! -f "${seavgabiosrom}" ] \
|| [ ! -f payload/seabios/seabios_libgfxinit.elf ] \
|| [ ! -f payload/seabios/seabios_vgarom.elf ]; then
|| [ ! -f payload/seabios/seabios_libgfxinit.elf ]; then
if [ "${payload_seabios}" = "y" ]; then
./build payload seabios
elif [ "${payload_grub}" = "y" ] \

View File

@ -46,14 +46,6 @@ mv out/bios.bin.elf ../payload/seabios/seabios_libgfxinit.elf
mv out/vgabios.bin ../payload/seabios/seavgabios.bin
rm .config
# for vgarom setup:
[[ -f Makefile ]] && make distclean
cp ../resources/seabios/config/vgarom .config
make silentoldconfig -j$(nproc)
make -j$(nproc)
mv out/bios.bin.elf ../payload/seabios/seabios_vgarom.elf
rm .config
# clean it again. gotta keep it clean!
[[ -f Makefile ]] && make distclean