diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2009-08-25 14:52:08 +0200 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2009-08-25 14:52:08 +0200 |
commit | 6625518cd6894338937a74ca6b9187b7b8167b03 (patch) | |
tree | 664091503cb8298c20636b33f29ca8b97032c46f /extra/Configs/Config.sh | |
parent | e3b6a036cebebeaeb85976ceff29c7833679d83d (diff) |
default ?conf to native arch
Default is now the native arch, you can start a fresh .config via
'make ARCH=ia64 menuconfig'.
Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Diffstat (limited to 'extra/Configs/Config.sh')
-rw-r--r-- | extra/Configs/Config.sh | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/extra/Configs/Config.sh b/extra/Configs/Config.sh index 8538bcc65..a1e8f9666 100644 --- a/extra/Configs/Config.sh +++ b/extra/Configs/Config.sh @@ -7,6 +7,10 @@ config TARGET_ARCH string default "sh" +source "extra/Configs/Config.in.arches" +menu "Target Architecture Features and Options" +source "extra/Configs/Config.in.arch" + config FORCE_OPTIONS_FOR_ARCH bool default y @@ -50,6 +54,9 @@ config CONFIG_SH4 endchoice config ARCH_HAS_BWD_MEMCPY - bool - default y - depends on CONFIG_SH4 + bool + default y + depends on CONFIG_SH4 + +endmenu +source "extra/Configs/Config.in.common" |