From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 6EA2213838B for ; Thu, 2 Oct 2014 11:50:27 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6B7E7E07DD; Thu, 2 Oct 2014 11:50:26 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 115FCE07DD for ; Thu, 2 Oct 2014 11:50:25 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 0FB6F34035E for ; Thu, 2 Oct 2014 11:50:25 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B7CD76C2A for ; Thu, 2 Oct 2014 11:50:23 +0000 (UTC) From: "Raúl Porcel" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Raúl Porcel" Message-ID: <1412244007.509ce3b8235a75a3f388c0696c0b0c3965082e70.armin76@gentoo> Subject: [gentoo-commits] proj/releng:master commit in: tools/ X-VCS-Repository: proj/releng X-VCS-Files: tools/catalyst-auto-s390x.conf X-VCS-Directories: tools/ X-VCS-Committer: armin76 X-VCS-Committer-Name: Raúl Porcel X-VCS-Revision: 509ce3b8235a75a3f388c0696c0b0c3965082e70 X-VCS-Branch: master Date: Thu, 2 Oct 2014 11:50:23 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 035de66b-a91a-4ed4-b512-d30673ab02cb X-Archives-Hash: db8445a5522f14e6ac56691256e9fac0 commit: 509ce3b8235a75a3f388c0696c0b0c3965082e70 Author: Raúl Porcel gentoo org> AuthorDate: Thu Oct 2 10:00:07 2014 +0000 Commit: Raúl Porcel gentoo org> CommitDate: Thu Oct 2 10:00:07 2014 +0000 URL: http://sources.gentoo.org/gitweb/?p=proj/releng.git;a=commit;h=509ce3b8 Add netboot to s390x --- tools/catalyst-auto-s390x.conf | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/tools/catalyst-auto-s390x.conf b/tools/catalyst-auto-s390x.conf index 33eee23..30ee386 100644 --- a/tools/catalyst-auto-s390x.conf +++ b/tools/catalyst-auto-s390x.conf @@ -4,11 +4,13 @@ SPECS_DIR=${GITDIR}/releases/weekly/specs/s390/s390x SUBARCH=`grep subarch $SPECS_DIR/stage1.spec | awk '{print $2}'` -SETS="default" +SETS="default netboot" SET_default_SPECS="stage1.spec stage2.spec stage3.spec" -#KCONFIG_DIR=${GITDIR}/releases/weekly/kconfig/s390 +SET_netboot_SPECS="netboot/netboot.spec" + +KCONFIG_DIR=${GITDIR}/releases/weekly/kconfig/s390 EMAIL_TO=releng@gentoo.org,gentoo-releng-autobuilds@lists.gentoo.org EMAIL_FROM=catalyst@$(hostname) @@ -48,5 +50,7 @@ pre_build() { post_build() { - rsync -e 'ssh -i /root/.ssh/id_rsa' ${BUILD_SRCDIR_BASE}/builds/default/stage3-${SUBARCH}-*${DATESTAMP}*.tar.bz2* s390@nightheron.gentoo.org: + mv ${BUILD_SRCDIR_BASE}/builds/default/netboot2-s390x-${DATESTAMP}/kernels/netboot64 ${BUILD_SRCDIR_BASE}/builds/default/netboot2-s390x-${DATESTAMP}/netboot-s390x-kernel-${DATESTAMP} + 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} + 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@nightheron.gentoo.org: }