summaryrefslogtreecommitdiff
path: root/extra
diff options
context:
space:
mode:
authorJoakim Tjernlund <joakim.tjernlund@transmode.se>2007-02-04 21:25:42 +0000
committerJoakim Tjernlund <joakim.tjernlund@transmode.se>2007-02-04 21:25:42 +0000
commit8ceaf7c737b375d4d90afd8051d0b23aede22d96 (patch)
treeff4d050978a14ea794d7775462530495b67ada2b /extra
parent6c3524e1f00e4770d8683ca9282ca2d809e0ebc5 (diff)
Add support for PowerPC e500, libc part only.
Math support to be done. From Steve Papacharalambous, stevep@freescale.com
Diffstat (limited to 'extra')
-rw-r--r--extra/Configs/Config.in6
-rw-r--r--extra/Configs/Config.powerpc24
2 files changed, 30 insertions, 0 deletions
diff --git a/extra/Configs/Config.in b/extra/Configs/Config.in
index b0d1504e9..2b1644e14 100644
--- a/extra/Configs/Config.in
+++ b/extra/Configs/Config.in
@@ -1411,6 +1411,12 @@ config CROSS_COMPILER_PREFIX
example, if you run 'arm-linux-uclibc-gcc' to compile something,
then enter 'arm-linux-uclibc-' here.
+config UCLIBC_EXTRA_CFLAGS
+ string "Enter any extra CFLAGS to use to build uClibc"
+ default ""
+ help
+ Add any additional CFLAGS to be used to build uClibc.
+
config DODEBUG
bool "Build uClibc with debugging symbols"
default n
diff --git a/extra/Configs/Config.powerpc b/extra/Configs/Config.powerpc
index fab79b135..383b41a6d 100644
--- a/extra/Configs/Config.powerpc
+++ b/extra/Configs/Config.powerpc
@@ -17,3 +17,27 @@ config ARCH_CFLAGS
config LIBGCC_CFLAGS
string
+
+choice
+ prompt "Target Processor Type"
+ default CONFIG_CLASSIC
+ help
+ This is the processor core of your CPU. This information is used for
+ determining the correct assembler instructions to use for the core.
+ The default is to build for a classic powerpc.
+
+config CONFIG_CLASSIC
+ bool "CLASSIC"
+ help
+ Classic powerpc architecture.
+
+config CONFIG_E500
+ bool "E500"
+ help
+ e500 v1 and v2 core.
+
+endchoice
+
+
+
+