diff options
-rw-r--r-- | RELEASE | 14 | ||||
-rw-r--r-- | docs/release.html | 10 | ||||
-rwxr-xr-x | resources/scripts/helpers/build/module/coreboot | 4 | ||||
-rwxr-xr-x | resources/scripts/helpers/build/release/roms | 7 | ||||
-rwxr-xr-x | resources/scripts/helpers/build/release/src | 7 | ||||
-rwxr-xr-x | resources/scripts/helpers/build/release/tobuild | 7 | ||||
-rwxr-xr-x | resources/scripts/helpers/build/release/util | 7 |
7 files changed, 54 insertions, 2 deletions
@@ -1,3 +1,17 @@ +GNU Libreboot 20160822 + +This is a bugfix release, based on 20160818. It contains no new board changes. +The previous 20160818 release had build errors in the _src archive, and the +_util archive was only source code. + +Changes compared to 20160818: +* Fixed bug where ./build module coreboot always returned non-zero status +* Fixed missing symlink of crossgcc when building from _src (thanks Arthur +Heymans) +* Proper ChangeLog now, instead of pasted git log +* Util archive is now binaries again (source code is in the _src archive) +* Documentation is now in HTML format + GNU Libreboot 20160818 This is a brand GNU release. Libreboot joined the GNU project on 14 May 2016. diff --git a/docs/release.html b/docs/release.html index 9a823abb..28d88f80 100644 --- a/docs/release.html +++ b/docs/release.html @@ -29,6 +29,16 @@ <div class="section"> + <h1 id="release20160822">GNU Libreboot 20160822</h1> + + <p> + Release date: 22nd August 2016. + </p> + <p> + This fixes build issues in the previous 20160818 release. See + change log for details. + </p> + <h1 id="release20160818">GNU Libreboot 20160818</h1> <p> diff --git a/resources/scripts/helpers/build/module/coreboot b/resources/scripts/helpers/build/module/coreboot index 2fee6e3c..f6e23cae 100755 --- a/resources/scripts/helpers/build/module/coreboot +++ b/resources/scripts/helpers/build/module/coreboot @@ -98,7 +98,7 @@ apply_patches_from_directory() { continue # ugly ugly ugly ugly ugly fi # most hideous thing you've ever seen - git am "${patch}" || return 1 + git am "${patch}" || continue done fi } @@ -110,7 +110,7 @@ apply_patches_from_file() { if [ -f "${patch_list}" ]; then for patchname in $(cat "${patch_list}"); do - git am "${libreboot_src_root}/${patchname}" || return 1 + git am "${libreboot_src_root}/${patchname}" || continue done fi } diff --git a/resources/scripts/helpers/build/release/roms b/resources/scripts/helpers/build/release/roms index 5ab835f2..a731d1d6 100755 --- a/resources/scripts/helpers/build/release/roms +++ b/resources/scripts/helpers/build/release/roms @@ -75,6 +75,13 @@ for payload in *; do cp "NEWS" "${archivename}/" fi + if [ -f "../../RELEASE" ]; then + rm -f "${archivename}/ChangeLog" + rm -f "${archivename}/NEWS" + cp "../../RELEASE" "${archivename}/ChangeLog" + cp "../../RELEASE" "${archivename}/NEWS" + fi + # Put the version string in the archive. printf '%s\n' "${version}" >"${archivename}/version" # Put the version date string in the archive diff --git a/resources/scripts/helpers/build/release/src b/resources/scripts/helpers/build/release/src index c9a03ae6..d224fb51 100755 --- a/resources/scripts/helpers/build/release/src +++ b/resources/scripts/helpers/build/release/src @@ -65,6 +65,13 @@ else cp "NEWS" "${distdir}/" fi +if [ -f "RELEASE" ]; then + rm -f "${distdir}/ChangeLog" + rm -f "${distdir}/NEWS" + cp "RELEASE" "${distdir}/ChangeLog" + cp "RELEASE" "${distdir}/NEWS" +fi + # include version information printf '%s\n' "${version}" >"${distdir}/version" # include version date information diff --git a/resources/scripts/helpers/build/release/tobuild b/resources/scripts/helpers/build/release/tobuild index d9022f7b..b3a9fb0c 100755 --- a/resources/scripts/helpers/build/release/tobuild +++ b/resources/scripts/helpers/build/release/tobuild @@ -84,6 +84,13 @@ else cp "NEWS" "${distdir}/" fi +if [ -f "RELEASE" ]; then + rm -f "${distdir}/ChangeLog" + rm -f "${distdir}/NEWS" + cp "RELEASE" "${distdir}/ChangeLog" + cp "RELEASE" "${distdir}/NEWS" +fi + # include version information printf '%s\n' "${version}" >"${distdir}/version" # include version date information diff --git a/resources/scripts/helpers/build/release/util b/resources/scripts/helpers/build/release/util index 40fafaed..df4bd6be 100755 --- a/resources/scripts/helpers/build/release/util +++ b/resources/scripts/helpers/build/release/util @@ -76,6 +76,13 @@ else cp "NEWS" "${distdir}/" fi +if [ -f "RELEASE" ]; then + rm -f "${distdir}/ChangeLog" + rm -f "${distdir}/NEWS" + cp "RELEASE" "${distdir}/ChangeLog" + cp "RELEASE" "${distdir}/NEWS" +fi + # include version information printf '%s\n' "${version}" >"${distdir}/version" # include version date information |