diff options
author | Simon Glass <sjg@chromium.org> | 2024-09-29 19:49:54 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2024-10-11 11:44:48 -0600 |
commit | 5c10c8badf8233cac1593cd2bef4d0379ac9e5bd (patch) | |
tree | 11afc689551dc2779e131a1c7dc262ffa1f60c04 /scripts/Kbuild.include | |
parent | c46760d5967d12b6f7d37402878d1607a98b2b84 (diff) |
global: Rename SPL_TPL_ to PHASE_
Use PHASE_ as the symbol to select a particular XPL build. This means
that SPL_TPL_ is no-longer set.
Update the comment in bootstage to refer to this symbol, instead of
SPL_
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'scripts/Kbuild.include')
-rw-r--r-- | scripts/Kbuild.include | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/scripts/Kbuild.include b/scripts/Kbuild.include index 1a6b28feedf..edc91b24e45 100644 --- a/scripts/Kbuild.include +++ b/scripts/Kbuild.include @@ -327,15 +327,15 @@ endif ifdef CONFIG_XPL_BUILD XPL_ := SPL_ ifeq ($(CONFIG_VPL_BUILD),y) -SPL_TPL_ := VPL_ +PHASE_ := VPL_ else ifeq ($(CONFIG_TPL_BUILD),y) -SPL_TPL_ := TPL_ +PHASE_ := TPL_ else -SPL_TPL_ := SPL_ +PHASE_ := SPL_ endif endif else XPL_ := -SPL_TPL_ := +PHASE_ := endif |