summaryrefslogtreecommitdiff
path: root/config/kernel.in
diff options
context:
space:
mode:
authorYann E. MORIN" <yann.morin.1998@anciens.enib.fr>2008-09-16 17:39:40 (GMT)
committerYann E. MORIN" <yann.morin.1998@anciens.enib.fr>2008-09-16 17:39:40 (GMT)
commitc36b92179069933060d51f408e079c49eb47f281 (patch)
tree12ffa93377cbef08b2b8f337cbc90bfc4d705591 /config/kernel.in
parent59b1a0929db05817384d6c04d60b8a707975da42 (diff)
Generate the kernel config choice, rather than having it hard-coded:
- change the menu label from 'Target OS' to 'Operating System', - bare-metal is a kind of kernel (OS), rename to 'bare-metal' from 'none', - update the kconfig.mk to generate the kernel choice entries, - update glibc&eglibc kernel version option accordingly. Update the debug & tools confiog file generation to match with arch & kernel. Print terse command lines when building in kconfig/ (a-la Linux kernel). Fix the makefile rules in kconfig/kconfig.mk to be /simple/ rules. /trunk/kconfig/kconfig.mk | 117 81 36 0 +++++++++++++++++++++---------- /trunk/config/kernel/linux.in | 4 4 0 0 + /trunk/config/kernel/bare-metal.experimental.in | 15 15 0 0 ++++ /trunk/config/kernel.in | 33 5 28 0 +-------- /trunk/config/libc/glibc-eglibc-common.in | 4 2 2 0 5 files changed, 107 insertions(+), 66 deletions(-)
Diffstat (limited to 'config/kernel.in')
-rw-r--r--config/kernel.in33
1 files changed, 5 insertions, 28 deletions
diff --git a/config/kernel.in b/config/kernel.in
index db7b802..1ae8b2e 100644
--- a/config/kernel.in
+++ b/config/kernel.in
@@ -1,42 +1,19 @@
# Kernel options
+menu "Operating System"
+
config KERNEL
string
- default "none" if BARE_METAL
- default "linux" if KERNEL_LINUX
-menu "Target OS"
+config KERNEL_VERSION
+ string
choice
bool
prompt "Target OS"
- default KERNEL_LINUX
-
-config KERNEL_LINUX
- bool
- prompt "Linux"
- help
- Build a toolchain targeting systems running Linux as a kernel.
-config BARE_METAL
- bool
- prompt "Bare metal (EXPERIMENTAL)"
- depends on EXPERIMENTAL
- help
- Say 'y' here if you want a simple C compiler with no C library.
-
- 'Bare metal' also refer to those programs that run without any kernel.
-
- You probably want to say 'y' here if you plan to use your compiler
- to build only kernels or bootloaders
+source config.gen/kernel.in
endchoice
-config KERNEL_VERSION
- string
-
-if KERNEL_LINUX
-source config/kernel/linux.in
-endif
-
endmenu