You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
371 B
14 lines
371 B
set -e
|
|
git clone https://git.seabios.org/seabios.git || true
|
|
(cd seabios && git checkout rel-1.12.1)
|
|
|
|
cp seabios.config seabios/.config
|
|
make -C seabios
|
|
cp seabios/out/bios.bin seabios.bin
|
|
cp seabios/out/vgabios.bin vgabios.bin
|
|
|
|
cp seabios-debug.config seabios/.config
|
|
make -C seabios
|
|
cp seabios/out/bios.bin seabios-debug.bin
|
|
cp seabios/out/vgabios.bin vgabios-debug.bin
|