From patchwork Mon Dec 13 17:10:28 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Kirill A. Shutemov" X-Patchwork-Id: 407202 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by demeter1.kernel.org (8.14.4/8.14.3) with ESMTP id oBDHAmml031283 for ; Mon, 13 Dec 2010 17:10:50 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1756940Ab0LMRKr (ORCPT ); Mon, 13 Dec 2010 12:10:47 -0500 Received: from mail-ew0-f45.google.com ([209.85.215.45]:41259 "EHLO mail-ew0-f45.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753074Ab0LMRKr (ORCPT ); Mon, 13 Dec 2010 12:10:47 -0500 Received: by ewy10 with SMTP id 10so4075230ewy.4 for ; Mon, 13 Dec 2010 09:10:45 -0800 (PST) Received: by 10.204.12.71 with SMTP id w7mr2520320bkw.90.1292260245785; Mon, 13 Dec 2010 09:10:45 -0800 (PST) Received: from shutemov.name (shutemov.name [188.40.19.243]) by mx.google.com with ESMTPS id p22sm194815bkp.9.2010.12.13.09.10.37 (version=SSLv3 cipher=RC4-MD5); Mon, 13 Dec 2010 09:10:38 -0800 (PST) From: "Kirill A. Shutsemov" To: Sam Ravnborg , David Woodhouse Cc: Michal Marek , linux-kbuild@vger.kernel.org, linux-kernel@vger.kernel.org, =?UTF-8?q?Am=C3=A9rico=20Wang?= , "Kirill A. Shutemov" Subject: [PATCH, RESEND 1/2] kbuild: introduce HDR_ARCH_LIST for headers_install_all Date: Mon, 13 Dec 2010 19:10:28 +0200 Message-Id: <1292260229-10008-1-git-send-email-kirill@shutemov.name> X-Mailer: git-send-email 1.7.2.3 Sender: linux-kbuild-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kbuild@vger.kernel.org X-Greylist: IP, sender and recipient auto-whitelisted, not delayed by milter-greylist-4.2.3 (demeter1.kernel.org [140.211.167.41]); Mon, 13 Dec 2010 17:10:50 +0000 (UTC) diff --git a/Documentation/make/headers_install.txt b/Documentation/make/headers_install.txt index f2481ca..951eb9f 100644 --- a/Documentation/make/headers_install.txt +++ b/Documentation/make/headers_install.txt @@ -39,8 +39,9 @@ INSTALL_HDR_PATH indicates where to install the headers. It defaults to The command "make headers_install_all" exports headers for all architectures simultaneously. (This is mostly of interest to distribution maintainers, who create an architecture-independent tarball from the resulting include -directory.) Remember to provide the appropriate linux/asm directory via "mv" -or "ln -s" before building a C library with headers exported this way. +directory.) You also can use HDR_ARCH_LIST to specify list of architectures. +Remember to provide the appropriate linux/asm directory via "mv" or "ln -s" +before building a C library with headers exported this way. The kernel header export infrastructure is maintained by David Woodhouse . diff --git a/scripts/headers.sh b/scripts/headers.sh index 1ddcdd3..978b42b 100755 --- a/scripts/headers.sh +++ b/scripts/headers.sh @@ -13,7 +13,7 @@ do_command() fi } -archs=$(ls ${srctree}/arch) +archs=${HDR_ARCH_LIST:-$(ls ${srctree}/arch)} for arch in ${archs}; do case ${arch} in