diff options
author | Francis Rowe <info@gluglug.org.uk> | 2015-06-07 07:48:52 +0100 |
---|---|---|
committer | Francis Rowe <info@gluglug.org.uk> | 2015-06-07 07:48:52 +0100 |
commit | 17014e3d84513f6b609932f9b9ad337d22274347 (patch) | |
tree | 2e5d86be57b006f8d060419ed455df90d60f3df6 | |
parent | bd68a8334607ac59f362f9c960375475fbd9ea55 (diff) | |
download | librebootfr-17014e3d84513f6b609932f9b9ad337d22274347.tar.gz librebootfr-17014e3d84513f6b609932f9b9ad337d22274347.zip |
build/release/roms: copy straight to release/
-rw-r--r-- | .gitignore | 9 | ||||
-rwxr-xr-x | resources/scripts/helpers/build/release/roms | 5 |
2 files changed, 1 insertions, 13 deletions
@@ -9,15 +9,6 @@ /memtest86+-5.01/ /bin/ /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/ /release/ /resources/utilities/ich9deblob/factory.rom diff --git a/resources/scripts/helpers/build/release/roms b/resources/scripts/helpers/build/release/roms index b89b5f8f..97b39d7f 100755 --- a/resources/scripts/helpers/build/release/roms +++ b/resources/scripts/helpers/build/release/roms @@ -45,14 +45,11 @@ for board in *; do printf '%s\n' "${version}" >"${board}/version" # Create the compressed archive. - tar -c "${board}" | xz -9e >"../libreboot_${board}.tar.xz" + tar -c "${board}" | xz -9e >"../release/rom/libreboot_${board}.tar.xz" # No longer needed. rm -f "${board}/version" - # Move the ROM images archive to the release/ directory. - mv "../libreboot_${board}.tar.xz" ../release/rom/ - printf ' OK\n' done cd ../ |