diff options
| author | Simon Glass <[email protected]> | 2024-09-29 19:49:47 -0600 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2024-10-11 11:44:48 -0600 |
| commit | dac3ce976a9b06be5aadbd857c4b64a8c521c6d4 (patch) | |
| tree | c6990967a19a9ae6112711010086b246be590880 /board/sifive | |
| parent | bef9fdbed2e525ce9264d2ae2fbcb37db7472052 (diff) | |
board: Use CONFIG_XPL_BUILD instead of CONFIG_SPL_BUILD
Use the new symbol to refer to any 'SPL' build, including TPL and VPL
Signed-off-by: Simon Glass <[email protected]>
Diffstat (limited to 'board/sifive')
| -rw-r--r-- | board/sifive/unleashed/Makefile | 2 | ||||
| -rw-r--r-- | board/sifive/unmatched/Makefile | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/board/sifive/unleashed/Makefile b/board/sifive/unleashed/Makefile index 98e9111cbcc..d0a156d2cab 100644 --- a/board/sifive/unleashed/Makefile +++ b/board/sifive/unleashed/Makefile @@ -2,7 +2,7 @@ # # Copyright (c) 2019 Western Digital Corporation or its affiliates. -ifdef CONFIG_SPL_BUILD +ifdef CONFIG_XPL_BUILD obj-y += spl.o else obj-y += unleashed.o diff --git a/board/sifive/unmatched/Makefile b/board/sifive/unmatched/Makefile index 13453300896..ce9deed9cdc 100644 --- a/board/sifive/unmatched/Makefile +++ b/board/sifive/unmatched/Makefile @@ -4,7 +4,7 @@ obj-$(CONFIG_ID_EEPROM) += hifive-platform-i2c-eeprom.o -ifdef CONFIG_SPL_BUILD +ifdef CONFIG_XPL_BUILD obj-y += spl.o else obj-y += unmatched.o |
