diff options
author | Francis Rowe <info@gluglug.org.uk> | 2014-09-16 13:12:04 (EDT) |
---|---|---|
committer | Francis Rowe <info@gluglug.org.uk> | 2014-09-16 13:22:54 (EDT) |
commit | 40fe5eae21fca449809d1223cf4048a26f028227 (patch) | |
tree | ccb09791b06c34f8f7ef664f0c2df3f5a802de05 /build-release | |
parent | d0543432adba8db52adcd74167a1706fa9cc99ba (diff) | |
download | libreboot-40fe5eae21fca449809d1223cf4048a26f028227.zip libreboot-40fe5eae21fca449809d1223cf4048a26f028227.tar.gz libreboot-40fe5eae21fca449809d1223cf4048a26f028227.tar.bz2 |
ROM images no longer include SeaBIOS
Instead, the user adds it afterwards. Documentation and scripts updated.
Diffstat (limited to 'build-release')
-rwxr-xr-x | build-release | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/build-release b/build-release index 36453e9..84e3575 100755 --- a/build-release +++ b/build-release @@ -112,6 +112,12 @@ mkdir libreboot_bin # Include the ROM's in the binary archive cp -r bin libreboot_bin/ +# Include SeaBIOS and SeaVGABIOS option ROM in the binary archive +cp seabios/out/vgabios.bin libreboot_bin/ +cp seabios/out/bios.bin.elf libreboot_bin/ +# Add the script for it +cp addseabios libreboot_bin/ + # Include flashrom utility in binary archive # (source only, no binaries. To eliminate cross-distro dependency issue) cp -r libreboot_src/flashrom libreboot_bin/ |