diff options
author | Simon Glass | 2022-10-20 18:22:39 -0600 |
---|---|---|
committer | Tom Rini | 2022-10-31 11:01:31 -0400 |
commit | 984639039f4cfe32ec2cc531d6ace05326ac49eb (patch) | |
tree | 472bf7e47978335a73c5d6025d3b83b534f7192b /tools | |
parent | 6f38d91158e7e4199753b79e0a25c1a65175aba4 (diff) |
Rename CONFIG_SYS_TEXT_BASE to CONFIG_TEXT_BASE
The current name is inconsistent with SPL which uses CONFIG_SPL_TEXT_BASE
and this makes it imposible to use CONFIG_VAL().
Rename it to resolve this problem.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'tools')
-rw-r--r-- | tools/binman/binman.rst | 4 | ||||
-rw-r--r-- | tools/binman/entries.rst | 2 | ||||
-rw-r--r-- | tools/binman/etype/fit.py | 2 | ||||
-rw-r--r-- | tools/binman/etype/u_boot_with_ucode_ptr.py | 2 |
4 files changed, 5 insertions, 5 deletions
diff --git a/tools/binman/binman.rst b/tools/binman/binman.rst index d8a3d776f46..fda16f1992d 100644 --- a/tools/binman/binman.rst +++ b/tools/binman/binman.rst @@ -766,11 +766,11 @@ end-at-4gb: skip-at-start: This property specifies the entry offset of the first entry. - For PowerPC mpc85xx based CPU, CONFIG_SYS_TEXT_BASE is the entry + For PowerPC mpc85xx based CPU, CONFIG_TEXT_BASE is the entry offset of the first entry. It can be 0xeff40000 or 0xfff40000 for nor flash boot, 0x201000 for sd boot etc. - 'end-at-4gb' property is not applicable where CONFIG_SYS_TEXT_BASE + + 'end-at-4gb' property is not applicable where CONFIG_TEXT_BASE + Image size != 4gb. align-default: diff --git a/tools/binman/entries.rst b/tools/binman/entries.rst index 18bd328c5cd..3dc32db8a54 100644 --- a/tools/binman/entries.rst +++ b/tools/binman/entries.rst @@ -735,7 +735,7 @@ Here is an example showing ATF, TEE and a device tree all combined:: os = "U-Boot"; arch = "arm64"; compression = "none"; - load = <CONFIG_SYS_TEXT_BASE>; + load = <CONFIG_TEXT_BASE>; u-boot-nodtb { }; }; diff --git a/tools/binman/etype/fit.py b/tools/binman/etype/fit.py index ad43fce18ec..7860e2aeea3 100644 --- a/tools/binman/etype/fit.py +++ b/tools/binman/etype/fit.py @@ -201,7 +201,7 @@ class Entry_fit(Entry_section): os = "U-Boot"; arch = "arm64"; compression = "none"; - load = <CONFIG_SYS_TEXT_BASE>; + load = <CONFIG_TEXT_BASE>; u-boot-nodtb { }; }; diff --git a/tools/binman/etype/u_boot_with_ucode_ptr.py b/tools/binman/etype/u_boot_with_ucode_ptr.py index a5fd2d1ca5e..e275698cebe 100644 --- a/tools/binman/etype/u_boot_with_ucode_ptr.py +++ b/tools/binman/etype/u_boot_with_ucode_ptr.py @@ -62,7 +62,7 @@ class Entry_u_boot_with_ucode_ptr(Entry_blob): # # The section must be set up so that U-Boot is placed at the # flash address to which it is linked. For example, if - # CONFIG_SYS_TEXT_BASE is 0xfff00000, and the ROM is 8MB, then + # CONFIG_TEXT_BASE is 0xfff00000, and the ROM is 8MB, then # the U-Boot region must start at offset 7MB in the section. In this # case the ROM starts at 0xff800000, so the offset of the first # entry in the section corresponds to that. |