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 /tools/qconfig.py | |
| 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 'tools/qconfig.py')
| -rwxr-xr-x | tools/qconfig.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/qconfig.py b/tools/qconfig.py index e025f560928..7b4934b726d 100755 --- a/tools/qconfig.py +++ b/tools/qconfig.py @@ -1222,8 +1222,8 @@ def scan_makefiles(fnames): (None, 'FRED') >>> RE_MK_CONFIGS.search('CONFIG_$(XPL_)MARY').groups() ('$(XPL_)', 'MARY') - >>> RE_MK_CONFIGS.search('CONFIG_$(SPL_TPL_)MARY').groups() - ('$(SPL_TPL_)', 'MARY') + >>> RE_MK_CONFIGS.search('CONFIG_$(PHASE_)MARY').groups() + ('$(PHASE_)', 'MARY') """ all_uses = collections.defaultdict(list) fname_uses = {} @@ -1322,7 +1322,7 @@ def do_scan_source(path, do_update): an SPL_ option, but for which there is none; for MOD_PROPER, look at source code which implies a Proper option (i.e. use of CONFIG_IS_ENABLED() or $(XPL_) or - $(SPL_TPL_) but for which there none; + $(PHASE_) but for which there none; if MODE_NORMAL, ignore SPL Returns: |
