summaryrefslogtreecommitdiff
path: root/include/env_default.h
diff options
context:
space:
mode:
authorTom Rini <[email protected]>2021-08-31 17:52:28 -0400
committerTom Rini <[email protected]>2021-08-31 17:55:32 -0400
commitdf6cf3d809fe543651e6bdf133baaa8b9841fe0f (patch)
treea884597e97578cb074adc33d3dd961d6675c9879 /include/env_default.h
parenta85a8e63c5cf8ccb3905eb5982bf8bdcb2978557 (diff)
parentb4c2c151b14b59a2403675526adf666710cade67 (diff)
Merge branch '2021-08-31-kconfig-migrations-part2' into next
- Further CONFIG to Kconfig migrations - Some DDR related symbols - CONFIG_SYS_LOAD_ADDR moved, loadaddr always set in environment now. - Finish MX7D, convert IMX_CONFIG - Some RAMBOOT related options - L1 cache size converted and named consistently for all arches. A further follow-up to rename things for even better clarity is welcome. - CONFIG_SKIP_LOWLEVEL_INIT, CONFIG_SYS_MALLOC_LEN
Diffstat (limited to 'include/env_default.h')
-rw-r--r--include/env_default.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/env_default.h b/include/env_default.h
index 1ddd64ba8ff..66e203eb6e4 100644
--- a/include/env_default.h
+++ b/include/env_default.h
@@ -82,8 +82,8 @@ const uchar default_environment[] = {
#ifdef CONFIG_BOOTFILE
"bootfile=" CONFIG_BOOTFILE "\0"
#endif
-#ifdef CONFIG_LOADADDR
- "loadaddr=" __stringify(CONFIG_LOADADDR) "\0"
+#ifdef CONFIG_SYS_LOAD_ADDR
+ "loadaddr=" __stringify(CONFIG_SYS_LOAD_ADDR)"\0"
#endif
#if defined(CONFIG_PCI_BOOTDELAY) && (CONFIG_PCI_BOOTDELAY > 0)
"pcidelay=" __stringify(CONFIG_PCI_BOOTDELAY)"\0"