aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobin H. Johnson <robbat2@gentoo.org>2016-04-27 14:33:38 -0700
committerRobin H. Johnson <robbat2@gentoo.org>2016-04-27 14:34:07 -0700
commitfadbc54d952765619e7cab35e294cbfe172d8eaf (patch)
tree6f9a11e56e9e8e3c242ec2e7edf9d19b43bb784d
parentChange copy logic. (diff)
downloadreleng-fadbc54d952765619e7cab35e294cbfe172d8eaf.tar.gz
releng-fadbc54d952765619e7cab35e294cbfe172d8eaf.tar.bz2
releng-fadbc54d952765619e7cab35e294cbfe172d8eaf.zip
tools: Add a config that filters to stage4 only.
Signed-off-by: Robin H. Johnson <robbat2@gentoo.org>
-rw-r--r--tools/catalyst-auto-filter-stage4only.conf (renamed from tools/catalyst-auto-amd64-stage4.conf)10
1 files changed, 2 insertions, 8 deletions
diff --git a/tools/catalyst-auto-amd64-stage4.conf b/tools/catalyst-auto-filter-stage4only.conf
index 73410465..a41e4bda 100644
--- a/tools/catalyst-auto-amd64-stage4.conf
+++ b/tools/catalyst-auto-filter-stage4only.conf
@@ -1,13 +1,8 @@
# This is the config file for the catalyst-auto script. It should be pretty
# self-explanatory.
-B=`readlink -f $0`
-BASECONF=${B/-daily}
-if [ ! -e $BASECONF ]; then
- echo "Could not find base config from $B" 1>&2
- exit 1
-fi
-source ${BASECONF}
+# This configuration does not set any builds of it's own, but rather removes
+# everything EXCEPT stage4 builds.
for s in $SETS ; do
var=SET_${s}_SPECS
val=${!var}
@@ -19,6 +14,5 @@ for s in $SETS ; do
done
eval "export $var='${newval}'"
done
-printenv |grep SET
# vim:ft=sh: