summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFrancis Rowe <info@gluglug.org.uk>2014-12-13 12:44:18 (EST)
committer Francis Rowe <info@gluglug.org.uk>2014-12-13 13:46:15 (EST)
commit04cff6c87c714c8e322033cc3f3f66c94cb150e5 (patch)
treee0bf91e7d6c4575f539a83b8ad07d8ab734972c7
parent2e51cdedd2cc640e39db89805ec3ed6c9c1172a0 (diff)
downloadlibreboot-04cff6c87c714c8e322033cc3f3f66c94cb150e5.zip
libreboot-04cff6c87c714c8e322033cc3f3f66c94cb150e5.tar.gz
libreboot-04cff6c87c714c8e322033cc3f3f66c94cb150e5.tar.bz2
build-release: not all files were copied to libreboot_src. fix it.
-rwxr-xr-x[-rw-r--r--]addseabios0
-rwxr-xr-xbuild-release7
-rw-r--r--docs/release.html1
3 files changed, 6 insertions, 2 deletions
diff --git a/addseabios b/addseabios
index 1cc1aad..1cc1aad 100644..100755
--- a/addseabios
+++ b/addseabios
diff --git a/build-release b/build-release
index 27206fb..0364723 100755
--- a/build-release
+++ b/build-release
@@ -46,7 +46,7 @@ rm -f libreboot_src.tar.xz
rm -f libreboot_bin.tar.xz
# Get manifest which will be used to copy everything
-ls > releasefilelist
+find -maxdepth 1 > releasefilelist
# ### Prepare libreboot_src archive ready for release
# ----------------------------------------------------------------------------------------------------------------------------
@@ -57,7 +57,10 @@ mkdir libreboot_src
for resource in $(cat releasefilelist)
do
- cp -r $resource libreboot_src
+ if [ "$resource" != "." ]
+ then
+ cp -r $resource libreboot_src
+ fi
done
cd libreboot_src/
diff --git a/docs/release.html b/docs/release.html
index 21d9e75..2b7a609 100644
--- a/docs/release.html
+++ b/docs/release.html
@@ -120,6 +120,7 @@
Changes for this release (latest changes first, earliest changes last)
</h2>
<ul>
+ <li>build-release: not all files were copied to libreboot_src. fix that.</li>
<li>build-release: include cbmem (statically compiled) in libreboot_bin</li>
<li>Documentation (X200): added software-based flashing instructions</li>
<li>Documentation: remove all references to the bus pirate (replaced with BBB flashing tutorials)</li>