From patchwork Thu May 5 21:26:11 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Kamal Mostafa X-Patchwork-Id: 619053 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from huckleberry.canonical.com (huckleberry.canonical.com [91.189.94.19]) by ozlabs.org (Postfix) with ESMTP id 3r17JT2TWGz9t6c; Fri, 6 May 2016 07:26:33 +1000 (AEST) Received: from localhost ([127.0.0.1] helo=huckleberry.canonical.com) by huckleberry.canonical.com with esmtp (Exim 4.76) (envelope-from ) id 1ayQmt-00046m-Oa; Thu, 05 May 2016 21:26:23 +0000 Received: from youngberry.canonical.com ([91.189.89.112]) by huckleberry.canonical.com with esmtps (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.76) (envelope-from ) id 1ayQmp-000467-4K for kernel-team@lists.ubuntu.com; Thu, 05 May 2016 21:26:19 +0000 Received: from 1.general.kamal.us.vpn ([10.172.68.52] helo=fourier) by youngberry.canonical.com with esmtpsa (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.76) (envelope-from ) id 1ayQmo-0003Df-N1; Thu, 05 May 2016 21:26:18 +0000 Received: from kamal by fourier with local (Exim 4.86_2) (envelope-from ) id 1ayQml-00087s-QS; Thu, 05 May 2016 14:26:15 -0700 From: Kamal Mostafa To: kernel-team@lists.ubuntu.com Subject: Applied: [kteam-tools] git-build-kernel: Add support for s390x Date: Thu, 5 May 2016 14:26:11 -0700 Message-Id: <1462483571-31197-1-git-send-email-kamal@canonical.com> X-Mailer: git-send-email 2.7.4 Cc: Kamal Mostafa X-BeenThere: kernel-team@lists.ubuntu.com X-Mailman-Version: 2.1.14 Precedence: list List-Id: Kernel team discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: kernel-team-bounces@lists.ubuntu.com Sender: kernel-team-bounces@lists.ubuntu.com Signed-off-by: Kamal Mostafa --- git-build-kernel/post-receive | 1 + 1 file changed, 1 insertion(+) diff --git a/git-build-kernel/post-receive b/git-build-kernel/post-receive index 18ba941..dd8451f 100755 --- a/git-build-kernel/post-receive +++ b/git-build-kernel/post-receive @@ -39,6 +39,7 @@ do [ "${ref_p2%%-*}" = "ppc64el" ] && { arch=ppc64el; ref_p2="${ref_p2#*-}"; } [ "${ref_p2%%-*}" = "arm64" ] && { arch=arm64; ref_p2="${ref_p2#*-}"; } [ "${ref_p2%%-*}" = "powerpc" ] && { arch=powerpc; ref_p2="${ref_p2#*-}"; } + [ "${ref_p2%%-*}" = "s390x" ] && { arch=s390x; ref_p2="${ref_p2#*-}"; } ### handle predefined branch or refs targets ### e.g. refs/heads/binary (an actual branch named "binary")