diff options
Diffstat (limited to 'extra/Configs')
-rw-r--r-- | extra/Configs/Config.e1 | 49 | ||||
-rw-r--r-- | extra/Configs/Config.e1.default | 64 |
2 files changed, 113 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" + + diff --git a/extra/Configs/Config.e1.default b/extra/Configs/Config.e1.default new file mode 100644 index 000000000..44621262e --- /dev/null +++ b/extra/Configs/Config.e1.default @@ -0,0 +1,64 @@ +# +# Automatically generated make config: don't edit +# + +# +# Target Architecture Features and Options +# +# HAVE_ELF is not set +ARCH_CFLAGS="-I$(KERNEL_SOURCE)/include -mgnu-param" +ARCH_HAS_NO_MMU=y +ARCH_HAS_C_SYMBOL_PREFIX=y +UCLIBC_HAS_FLOATS=y +# HAS_FPU is not set +UCLIBC_HAS_SOFT_FLOAT=y +# DO_C99_MATH is not set +WARNINGS="-Wall" +KERNEL_SOURCE="/usr/src/linux" +UCLIBC_UCLINUX_BROKEN_MUNMAP=y +EXCLUDE_BRK=y +C_SYMBOL_PREFIX="_" +HAVE_DOT_CONFIG=y + +# +# General Library Settings +# +# DOPIC is not set +# UCLIBC_CTOR_DTOR is not set +# UCLIBC_PROFILING is not set +# UCLIBC_HAS_THREADS is not set +# UCLIBC_HAS_LFS is not set +MALLOC=y +# MALLOC_930716 is not set +UCLIBC_DYNAMIC_ATEXIT=y +HAS_SHADOW=y +UCLIBC_HAS_REGEX=y +UNIX98PTY_ONLY=y +# ASSUME_DEVPTS is not set + +# +# Networking Support +# +# UCLIBC_HAS_IPV6 is not set +# UCLIBC_HAS_RPC is not set + +# +# String and Stdio Support +# +UCLIBC_HAS_WCHAR=y +# UCLIBC_HAS_LOCALE is not set +# USE_OLD_VFPRINTF is not set + +# +# Library Installation Options +# +DEVEL_PREFIX="/usr/$(TARGET_ARCH)-linux-uclibc" +SYSTEM_DEVEL_PREFIX="$(DEVEL_PREFIX)" +DEVEL_TOOL_PREFIX="$(DEVEL_PREFIX)/usr" + +# +# uClibc hacking options +# +DODEBUG=y +# DOASSERTS is not set +# UCLIBC_MALLOC_DEBUGGING is not set |