summaryrefslogtreecommitdiffstats
path: root/common/Kconfig
diff options
context:
space:
mode:
authorSascha Hauer <sha@octopus.labnet.pengutronix.de>2007-09-28 20:32:15 +0200
committerSascha Hauer <sha@octopus.labnet.pengutronix.de>2007-09-28 20:32:15 +0200
commitc396c4da497bc4cfdee1e98c0a7c6b98dff92ada (patch)
tree75ecb38ea9c8f552eb214a5cffa1f1f4e277ce62 /common/Kconfig
parent7a49f672c5b901b1082c693c22f87b0ea494b05e (diff)
downloadbarebox-c396c4da497bc4cfdee1e98c0a7c6b98dff92ada.tar.gz
barebox-c396c4da497bc4cfdee1e98c0a7c6b98dff92ada.tar.xz
Add module handling (mostly copied from Linux kernel and stripped down
for U-Boot)
Diffstat (limited to 'common/Kconfig')
-rw-r--r--common/Kconfig29
1 files changed, 25 insertions, 4 deletions
diff --git a/common/Kconfig b/common/Kconfig
index f346d15ac5..547957d2e0 100644
--- a/common/Kconfig
+++ b/common/Kconfig
@@ -2,6 +2,12 @@
config GREGORIAN_CALENDER
bool
+config HAS_KALLSYMS
+ bool
+
+config HAS_MODULE
+ bool
+
menu "General Settings "
config BOARDINFO
@@ -14,6 +20,25 @@ config TEXT_BASE
help
The Address U-Boot gets linked at.
+config BROKEN
+ bool
+ prompt "Prompt for broken or incomplete code"
+
+config EXPERIMENTAL
+ bool
+ prompt "Prompt for experimental code"
+
+config MODULE
+ depends on HAS_MODULE
+ depends on EXPERIMENTAL
+ select KALLSYMS
+ bool "module support"
+
+config KALLSYMS
+ depends on HAS_KALLSYMS
+ depends on EXPERIMENTAL
+ bool "kallsyms"
+
config RELOCATABLE
depends on PPC
bool "generate relocatable U-Boot binary"
@@ -25,10 +50,6 @@ config RELOCATABLE
allowing it to relocate to the end of the available RAM. This
way you have the whole memory in a single piece.
-config BROKEN
- bool
- prompt "Prompt for broken or incomplete code"
-
config PROMPT
string
prompt "U-Boot command prompt"