Gentoo Archives: gentoo-commits

From: "Raúl Porcel" <armin76@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/releng:master commit in: tools/
Date: Thu, 02 Oct 2014 11:50:27
Message-Id: 1412244007.509ce3b8235a75a3f388c0696c0b0c3965082e70.armin76@gentoo
1 commit: 509ce3b8235a75a3f388c0696c0b0c3965082e70
2 Author: Raúl Porcel <armin76 <AT> gentoo <DOT> org>
3 AuthorDate: Thu Oct 2 10:00:07 2014 +0000
4 Commit: Raúl Porcel <armin76 <AT> gentoo <DOT> org>
5 CommitDate: Thu Oct 2 10:00:07 2014 +0000
6 URL: http://sources.gentoo.org/gitweb/?p=proj/releng.git;a=commit;h=509ce3b8
7
8 Add netboot to s390x
9
10 ---
11 tools/catalyst-auto-s390x.conf | 10 +++++++---
12 1 file changed, 7 insertions(+), 3 deletions(-)
13
14 diff --git a/tools/catalyst-auto-s390x.conf b/tools/catalyst-auto-s390x.conf
15 index 33eee23..30ee386 100644
16 --- a/tools/catalyst-auto-s390x.conf
17 +++ b/tools/catalyst-auto-s390x.conf
18 @@ -4,11 +4,13 @@
19 SPECS_DIR=${GITDIR}/releases/weekly/specs/s390/s390x
20 SUBARCH=`grep subarch $SPECS_DIR/stage1.spec | awk '{print $2}'`
21
22 -SETS="default"
23 +SETS="default netboot"
24
25 SET_default_SPECS="stage1.spec stage2.spec stage3.spec"
26
27 -#KCONFIG_DIR=${GITDIR}/releases/weekly/kconfig/s390
28 +SET_netboot_SPECS="netboot/netboot.spec"
29 +
30 +KCONFIG_DIR=${GITDIR}/releases/weekly/kconfig/s390
31
32 EMAIL_TO=releng@g.o,gentoo-releng-autobuilds@l.g.o
33 EMAIL_FROM=catalyst@$(hostname)
34 @@ -48,5 +50,7 @@ pre_build() {
35
36
37 post_build() {
38 - rsync -e 'ssh -i /root/.ssh/id_rsa' ${BUILD_SRCDIR_BASE}/builds/default/stage3-${SUBARCH}-*${DATESTAMP}*.tar.bz2* s390@×××××××××××××××××.org:
39 + mv ${BUILD_SRCDIR_BASE}/builds/default/netboot2-s390x-${DATESTAMP}/kernels/netboot64 ${BUILD_SRCDIR_BASE}/builds/default/netboot2-s390x-${DATESTAMP}/netboot-s390x-kernel-${DATESTAMP}
40 + mv ${BUILD_SRCDIR_BASE}/builds/default/netboot2-s390x-${DATESTAMP}/kernels/misc/netboot64.igz ${BUILD_SRCDIR_BASE}/builds/default/netboot2-s390x-${DATESTAMP}/netboot64 ${BUILD_SRCDIR_BASE}/builds/default/netboot2-s390x-${DATESTAMP}/netboot-s390x-initramfs-${DATESTAMP}
41 + rsync -e 'ssh -i /root/.ssh/id_rsa' ${BUILD_SRCDIR_BASE}/builds/default/stage3-${SUBARCH}-*${DATESTAMP}*.tar.bz2* ${BUILD_SRCDIR_BASE}/builds/default/netboot2-s390x-${DATESTAMP}/netboot* s390@×××××××××××××××××.org:
42 }