summaryrefslogtreecommitdiff
path: root/extra
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2004-12-21 08:35:58 +0000
committerEric Andersen <andersen@codepoet.org>2004-12-21 08:35:58 +0000
commit05d9958f685e3f0c51be4f1128348645451e51fb (patch)
treeb28c486ae60ad9065ba6d061b494c253fdc73ef5 /extra
parentf6cc7543c5530106123f1fa7958d1c594ddff3d8 (diff)
Add support for the Analog Devices Blackfin mmuless processor
Diffstat (limited to 'extra')
-rw-r--r--extra/Configs/Config.bfin28
-rw-r--r--extra/Configs/Config.in7
2 files changed, 35 insertions, 0 deletions
diff --git a/extra/Configs/Config.bfin b/extra/Configs/Config.bfin
new file mode 100644
index 000000000..c4258e36b
--- /dev/null
+++ b/extra/Configs/Config.bfin
@@ -0,0 +1,28 @@
+#
+# For a description of the syntax of this configuration file,
+# see extra/config/Kconfig-language.txt
+#
+
+config TARGET_ARCH
+ default "bfin"
+
+config HAVE_ELF
+ bool
+ select ARCH_HAS_NO_MMU
+ select ARCH_LITTLE_ENDIAN
+ select HAVE_NO_SHARED
+ select ARCH_HAS_NO_LDSO
+ default y
+
+config ARCH_CFLAGS
+ string
+
+config ARCH_LDFLAGS
+ string
+
+config LIBGCC_CFLAGS
+ string
+
+config HAVE_ELF
+ bool
+ default y
diff --git a/extra/Configs/Config.in b/extra/Configs/Config.in
index 6969bdb5e..c65a767e7 100644
--- a/extra/Configs/Config.in
+++ b/extra/Configs/Config.in
@@ -17,6 +17,9 @@ config TARGET_alpha
config TARGET_arm
bool "arm"
+config TARGET_bfin
+ bool "bfin"
+
config TARGET_cris
bool "cris"
@@ -75,6 +78,10 @@ if TARGET_arm
source "extra/Configs/Config.arm"
endif
+if TARGET_bfin
+source "extra/Configs/Config.bfin"
+endif
+
if TARGET_cris
source "extra/Configs/Config.cris"
endif