diff options
author | P. J. McDermott <pj@pehjota.net> | 2015-06-01 01:26:16 (EDT) |
---|---|---|
committer | P. J. McDermott <pj@pehjota.net> | 2015-06-01 01:26:16 (EDT) |
commit | fb39589ba5f2787488820e9903ba01879337310f (patch) | |
tree | c3c9186790a2c1f202ffcf5400ffbdeb93f99b2c /resources/scripts/helpers/build/release/archives | |
parent | 626be65fdfd4c508982f7cf3da38a54173e9ad2e (diff) | |
download | libreboot-feature/modular-release-generation-v2.zip libreboot-feature/modular-release-generation-v2.tar.gz libreboot-feature/modular-release-generation-v2.tar.bz2 |
build/release/roms: New scriptfeature/modular-release-generation-v2
Diffstat (limited to 'resources/scripts/helpers/build/release/archives')
-rwxr-xr-x | resources/scripts/helpers/build/release/archives | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/resources/scripts/helpers/build/release/archives b/resources/scripts/helpers/build/release/archives index c854a91..ae1b21f 100755 --- a/resources/scripts/helpers/build/release/archives +++ b/resources/scripts/helpers/build/release/archives @@ -63,35 +63,6 @@ rm -rf tobuild/ # create directory for the release mkdir release/ -mkdir release/rom/ - -# ### Prepare ROM archives ready for release -# ---------------------------------------------------------------------------------------------------------------------------- - -printf "Generating ROM image archives for...\n" - -cd bin/ -for board in $(ls) -do - printf "...$board" - - # show the libreboot commit ID in the archive - cat ../commitid > "$board"/commitid - - # create lzma compressed src archive - tar -c "$board" | xz -9e >../libreboot_"$board".tar.xz - - # delete. no longer needed - rm -f "$board"/commitid - - # move the ROM images to the release/ directory - mv ../libreboot_"$board".tar.xz ../release/rom/ - - printf " OK\n" -done -cd ../ - -printf "\n\n" # ### Prepare libreboot_util archive ready for release # ---------------------------------------------------------------------------------------------------------------------------- |