diff options
author | Azriel Samson <asamson@codeaurora.org> | 2016-03-31 11:31:18 -0600 |
---|---|---|
committer | Michal Marek <mmarek@suse.com> | 2016-05-10 17:44:53 +0200 |
commit | 962475ac2f9662fe69a9f86220ab31bbbf3911d2 (patch) | |
tree | 16255b1449acab4a7c694cd5159e30061a3fc4f6 /scripts | |
parent | 697bbc7b832048d3a679cd55caf2268a325efbe0 (diff) | |
download | linux-962475ac2f9662fe69a9f86220ab31bbbf3911d2.tar.gz linux-962475ac2f9662fe69a9f86220ab31bbbf3911d2.tar.bz2 linux-962475ac2f9662fe69a9f86220ab31bbbf3911d2.zip |
builddeb: fix missing headers in linux-headers package
The kernel headers package (linux-headers) doesn't include
header files from other architectures required to build
out-of-tree modules.
For e.g. on ARM64, opcodes.h includes the same file from ARM
which causes the following error:
./arch/arm64/include/asm/opcodes.h:1:43: fatal error:
../../arm/include/asm/opcodes.h: No such file or directory
compilation terminated.
Signed-off-by: Azriel Samson <asamson@codeaurora.org>
Signed-off-by: Michal Marek <mmarek@suse.com>
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/package/builddeb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/package/builddeb b/scripts/package/builddeb index 93d3b157298d..86e56fef7473 100755 --- a/scripts/package/builddeb +++ b/scripts/package/builddeb @@ -325,7 +325,7 @@ fi if grep -q '^CONFIG_STACK_VALIDATION=y' $KCONFIG_CONFIG ; then (cd $srctree; find tools/objtool -type f -executable) >> "$objtree/debian/hdrsrcfiles" fi -(cd $srctree; find arch/$SRCARCH/include include scripts -type f) >> "$objtree/debian/hdrsrcfiles" +(cd $srctree; find arch/*/include include scripts -type f) >> "$objtree/debian/hdrsrcfiles" (cd $srctree; find arch/$SRCARCH -name module.lds -o -name Kbuild.platforms -o -name Platform) >> "$objtree/debian/hdrsrcfiles" (cd $srctree; find $(find arch/$SRCARCH -name include -o -name scripts -type d) -type f) >> "$objtree/debian/hdrsrcfiles" (cd $objtree; find arch/$SRCARCH/include Module.symvers include scripts -type f) >> "$objtree/debian/hdrobjfiles" |