gentle ping On 25 April 2014 09:12, Fathi Boudra <fathi.boudra@xxxxxxxxxx> wrote: > Ben, Michal, what about this patch? > > On 15 April 2014 14:51, Fathi Boudra <fathi.boudra@xxxxxxxxxx> wrote: >> The kernel headers package (linux-headers) doesn't include several >> header files required to build out-of-tree modules. >> >> It makes the package unusable on e.g. ARM architecture: >> /usr/src/linux-headers-3.14.0/arch/arm/include/asm/memory.h:24:25: >> fatal error: mach/memory.h: No such file or directory >> #include <mach/memory.h> >> ^ >> compilation terminated. >> >> Signed-off-by: Fathi Boudra <fathi.boudra@xxxxxxxxxx> >> --- >> Changes from v1: >> - add missing module.lds, mips/Kbuild.platforms and Platform files >> - generically look for all include directories in arch/$SRCARCH >> >> scripts/package/builddeb | 4 +++- >> 1 file changed, 3 insertions(+), 1 deletion(-) >> >> diff --git a/scripts/package/builddeb b/scripts/package/builddeb >> index f46e4dd..42b1e20 100644 >> --- a/scripts/package/builddeb >> +++ b/scripts/package/builddeb >> @@ -287,9 +287,11 @@ EOF >> >> fi >> >> -# Build header package >> +# Build kernel header package >> (cd $srctree; find . -name Makefile\* -o -name Kconfig\* -o -name \*.pl > "$objtree/debian/hdrsrcfiles") >> (cd $srctree; find arch/$SRCARCH/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") >> destdir=$kernel_headers_dir/usr/src/linux-headers-$version >> mkdir -p "$destdir" >> -- >> 1.9.1 -- To unsubscribe from this list: send the line "unsubscribe linux-kbuild" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html