diff options
author | H. Peter Anvin <hpa@linux.intel.com> | 2011-11-17 13:17:35 -0800 |
---|---|---|
committer | H. Peter Anvin <hpa@linux.intel.com> | 2011-11-17 13:35:20 -0800 |
commit | 052ad274964e613a12bf8ce7c5631f70d0bc82cc (patch) | |
tree | fd3519410801d766f63b07dc308d2b702f3c9ec0 /scripts | |
parent | cb97914b04e7b587cf555ec5b1c69d61014f3378 (diff) | |
download | op-kernel-dev-052ad274964e613a12bf8ce7c5631f70d0bc82cc.zip op-kernel-dev-052ad274964e613a12bf8ce7c5631f70d0bc82cc.tar.gz |
kbuild: Add support for an "archheaders" target
Add support for an "archheaders" target. This target can generate
files that need to be installed for user space by "make
headers_install" or "make headers_install_all".
In order to support "make headers_install_all", it must be able to run
without the tree having to be configured first.
Cc: David Woodhouse <dwmw2@infradead.org>
Cc: Sam Ravnborg <sam@ravnborg.org>
Cc: Michal Marek <mmarek@suse.cz>
Signed-off-by: H. Peter Anvin <hpa@linux.intel.com>
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/headers.sh | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/scripts/headers.sh b/scripts/headers.sh index 978b42b..af1ed88 100755 --- a/scripts/headers.sh +++ b/scripts/headers.sh @@ -7,6 +7,7 @@ set -e do_command() { if [ -f ${srctree}/arch/$2/include/asm/Kbuild ]; then + make ARCH=$2 KBUILD_HEADERS=$1 archheaders make ARCH=$2 KBUILD_HEADERS=$1 headers_$1 else printf "Ignoring arch: %s\n" ${arch} |