This is an automated email from the git hooks/post-receive script.
bernie.ogden pushed a commit to branch bernie/fs
in repository toolchain/abe.
commit 8ed05f3d1aa1ee5213be0fb122dc96525e458994
Author: Bernard Ogden <bernie.ogden(a)linaro.org>
Date: Wed Jul 29 13:41:54 2015 +0200
Add check that HEAD maps to something meaningful upstream
Change-Id: I2b82e9698e2e0fbc06990ca1d7608ecd3b0e93da
---
config/bench/fs/makefs.sh | 10 ++++++++++
1 file changed, 10 insertions(+)
diff --git a/config/bench/fs/makefs.sh b/config/bench/fs/makefs.sh
index 2c27503..2e87bc0 100755
--- a/config/bench/fs/makefs.sh
+++ b/config/bench/fs/makefs.sh
@@ -3,6 +3,16 @@ set -e
set -u
set -o pipefail
+#Check that we are in a clean state w.r.t. source control
+#Required to guarantee that the hash is valid
+if git status -sb --porcelain | head -n1 | grep -q '\]$'; then
+ echo "Committed state out of sync with upstream" >&2
+ exit 1
+elif test x"`git status -sb --porcelain | sed 1d`" != x; then
+ echo "Repository has local changes" >&2
+ exit 1
+fi
+
#All of these variables MUST be defined and non-empty
export stamp=20150607T041354Z
export suite=jessie
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
This is an automated email from the git hooks/post-receive script.
bernie.ogden pushed a commit to branch bernie/fs
in repository toolchain/abe.
commit 01a90fc200c8615fd258319dd591b168a5b64b63
Author: Bernard Ogden <bernie.ogden(a)linaro.org>
Date: Wed Jul 29 17:26:51 2015 +0200
Allow user to override 'local changes' check
Change-Id: I02f150da61b1867f284210e17102956fad40d661
---
config/bench/fs/makefs.sh | 8 +++++++-
1 file changed, 7 insertions(+), 1 deletion(-)
diff --git a/config/bench/fs/makefs.sh b/config/bench/fs/makefs.sh
index 6367edf..f62f482 100755
--- a/config/bench/fs/makefs.sh
+++ b/config/bench/fs/makefs.sh
@@ -10,7 +10,13 @@ if git status -sb --porcelain | head -n1 | grep -q '\]$'; then
exit 1
elif test x"`git status -sb --porcelain | sed 1d`" != x; then
echo "Repository has local changes" >&2
- exit 1
+ REPLY=
+ while ! echo "${REPLY}" | grep -qi [yn]; do
+ read -sn1 -p "Continue anyway? (y/n) " >&2
+ done
+ if test x"${REPLY,,}" = xn; then
+ exit 1
+ fi
fi
#All of these variables MUST be defined and non-empty
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
This is an automated email from the git hooks/post-receive script.
bernie.ogden pushed a commit to branch bernie/fs
in repository toolchain/abe.
commit 9413ca9b08ce9c797f7285525a945d6ba5e283b2
Author: Bernard Ogden <bernie.ogden(a)linaro.org>
Date: Wed Jul 29 16:21:13 2015 +0200
Add some comments
Change-Id: Ib141f404240910da8ebf9829a8680f8ee93c4dc1
---
config/bench/fs/makefs.sh | 3 +++
1 file changed, 3 insertions(+)
diff --git a/config/bench/fs/makefs.sh b/config/bench/fs/makefs.sh
index 02df1d8..80b6632 100755
--- a/config/bench/fs/makefs.sh
+++ b/config/bench/fs/makefs.sh
@@ -41,6 +41,8 @@ function derivevars {
echo "${tarball} already exists" >&2
exit 1
fi
+
+ #Assumes host machine is x86_64
if test x"${arch}" = "xx86-64"; then
foreign=
else
@@ -71,6 +73,7 @@ function genrootfs {
#This depends on the relevant kernel magic being in place to execute
#arm/aarch64 code on qemu, and the relevant qemu being installed
+ #Debian: apt-get install binfmt-support qemu-user-static
if test x"${foreign:-}" != x; then
sudo /usr/bin/debootstrap --second-stage --second-stage-target="${outdir}"
fi
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
This is an automated email from the git hooks/post-receive script.
bernie.ogden pushed a change to branch bernie/fs
in repository toolchain/abe.
discards 209058c Add inotify-tools to the default package set
discards f0b9a12 Use full paths for tarballs
discards 6498979 Allow user to override 'local changes' check
discards a07c817 Allow selection of what to produce
discards 50ad506 Add some comments
discards 9d1ad55 Run second-stage for foreign chroots
discards bff8b87 Add check that HEAD maps to something meaningful upstream
discards f7327ee Introduce script to build filesystems
adds 1a9237c Reduce target-session to minimal patches
new b22f7a7 Introduce script to build filesystems
new 8ed05f3 Add check that HEAD maps to something meaningful upstream
new fdfdd76 Run second-stage for foreign chroots
new 9413ca9 Add some comments
new b9d5673 Allow selection of what to produce
new 01a90fc Allow user to override 'local changes' check
new 076a7aa Use full paths for tarballs
new 3e6103b Add inotify-tools to the default package set
This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version. This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:
* -- * -- B -- O -- O -- O (209058c)
\
N -- N -- N refs/heads/bernie/fs (3e6103b)
You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.
Any revisions marked "omits" are not gone; other references still
refer to them. Any revisions marked "discards" are gone forever.
The 8 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.
Summary of changes:
config/bench/lava/{target-session.yaml => target-session-kvm.yaml} | 4 +---
config/bench/lava/target-session.yaml | 5 -----
2 files changed, 1 insertion(+), 8 deletions(-)
copy config/bench/lava/{target-session.yaml => target-session-kvm.yaml} (88%)
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
This is an automated email from the git hooks/post-receive script.
bernie.ogden pushed a commit to branch bernie/fs
in repository toolchain/abe.
commit 3e6103b223ce872dded2d5a5214e07c981eb8503
Author: Bernard Ogden <bernie.ogden(a)linaro.org>
Date: Wed Jul 29 17:44:57 2015 +0200
Add inotify-tools to the default package set
Change-Id: I98c428ee645255e0e0ec49186535b547c28ba03e
---
config/bench/fs/makefs.sh | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/config/bench/fs/makefs.sh b/config/bench/fs/makefs.sh
index 4c87d5f..b83c98a 100755
--- a/config/bench/fs/makefs.sh
+++ b/config/bench/fs/makefs.sh
@@ -23,7 +23,7 @@ fi
export stamp=20150607T041354Z
export suite=jessie
export variant=minbase
-export include=openssh-server,wget,make,cpufrequtils
+export include=openssh-server,wget,cpufrequtils,inotify-tools
export label=target
export hash="`git rev-parse HEAD`"
if test $? -ne 0; then
@@ -133,7 +133,7 @@ function genrootfs {
( #kvm host - many of the extras are abe dependencies, it will not configure witho [...]
arch=x86_64
label=host
- extras=autogen,binutils,bison,dejagnu,flex,gawk,gcc,gcc-multilib,g++-multilib,gi [...]
+ extras=autogen,binutils,bison,dejagnu,flex,gawk,gcc,gcc-multilib,g++-multilib,gi [...]
derivevars
gentar
genrootfs
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
This is an automated email from the git hooks/post-receive script.
bernie.ogden pushed a commit to branch bernie/benchmarking
in repository toolchain/abe.
The following commit(s) were added to refs/heads/bernie/benchmarking by this push:
new 1a9237c Reduce target-session to minimal patches
1a9237c is described below
commit 1a9237cbd04bc429adb860a940c6f9ff0633a751
Author: Bernard Ogden <bernie.ogden(a)linaro.org>
Date: Wed Jul 29 18:09:55 2015 +0200
Reduce target-session to minimal patches
Create a special targt-session for kvm targets, which are just
used for testing and need extra stuff to support running
benchmarks natively.
Change-Id: Id91fd2841330b253f3694c09def9f53139a0c474
---
config/bench/lava/{target-session.yaml => target-session-kvm.yaml} | 4 +---
config/bench/lava/target-session.yaml | 5 -----
2 files changed, 1 insertion(+), 8 deletions(-)
diff --git a/config/bench/lava/target-session.yaml b/config/bench/lava/target-sessi [...]
similarity index 88%
copy from config/bench/lava/target-session.yaml
copy to config/bench/lava/target-session-kvm.yaml
index 65f37a5..fd5d593 100644
--- a/config/bench/lava/target-session.yaml
+++ b/config/bench/lava/target-session-kvm.yaml
@@ -1,5 +1,5 @@
metadata:
- name: bench-session
+ name: bench-session-kvm
format: "Lava-Test-Shell Test Definition 1.0"
description: "Benchmarking Session"
version: 1.0
@@ -10,13 +10,11 @@ params:
install:
deps:
- openssh-server
- - wget
- make
- cpufrequtils
- binutils
- gawk
- libgfortran3
- - rsync
- inotify-tools
run:
diff --git a/config/bench/lava/target-session.yaml b/config/bench/lava/target-session.yaml
index 65f37a5..1185555 100644
--- a/config/bench/lava/target-session.yaml
+++ b/config/bench/lava/target-session.yaml
@@ -10,13 +10,8 @@ params:
install:
deps:
- openssh-server
- - wget
- make
- cpufrequtils
- - binutils
- - gawk
- - libgfortran3
- - rsync
- inotify-tools
run:
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch trunk
in repository gcc.
from a13f5fb PR libstdc++/66829 * testsuite/lib/libstdc++.exp (v3-build_ [...]
new df2106b PR libgfortran/66650 * libgfortran.h (GFC_DTYPE_SIZE_MASK): [...]
The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.
Summary of changes:
libgfortran/ChangeLog | 6 ++++++
libgfortran/libgfortran.h | 3 +--
2 files changed, 7 insertions(+), 2 deletions(-)
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
This is an automated email from the git hooks/post-receive script.
bernie.ogden pushed a commit to branch bernie/fs
in repository toolchain/abe.
commit 209058cd643ff257a5d223d228e3afaf4c173800
Author: Bernard Ogden <bernie.ogden(a)linaro.org>
Date: Wed Jul 29 17:44:57 2015 +0200
Add inotify-tools to the default package set
Change-Id: I98c428ee645255e0e0ec49186535b547c28ba03e
---
config/bench/fs/makefs.sh | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/config/bench/fs/makefs.sh b/config/bench/fs/makefs.sh
index 4c87d5f..b83c98a 100755
--- a/config/bench/fs/makefs.sh
+++ b/config/bench/fs/makefs.sh
@@ -23,7 +23,7 @@ fi
export stamp=20150607T041354Z
export suite=jessie
export variant=minbase
-export include=openssh-server,wget,make,cpufrequtils
+export include=openssh-server,wget,cpufrequtils,inotify-tools
export label=target
export hash="`git rev-parse HEAD`"
if test $? -ne 0; then
@@ -133,7 +133,7 @@ function genrootfs {
( #kvm host - many of the extras are abe dependencies, it will not configure witho [...]
arch=x86_64
label=host
- extras=autogen,binutils,bison,dejagnu,flex,gawk,gcc,gcc-multilib,g++-multilib,gi [...]
+ extras=autogen,binutils,bison,dejagnu,flex,gawk,gcc,gcc-multilib,g++-multilib,gi [...]
derivevars
gentar
genrootfs
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
This is an automated email from the git hooks/post-receive script.
bernie.ogden pushed a change to branch bernie/fs
in repository toolchain/abe.
from 6498979 Allow user to override 'local changes' check
new f0b9a12 Use full paths for tarballs
new 209058c Add inotify-tools to the default package set
The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.
Summary of changes:
config/bench/fs/makefs.sh | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.