summaryrefslogtreecommitdiff
path: root/board
diff options
context:
space:
mode:
authorPali Rohár <pali@kernel.org>2022-08-11 22:27:25 +0200
committerTom Rini <trini@konsulko.com>2022-08-20 16:18:40 -0400
commit9ca6c91732533c4d8e809dac9f602c28ae4923cc (patch)
tree875fcda7189d874ce598b82f9d01eb925de4e4fd /board
parent0ba6ce4b7889dc74a646cf54ea97a9d48428bcfe (diff)
Nokia RX-51: Move board required options from defconfig to Kconfig
Some of config options are board specific and should be set in into their default values automatically. So move them from defconfig file to Kconfig definitions to ensure that possible user custom defconfig files would have these required options also enabled. Signed-off-by: Pali Rohár <pali@kernel.org>
Diffstat (limited to 'board')
-rw-r--r--board/nokia/rx51/Kconfig6
1 files changed, 6 insertions, 0 deletions
diff --git a/board/nokia/rx51/Kconfig b/board/nokia/rx51/Kconfig
index ec6a571a22..7cf05077da 100644
--- a/board/nokia/rx51/Kconfig
+++ b/board/nokia/rx51/Kconfig
@@ -1,5 +1,8 @@
if TARGET_NOKIA_RX51
+config NR_DRAM_BANKS
+ default 2
+
config SYS_BOARD
default "rx51"
@@ -9,4 +12,7 @@ config SYS_VENDOR
config SYS_CONFIG_NAME
default "nokia_rx51"
+config SYS_PROMPT
+ default "Nokia RX-51 # "
+
endif