mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-10 15:14:43 +00:00
global: Migrate CONFIG_STACKBASE to CFG
Perform a simple rename of CONFIG_STACKBASE to CFG_STACKBASE Signed-off-by: Tom Rini <trini@konsulko.com>
This commit is contained in:
parent
3e204427c8
commit
6786ce1ce1
5 changed files with 5 additions and 5 deletions
|
@ -45,7 +45,7 @@
|
|||
#define CFG_SYS_BOOTMAPSZ (256 << 20) /* 256M */
|
||||
|
||||
#ifndef CONFIG_ARM64
|
||||
#define CFG_SYS_INIT_RAM_ADDR CONFIG_STACKBASE
|
||||
#define CFG_SYS_INIT_RAM_ADDR CFG_STACKBASE
|
||||
#define CFG_SYS_INIT_RAM_SIZE CONFIG_SYS_MALLOC_LEN
|
||||
|
||||
/* Defines for SPL */
|
||||
|
|
|
@ -15,7 +15,7 @@
|
|||
/*
|
||||
* Miscellaneous configurable options
|
||||
*/
|
||||
#define CONFIG_STACKBASE 0x83800000 /* 56MB */
|
||||
#define CFG_STACKBASE 0x83800000 /* 56MB */
|
||||
|
||||
/*-----------------------------------------------------------------------
|
||||
* Physical Memory Map
|
||||
|
|
|
@ -17,7 +17,7 @@
|
|||
/*
|
||||
* Miscellaneous configurable options
|
||||
*/
|
||||
#define CONFIG_STACKBASE 0x83800000 /* 56MB */
|
||||
#define CFG_STACKBASE 0x83800000 /* 56MB */
|
||||
|
||||
/*-----------------------------------------------------------------------
|
||||
* Physical Memory Map
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
/*
|
||||
* Miscellaneous configurable options
|
||||
*/
|
||||
#define CONFIG_STACKBASE 0x03800000 /* 56MB */
|
||||
#define CFG_STACKBASE 0x03800000 /* 56MB */
|
||||
|
||||
/*-----------------------------------------------------------------------
|
||||
* Physical Memory Map
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
/*
|
||||
* Miscellaneous configurable options
|
||||
*/
|
||||
#define CONFIG_STACKBASE 0x83800000 /* 56MB */
|
||||
#define CFG_STACKBASE 0x83800000 /* 56MB */
|
||||
|
||||
/*
|
||||
* Memory layout for where various images get loaded by boot scripts:
|
||||
|
|
Loading…
Reference in a new issue