diff options
author | Gerd Hoffmann <kraxel@redhat.com> | 2012-02-09 10:40:31 +0100 |
---|---|---|
committer | Gerd Hoffmann <kraxel@redhat.com> | 2012-03-12 13:56:58 +0100 |
commit | b1c0d031c452bddfdedf33c5fa2ab2cc2b4a5ea0 (patch) | |
tree | 1b0626b231effc8910912119c2f9706622b3693f /roms/Makefile | |
parent | a348f108842fb928563865c9918642900cd0d477 (diff) |
Add seabios build scripts to roms/
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Diffstat (limited to 'roms/Makefile')
-rw-r--r-- | roms/Makefile | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/roms/Makefile b/roms/Makefile new file mode 100644 index 0000000000..0114e6f33f --- /dev/null +++ b/roms/Makefile @@ -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 |