mirror of
https://git.yoctoproject.org/poky
synced 2026-02-20 08:29:42 +01:00
Having one monolithic packages directory makes it hard to find things and is generally overwhelming. This commit splits it into several logical sections roughly based on function, recipes.txt gives more information about the classifications used. The opportunity is also used to switch from "packages" to "recipes" as used in OpenEmbedded as the term "packages" can be confusing to people and has many different meanings. Not all recipes have been classified yet, this is just a first pass at separating things out. Some packages are moved to meta-extras as they're no longer actively used or maintained. Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
26 lines
770 B
Diff
26 lines
770 B
Diff
stdint.h has C definitions which troubles assembler. and if asm/ptrace.h
|
|
is included in assembler context, then it should not include the
|
|
C-specific stdint.h file.
|
|
This was causing glibc building issue on ppc.
|
|
Looks like this issue is introduced on the 2.6.34 kernel.
|
|
|
|
2010-06-024
|
|
Signed-Off-By:Nitin A Kamble <nitin.a.kamble@intel.com>
|
|
Acked-By:Jeff Dike <jdike@linux.intel.com>
|
|
|
|
Index: linux-2.6.34/arch/powerpc/include/asm/ptrace.h
|
|
===================================================================
|
|
--- linux-2.6.34.orig/arch/powerpc/include/asm/ptrace.h
|
|
+++ linux-2.6.34/arch/powerpc/include/asm/ptrace.h
|
|
@@ -27,8 +27,10 @@
|
|
#ifdef __KERNEL__
|
|
#include <linux/types.h>
|
|
#else
|
|
+#ifndef __ASSEMBLY__
|
|
#include <stdint.h>
|
|
#endif
|
|
+#endif
|
|
|
|
#ifndef __ASSEMBLY__
|
|
|