diff options
| author | Simon Glass <sjg@chromium.org> | 2024-09-29 19:49:53 -0600 |
|---|---|---|
| committer | Tom Rini <trini@konsulko.com> | 2024-10-11 11:44:48 -0600 |
| commit | c46760d5967d12b6f7d37402878d1607a98b2b84 (patch) | |
| tree | 29cfaebd9f6c4181425626d7b5e99930a1d2e507 /fs | |
| parent | 53abdda2f69a44c3273deebcf2b25587b8623a65 (diff) | |
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 <sjg@chromium.org>
Diffstat (limited to 'fs')
| -rw-r--r-- | fs/fat/Makefile | 4 | ||||
| -rw-r--r-- | fs/squashfs/Makefile | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/fs/fat/Makefile b/fs/fat/Makefile index f84efaccc75..7414b3602aa 100644 --- a/fs/fat/Makefile +++ b/fs/fat/Makefile @@ -1,5 +1,5 @@ # SPDX-License-Identifier: GPL-2.0+ # -obj-$(CONFIG_$(SPL_)FS_FAT) = fat.o -obj-$(CONFIG_$(SPL_)FAT_WRITE) = fat_write.o +obj-$(CONFIG_$(XPL_)FS_FAT) = fat.o +obj-$(CONFIG_$(XPL_)FAT_WRITE) = fat_write.o diff --git a/fs/squashfs/Makefile b/fs/squashfs/Makefile index ba66ee821c2..0772e1a497d 100644 --- a/fs/squashfs/Makefile +++ b/fs/squashfs/Makefile @@ -1,7 +1,7 @@ # SPDX-License-Identifier: GPL-2.0+ # -obj-$(CONFIG_$(SPL_)FS_SQUASHFS) = sqfs.o \ +obj-$(CONFIG_$(XPL_)FS_SQUASHFS) = sqfs.o \ sqfs_inode.o \ sqfs_dir.o \ sqfs_decompressor.o |
