diff options
author | Eric Andersen <andersen@codepoet.org> | 2003-10-08 18:15:50 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2003-10-08 18:15:50 +0000 |
commit | c7757f181f0bd52206059f2685a5197113aca76f (patch) | |
tree | dcf97b5cda180791099fb63e028eccddf1f6c31b /extra/Configs/Config.e1 | |
parent | 9456866061819ea226ebe2b39ef20622fd36c2f1 (diff) |
Patch from George Thanos adding support for the "e1" architecture.
Diffstat (limited to 'extra/Configs/Config.e1')
-rw-r--r-- | extra/Configs/Config.e1 | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/extra/Configs/Config.e1 b/extra/Configs/Config.e1 new file mode 100644 index 000000000..ddb0b50b7 --- /dev/null +++ b/extra/Configs/Config.e1 @@ -0,0 +1,49 @@ + + +# For a description of the syntax of this configuration file, +# see extra/config/Kconfig-language.txt +# + +mainmenu "uClibc C Library Configuration" + +menu "Target Architecture Features and Options" + +config ARCH_E1 + bool + default y + +config HAVE_ELF + bool + default n + +config ARCH_CFLAGS + string + default "-I$(KERNEL_SOURCE)/include -mgnu-param" + +# --bitwise-or + +config ARCH_LDFLAGS + string + +config LIBGCC_CFLAGS + string + +config HAVE_ELF + bool + default n + +config ARCH_HAS_NO_MMU + bool + default y + +config ARCH_HAS_C_SYMBOL_PREFIX + bool + default y + +source "extra/Configs/Config.in.arch" + +endmenu + +source "extra/Configs/Config.in" + + |