Building the linux-headers*.deb file on amd64 it seems that scripts/\ package/builddeb forgets to include some generated header files from the build directory. It uses other header files generated in the source directory instead. arch/x86/include/generated/asm/unistd_32_ia32.h arch/x86/include/generated/asm/unistd_64_x32.h are lost. AFAICS this problem was introduced by 9b4ce7bce5f30712fd926ab4599a803314a07719 . Below is a patch. This is the very first patch I am trying to get into the kernel source tree. Please excuse and correct me if I don't follow the blessed procedure. Thanx for your patience. Harri ----------------------------------------------------------------------------------- commit 43aa35286ac190fc64998587e54bade3e53487ef Author: Harald Dunkel <harri@xxxxxxxxx> Date: Sat May 26 15:41:24 2012 +0200 kbuild: add generated header files for 'make deb-pkg' 9b4ce7bce5f30712fd926ab4599a803314a07719 introduced a regression: The header files generated in $objtree/arch/$SRCARCH/include are not included in the linux-headers*.deb package. This breaks building some 3rd-party modules due to a missing unistd_32_ia32.h file. Further the temporary "hdrobjfiles" list of files is not properly reset. This patch fixes these problem. Signed-off-by: Harald Dunkel <harri@xxxxxxxxx> diff --git a/scripts/package/builddeb b/scripts/package/builddeb index eee5f8e..1cf6352 100644 --- a/scripts/package/builddeb +++ b/scripts/package/builddeb @@ -245,6 +245,7 @@ fi # Build 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 $objtree; find arch/$SRCARCH/include -type f -name \*.h > "$objtree/debian/hdrobjfiles") (cd $objtree; find .config Module.symvers include scripts -type f >> "$objtree/debian/hdrobjfiles") destdir=$kernel_headers_dir/usr/src/linux-headers-$version mkdir -p "$destdir" -- 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