summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSascha Hauer <s.hauer@pengutronix.de>2007-07-05 18:01:56 +0200
committerSascha Hauer <sha@octopus.labnet.pengutronix.de>2007-07-05 18:01:56 +0200
commitfe72c6b8fe520a626d91dc690760ab1e30626cca (patch)
tree0b3200c99d580cd7eda8a46d207dc8c4f77489e1
parenta4b07792b94e2e13a9b0c8e0847e24d4bfc318d4 (diff)
downloadbarebox-fe72c6b8fe520a626d91dc690760ab1e30626cca.tar.gz
barebox-fe72c6b8fe520a626d91dc690760ab1e30626cca.tar.xz
svn_rev_466
add CMDLINE_TAG SETUP_MEMORY_TAGS and INITRD_TAG to Kconfig
-rw-r--r--arch/arm/Kconfig23
-rw-r--r--include/configs/scb9328.h5
2 files changed, 23 insertions, 5 deletions
diff --git a/arch/arm/Kconfig b/arch/arm/Kconfig
index 2da34a368a..bc0186da4f 100644
--- a/arch/arm/Kconfig
+++ b/arch/arm/Kconfig
@@ -53,6 +53,29 @@ endchoice
config ARM920T
bool
+menu "Arm specific settings"
+
+config CMDLINE_TAG
+ bool "Send commandline to kernel"
+ default y
+ help
+ If you want to start a 2.6 kernel say y here.
+
+config SETUP_MEMORY_TAGS
+ bool "send memory definition to kernel"
+ default y
+ help
+ If you want to start a 2.6 kernel say y here.
+
+config INITRD_TAG
+ bool "send initrd params to kernel"
+ default y
+ help
+ If you want to start a 2.6 kernel and use an
+ initrd image say y here.
+
+endmenu
+
source common/Kconfig
source net/Kconfig
source drivers/Kconfig
diff --git a/include/configs/scb9328.h b/include/configs/scb9328.h
index 5aafc0f172..ce8206d578 100644
--- a/include/configs/scb9328.h
+++ b/include/configs/scb9328.h
@@ -34,16 +34,11 @@
*/
#define CFG_PBSIZE (CONFIG_CBSIZE+sizeof(CONFIG_PROMPT)+16) /* print buffer size */
-#define CONFIG_BOOTDELAY 3
-
#define CFG_CPUSPEED 0x141 /* core clock - register value */
/*
* Definitions related to passing arguments to kernel.
*/
-#define CONFIG_CMDLINE_TAG 1 /* send commandline to Kernel */
-#define CONFIG_SETUP_MEMORY_TAGS 1 /* send memory definition to kernel */
-#define CONFIG_INITRD_TAG 1 /* send initrd params */
#define CFG_MALLOC_LEN (4096 << 10)