diff options
author | Peter Korsgaard <jacmet@sunsite.dk> | 2008-06-15 19:17:14 +0000 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2008-06-15 19:17:14 +0000 |
commit | ab32901117447a996a22386416ba8b71ee56c07b (patch) | |
tree | 9aa4158cc2b7c0efb736aaf16425b16c208bb85d | |
parent | e34521b47e7ccd232f99042660ae4440a1beed71 (diff) | |
download | buildroot-novena-ab32901117447a996a22386416ba8b71ee56c07b.tar.gz buildroot-novena-ab32901117447a996a22386416ba8b71ee56c07b.zip |
kernel-headers: 2.6.25.6: export linux/a.out.h (E.G. for valgrind)
-rw-r--r-- | toolchain/kernel-headers/linux-2.6.25.6-export-linux-aout.patch | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/toolchain/kernel-headers/linux-2.6.25.6-export-linux-aout.patch b/toolchain/kernel-headers/linux-2.6.25.6-export-linux-aout.patch new file mode 100644 index 000000000..972fa76b0 --- /dev/null +++ b/toolchain/kernel-headers/linux-2.6.25.6-export-linux-aout.patch @@ -0,0 +1,24 @@ +[PATCH] export linux/a.out.h + +Export linux/a.out.h like we do for asm/a.out.h. One minor complication is +that the interesting stuff is protected by an CONFIG_ARCH_SUPPORTS_AOUT ifdef, +so make sure this gets defined for unifdef. + +Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk> +--- + include/linux/Kbuild | 2 ++ + 1 file changed, 2 insertions(+) + +Index: linux-2.6.25.6/include/linux/Kbuild +=================================================================== +--- linux-2.6.25.6.orig/include/linux/Kbuild ++++ linux-2.6.25.6/include/linux/Kbuild +@@ -159,6 +159,8 @@ + header-y += videotext.h + header-y += x25.h + ++UNIFDEF += -DCONFIG_ARCH_SUPPORTS_AOUT ++unifdef-y += a.out.h + unifdef-y += acct.h + unifdef-y += adb.h + unifdef-y += adfs_fs.h |