summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--common/Kconfig42
-rw-r--r--pbl/Kconfig41
2 files changed, 42 insertions, 41 deletions
diff --git a/common/Kconfig b/common/Kconfig
index b60b78bb89..c648f3b87d 100644
--- a/common/Kconfig
+++ b/common/Kconfig
@@ -108,47 +108,7 @@ config ENVIRONMENT_VARIABLES
menu "memory layout"
-config HAVE_PBL_IMAGE
- bool
-
-config HAVE_IMAGE_COMPRESSION
- bool
-
-config PBL_IMAGE
- bool "Pre-Bootloader image"
- depends on HAVE_PBL_IMAGE
-
-config PBL_FORCE_PIGGYDATA_COPY
- bool
- help
- In some case we need to copy the PIGGYDATA as the link address
- as example we run from SRAM and shutdown the SDRAM/DDR for
- reconfiguration but most of the time we just need to copy the
- executable code.
-
-if PBL_IMAGE
-
-config IMAGE_COMPRESSION
- bool
- depends on HAVE_IMAGE_COMPRESSION
- default y
-
-if IMAGE_COMPRESSION
-
-choice
- prompt "Compression"
-
-config IMAGE_COMPRESSION_LZO
- bool "lzo"
-
-config IMAGE_COMPRESSION_GZIP
- bool "gzip"
-
-endchoice
-
-endif
-
-endif
+source "pbl/Kconfig"
config MMU
bool "Enable MMU"
diff --git a/pbl/Kconfig b/pbl/Kconfig
new file mode 100644
index 0000000000..fbf0b1b4d0
--- /dev/null
+++ b/pbl/Kconfig
@@ -0,0 +1,41 @@
+config HAVE_PBL_IMAGE
+ bool
+
+config HAVE_IMAGE_COMPRESSION
+ bool
+
+config PBL_IMAGE
+ bool "Pre-Bootloader image"
+ depends on HAVE_PBL_IMAGE
+
+config PBL_FORCE_PIGGYDATA_COPY
+ bool
+ help
+ In some case we need to copy the PIGGYDATA as the link address
+ as example we run from SRAM and shutdown the SDRAM/DDR for
+ reconfiguration but most of the time we just need to copy the
+ executable code.
+
+if PBL_IMAGE
+
+config IMAGE_COMPRESSION
+ bool
+ depends on HAVE_IMAGE_COMPRESSION
+ default y
+
+if IMAGE_COMPRESSION
+
+choice
+ prompt "Compression"
+
+config IMAGE_COMPRESSION_LZO
+ bool "lzo"
+
+config IMAGE_COMPRESSION_GZIP
+ bool "gzip"
+
+endchoice
+
+endif
+
+endif