]> Git Repo - linux.git/commitdiff
builddeb: Fix header package regarding dtc source links
authorJan Kiszka <[email protected]>
Wed, 21 Mar 2018 05:15:28 +0000 (13:15 +0800)
committerMasahiro Yamada <[email protected]>
Tue, 27 Mar 2018 16:42:17 +0000 (01:42 +0900)
Since d5d332d3f7e8, a couple of links in scripts/dtc/include-prefixes
are additionally required in order to build device trees with the header
package.

Signed-off-by: Jan Kiszka <[email protected]>
Reviewed-by: Riku Voipio <[email protected]>
Signed-off-by: Masahiro Yamada <[email protected]>
scripts/package/builddeb

index b4f0f2b3f8d2c6d495653c4fa81cbddbe8edbca8..13fabb1f81dbe5721f10a214f348b43fe58d2f05 100755 (executable)
@@ -313,7 +313,7 @@ fi
 
 # Build kernel header package
 (cd $srctree; find . -name Makefile\* -o -name Kconfig\* -o -name \*.pl) > "$objtree/debian/hdrsrcfiles"
-(cd $srctree; find arch/*/include include scripts -type f) >> "$objtree/debian/hdrsrcfiles"
+(cd $srctree; find arch/*/include include scripts -type f -o -type l) >> "$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"
 if grep -q '^CONFIG_STACK_VALIDATION=y' $KCONFIG_CONFIG ; then
This page took 0.060999 seconds and 4 git commands to generate.