From 05d9958f685e3f0c51be4f1128348645451e51fb Mon Sep 17 00:00:00 2001 From: Eric Andersen Date: Tue, 21 Dec 2004 08:35:58 +0000 Subject: Add support for the Analog Devices Blackfin mmuless processor --- extra/Configs/Config.bfin | 28 ++++++++++++++++++++++++++++ extra/Configs/Config.in | 7 +++++++ 2 files changed, 35 insertions(+) create mode 100644 extra/Configs/Config.bfin (limited to 'extra') 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 -- cgit v1.2.3