diff options
-rw-r--r-- | .gitignore | 13 | ||||
-rwxr-xr-x | build-release | 17 |
2 files changed, 24 insertions, 6 deletions
@@ -9,7 +9,18 @@ /seabios/ /powertop/ /libreboot_src.tar.xz -/libreboot_bin.tar.xz +/libreboot_util.tar.xz +/libreboot_macbook21.tar.xz +/libreboot_qemu_i440fx_piix4.tar.xz +/libreboot_qemu_q35_ich9.tar.xz +/libreboot_r400_4mb.tar.xz +/libreboot_r400_8mb.tar.xz +/libreboot_t60.tar.xz +/libreboot_x200_4mb.tar.xz +/libreboot_x200_8mb.tar.xz +/libreboot_x60.tar.xz +/libreboot_util/ +/libreboot_src/ /resources/utilities/ich9deblob/factory.rom /resources/utilities/ich9deblob/deblobbed_descriptor.bin /resources/utilities/ich9deblob/libreboot.rom diff --git a/build-release b/build-release index 4828359..0cdcb97 100755 --- a/build-release +++ b/build-release @@ -46,6 +46,7 @@ fi echo "Deleting old release archives" rm -f libreboot_*.tar.xz +rm -f tobuild.tar.xz # Get manifest which will be used to copy everything find -maxdepth 1 > releasefilelist @@ -122,6 +123,17 @@ cd ../ cd ../ +# ### Prepare ROM archives ready for release +# ---------------------------------------------------------------------------------------------------------------------------- + +cd bin/ +for board in $(ls) +do + # create lzma compressed src archive + tar cfJ ../libreboot_"$board".tar.xz "$board" +done +cd ../ + # ### Prepare libreboot_util archive ready for release # ---------------------------------------------------------------------------------------------------------------------------- @@ -129,11 +141,6 @@ echo "Preparing libreboot_util release archive" mkdir libreboot_util -# --------------------------------------- -# Include the ROM's in the binary archive -# --------------------------------------- -cp -r bin libreboot_util/ - # --------------- # SeaBIOS related # --------------- |