Add seabios build scripts to roms/
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
This commit is contained in:
parent
a348f10884
commit
b1c0d031c4
10
roms/Makefile
Normal file
10
roms/Makefile
Normal file
@ -0,0 +1,10 @@
|
||||
|
||||
default:
|
||||
@echo "nothing is build by default"
|
||||
@echo "available build targets:"
|
||||
@echo " bios -- update bios.bin (seabios)"
|
||||
|
||||
bios: config.seabios
|
||||
sh configure-seabios.sh $<
|
||||
make -C seabios out/bios.bin
|
||||
cp seabios/out/bios.bin ../pc-bios/bios.bin
|
1
roms/config.seabios
Normal file
1
roms/config.seabios
Normal file
@ -0,0 +1 @@
|
||||
# empty, default config works for us
|
5
roms/configure-seabios.sh
Executable file
5
roms/configure-seabios.sh
Executable file
@ -0,0 +1,5 @@
|
||||
#!/bin/sh
|
||||
config="$1"
|
||||
make -C seabios clean distclean
|
||||
cp "$config" seabios/.config
|
||||
make -C seabios oldnoconfig
|
Loading…
Reference in New Issue
Block a user