From c46760d5967d12b6f7d37402878d1607a98b2b84 Mon Sep 17 00:00:00 2001 From: Simon Glass Date: Sun, 29 Sep 2024 19:49:53 -0600 Subject: global: Rename SPL_ to XPL_ Use XPL_ as the symbol to indicate an SPL build. This means that SPL_ is no-longer set. Signed-off-by: Simon Glass --- scripts/Kbuild.include | 4 ++-- scripts/Makefile.xpl | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) (limited to 'scripts') diff --git a/scripts/Kbuild.include b/scripts/Kbuild.include index b70b75ee68d..1a6b28feedf 100644 --- a/scripts/Kbuild.include +++ b/scripts/Kbuild.include @@ -325,7 +325,7 @@ endif .SECONDARY: ifdef CONFIG_XPL_BUILD -SPL_ := SPL_ +XPL_ := SPL_ ifeq ($(CONFIG_VPL_BUILD),y) SPL_TPL_ := VPL_ else @@ -336,6 +336,6 @@ SPL_TPL_ := SPL_ endif endif else -SPL_ := +XPL_ := SPL_TPL_ := endif diff --git a/scripts/Makefile.xpl b/scripts/Makefile.xpl index b43ff998679..11ae93f8556 100644 --- a/scripts/Makefile.xpl +++ b/scripts/Makefile.xpl @@ -59,7 +59,7 @@ endif export SPL_NAME ifdef CONFIG_XPL_BUILD -SPL_ := SPL_ +XPL_ := SPL_ ifeq ($(CONFIG_VPL_BUILD),y) SPL_TPL_ := VPL_ else @@ -70,7 +70,7 @@ SPL_TPL_ := SPL_ endif endif else -SPL_ := +XPL_ := SPL_TPL_ := endif -- cgit v1.3.1