From b8d189b2967843015376d5696b244958cba44202 Mon Sep 17 00:00:00 2001 From: "Yann E. MORIN\"" Date: Sun, 5 Oct 2008 15:32:00 +0000 Subject: Separate the architecture config file and function script. /trunk/kconfig/kconfig.mk | 46 23 23 0 +++++++++++++++++++++++----------------------- /trunk/scripts/crosstool.sh | 2 1 1 0 +- /trunk/docs/overview.txt | 28 11 17 0 +++++++++++----------------- 3 files changed, 35 insertions(+), 41 deletions(-) --- config/arch/alpha/config.in | 62 --------------------------------------------- config/arch/alpha/functions | 9 ------- 2 files changed, 71 deletions(-) delete mode 100644 config/arch/alpha/config.in delete mode 100644 config/arch/alpha/functions (limited to 'config/arch/alpha') diff --git a/config/arch/alpha/config.in b/config/arch/alpha/config.in deleted file mode 100644 index cf8157a2..00000000 --- a/config/arch/alpha/config.in +++ /dev/null @@ -1,62 +0,0 @@ -# Alpha specific configuration file - -config ARCH_alpha - select ARCH_SUPPORT_CPU - select ARCH_SUPPORT_TUNE - help - The Alpha architecture. - -choice - bool - prompt "Variant" - -config ARCH_ALPHA_EV4 - bool - prompt "EV4" - -config ARCH_ALPHA_EV45 - bool - prompt "EV45" - -config ARCH_ALPHA_EV5 - bool - prompt "EV5" - -config ARCH_ALPHA_EV56 - bool - prompt "EV56" - -config ARCH_ALPHA_EV6 - bool - prompt "EV6" - -config ARCH_ALPHA_EV67 - bool - prompt "EV67" - -endchoice - -config ARCH_ALPHA_VARIANT - string - default "ev4" if ARCH_ALPHA_EV4 - default "ev45" if ARCH_ALPHA_EV45 - default "ev5" if ARCH_ALPHA_EV5 - default "ev56" if ARCH_ALPHA_EV56 - default "ev6" if ARCH_ALPHA_EV6 - default "ev67" if ARCH_ALPHA_EV67 - -config ARCH_CPU - default "ev4" if ARCH_ALPHA_EV4 - default "ev45" if ARCH_ALPHA_EV45 - default "ev5" if ARCH_ALPHA_EV5 - default "ev56" if ARCH_ALPHA_EV56 - default "ev6" if ARCH_ALPHA_EV6 - default "ev67" if ARCH_ALPHA_EV67 - -config ARCH_TUNE - default "ev4" if ARCH_ALPHA_EV4 - default "ev45" if ARCH_ALPHA_EV45 - default "ev5" if ARCH_ALPHA_EV5 - default "ev56" if ARCH_ALPHA_EV56 - default "ev6" if ARCH_ALPHA_EV6 - default "ev67" if ARCH_ALPHA_EV67 diff --git a/config/arch/alpha/functions b/config/arch/alpha/functions deleted file mode 100644 index ea8ef536..00000000 --- a/config/arch/alpha/functions +++ /dev/null @@ -1,9 +0,0 @@ -# Compute Alpha-specific values - -CT_DoArchValues () { - # The architecture part of the tuple: - CT_TARGET_ARCH="${CT_ARCH}${CT_ARCH_ALPHA_VARIANT}" - - # The kernel ARCH: - CT_KERNEL_ARCH=${CT_ARCH} -} -- cgit v1.2.3