diff options
author | Sam Ravnborg <sam@ravnborg.org> | 2014-07-14 11:08:29 -0400 |
---|---|---|
committer | Jesper Nilsson <jespern@axis.com> | 2014-12-19 18:01:12 -0500 |
commit | 6eb64b8c64f7177b160b4bdbabd317d523bf4bfc (patch) | |
tree | 6385b6b0dab825c2941b4a6689da2c298dde9c3b | |
parent | eeda0084419741016d32019bf535a94dbd5628e7 (diff) |
CRIS: Fix headers_install
Fix headers_install by adjusting the path to arch files.
And delete unused Kbuild file.
Drop special handling of cris in the headers.sh script
as a nice side-effect.
Signed-off-by: Sam Ravnborg <sam@ravnborg.org>
Cc: Mikael Starvik <starvik@axis.com>
Cc: David Howells <dhowells@redhat.com>
Signed-off-by: Jesper Nilsson <jesper.nilsson@axis.com>
-rw-r--r-- | arch/cris/include/asm/Kbuild | 4 | ||||
-rw-r--r-- | arch/cris/include/uapi/asm/Kbuild | 4 | ||||
-rwxr-xr-x | scripts/headers.sh | 2 |
3 files changed, 2 insertions, 8 deletions
diff --git a/arch/cris/include/asm/Kbuild b/arch/cris/include/asm/Kbuild index d5f124832fd1..889f2de050a3 100644 --- a/arch/cris/include/asm/Kbuild +++ b/arch/cris/include/asm/Kbuild | |||
@@ -1,8 +1,4 @@ | |||
1 | 1 | ||
2 | header-y += arch-v10/ | ||
3 | header-y += arch-v32/ | ||
4 | |||
5 | |||
6 | generic-y += barrier.h | 2 | generic-y += barrier.h |
7 | generic-y += clkdev.h | 3 | generic-y += clkdev.h |
8 | generic-y += cputime.h | 4 | generic-y += cputime.h |
diff --git a/arch/cris/include/uapi/asm/Kbuild b/arch/cris/include/uapi/asm/Kbuild index 7d47b366ad82..01f66b8f15e5 100644 --- a/arch/cris/include/uapi/asm/Kbuild +++ b/arch/cris/include/uapi/asm/Kbuild | |||
@@ -1,8 +1,8 @@ | |||
1 | # UAPI Header export list | 1 | # UAPI Header export list |
2 | include include/uapi/asm-generic/Kbuild.asm | 2 | include include/uapi/asm-generic/Kbuild.asm |
3 | 3 | ||
4 | header-y += arch-v10/ | 4 | header-y += ../arch-v10/arch/ |
5 | header-y += arch-v32/ | 5 | header-y += ../arch-v32/arch/ |
6 | header-y += auxvec.h | 6 | header-y += auxvec.h |
7 | header-y += bitsperlong.h | 7 | header-y += bitsperlong.h |
8 | header-y += byteorder.h | 8 | header-y += byteorder.h |
diff --git a/scripts/headers.sh b/scripts/headers.sh index 95ece06599a5..d4dc4de5cea1 100755 --- a/scripts/headers.sh +++ b/scripts/headers.sh | |||
@@ -19,8 +19,6 @@ for arch in ${archs}; do | |||
19 | case ${arch} in | 19 | case ${arch} in |
20 | um) # no userspace export | 20 | um) # no userspace export |
21 | ;; | 21 | ;; |
22 | cris) # headers export are known broken | ||
23 | ;; | ||
24 | *) | 22 | *) |
25 | if [ -d ${srctree}/arch/${arch} ]; then | 23 | if [ -d ${srctree}/arch/${arch} ]; then |
26 | do_command $1 ${arch} | 24 | do_command $1 ${arch} |