]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
global: Use CONFIG_XPL_BUILD instead of CONFIG_SPL_BUILD
authorSimon Glass <sjg@chromium.org>
Mon, 30 Sep 2024 01:49:50 +0000 (19:49 -0600)
committerTom Rini <trini@konsulko.com>
Fri, 11 Oct 2024 17:44:48 +0000 (11:44 -0600)
Complete this rename for all directories outside arch/ board/ drivers/
and include/

Use the new symbol to refer to any 'SPL' build, including TPL and VPL

Signed-off-by: Simon Glass <sjg@chromium.org>
48 files changed:
README
boot/Makefile
boot/image-android-dt.c
boot/image-android.c
boot/image-fit-sig.c
cmd/Makefile
cmd/nvedit.c
common/Makefile
common/cli_readline.c
common/console.c
common/hash.c
common/spl/Makefile
common/splash_source.c
config.mk
disk/part.c
disk/part_dos.c
doc/develop/distro.rst
doc/develop/qconfig.rst
doc/develop/tests_sandbox.rst
dts/Makefile
env/Makefile
env/common.c
env/fat.c
env/flash.c
env/mmc.c
env/nand.c
env/nowhere.c
env/sf.c
fs/Makefile
fs/fs.c
lib/Makefile
lib/crypto/Makefile
lib/display_options.c
lib/fdtdec.c
lib/hang.c
lib/hashtable.c
lib/hexdump.c
lib/uuid.c
net/bootp.c
net/net.c
scripts/Kbuild.include
scripts/Makefile.xpl
test/Makefile
test/cmd_ut.c
test/dm/Makefile
test/lib/Makefile
test/test-main.c
tools/binman/test/generated/autoconf.h

diff --git a/README b/README
index 54e723162fd9cc21585cba215830575e3f50b925..c27c386e9687335b91497fd489591a31e9b20add 100644 (file)
--- a/README
+++ b/README
@@ -1418,13 +1418,13 @@ Low Level (hardware related) configuration options:
                This only takes effect if the memory commands are activated
                globally (CONFIG_CMD_MEMORY).
 
-- CONFIG_SPL_BUILD
+- CONFIG_XPL_BUILD
                Set when the currently running compilation is for an artifact
                that will end up in one of the 'xPL' builds, i.e. SPL, TPL or
                VPL. Code that needs phase-specific behaviour can check this,
                or (where possible) use xpl_phase() instead.
 
-               Note that CONFIG_SPL_BUILD *is* always defined when either
+               Note that CONFIG_XPL_BUILD *is* always defined when either
                of CONFIG_TPL_BUILD / CONFIG_VPL_BUILD is defined. This can be
                counter-intuitive and should perhaps be changed.
 
index 40e2337de0f08581bfd2878c20a012fd5ba0deb6..5bf07e83388909e1ea9126115612dd46f324835d 100644 (file)
@@ -3,7 +3,7 @@
 # (C) Copyright 2004-2006
 # Wolfgang Denk, DENX Software Engineering, wd@denx.de.
 
-ifndef CONFIG_SPL_BUILD
+ifndef CONFIG_XPL_BUILD
 
 obj-$(CONFIG_BOOT_RETRY) += bootretry.o
 obj-$(CONFIG_CMD_BOOTM) += bootm.o bootm_os.o
index 3b25018c2e774e4db72fc2a88fff0af29044bfd8..653835cea76557c313a54b5252f875abdb4fc877 100644 (file)
@@ -72,7 +72,7 @@ bool android_dt_get_fdt_by_index(ulong hdr_addr, u32 index, ulong *addr,
        return true;
 }
 
-#if !defined(CONFIG_SPL_BUILD)
+#if !defined(CONFIG_XPL_BUILD)
 static void android_dt_print_fdt_info(const struct fdt_header *fdt)
 {
        u32 fdt_size;
index 774565fd1fea0abc8445834cc90647752062682b..fdfff58a2a7c8ac30881918fd46436f1377ba3b6 100644 (file)
@@ -652,7 +652,7 @@ bool android_image_get_dtb_by_index(ulong hdr_addr, ulong vendor_boot_img,
        return false;
 }
 
-#if !defined(CONFIG_SPL_BUILD)
+#if !defined(CONFIG_XPL_BUILD)
 /**
  * android_print_contents - prints out the contents of the Android format image
  * @hdr: pointer to the Android format image header
index fe328df4a8500e6b0088a81b9b7358085bf488df..35873b1fb0e8599f286279b7e4b61d17667b2772 100644 (file)
@@ -48,7 +48,7 @@ struct image_region *fit_region_make_list(const void *fit,
         * Use malloc() except in SPL (to save code size). In SPL the caller
         * must allocate the array.
         */
-       if (!IS_ENABLED(CONFIG_SPL_BUILD) && !region)
+       if (!IS_ENABLED(CONFIG_XPL_BUILD) && !region)
                region = calloc(sizeof(*region), count);
        if (!region)
                return NULL;
index 91227f1249cbda5f7b383e8865c8cc23f3ad5f44..ed62e1c45f8dfa5e9a7f4ae27a1c13d962d28315 100644 (file)
@@ -3,7 +3,7 @@
 # (C) Copyright 2004-2006
 # Wolfgang Denk, DENX Software Engineering, wd@denx.de.
 
-ifndef CONFIG_SPL_BUILD
+ifndef CONFIG_XPL_BUILD
 # core command
 obj-y += boot.o
 obj-$(CONFIG_CMD_BOOTM) += bootm.o
@@ -247,7 +247,7 @@ obj-$(CONFIG_ARCH_MVEBU) += mvebu/
 obj-$(CONFIG_ARCH_KEYSTONE) += ti/
 obj-$(CONFIG_ARCH_K3) += ti/
 obj-$(CONFIG_ARCH_OMAP2PLUS) += ti/
-endif # !CONFIG_SPL_BUILD
+endif # !CONFIG_XPL_BUILD
 
 obj-$(CONFIG_$(SPL_)CMD_TLV_EEPROM) += tlv_eeprom.o
 
index 98a687bcabbdd3fc4d29cc55169489aba4661902..74ff5c6fc1154e0926da682840e846db2407c8bc 100644 (file)
@@ -49,7 +49,7 @@ DECLARE_GLOBAL_DATA_PTR;
  */
 #define        MAX_ENV_SIZE    (1 << 20)       /* 1 MiB */
 
-#ifndef CONFIG_SPL_BUILD
+#ifndef CONFIG_XPL_BUILD
 /*
  * Command interface: print one or all environment variables
  *
@@ -182,9 +182,9 @@ DONE:
        return 0;
 }
 #endif
-#endif /* CONFIG_SPL_BUILD */
+#endif /* CONFIG_XPL_BUILD */
 
-#ifndef CONFIG_SPL_BUILD
+#ifndef CONFIG_XPL_BUILD
 static int do_env_set(struct cmd_tbl *cmdtp, int flag, int argc,
                      char *const argv[])
 {
@@ -503,9 +503,9 @@ static int do_env_select(struct cmd_tbl *cmdtp, int flag, int argc,
 }
 #endif
 
-#endif /* CONFIG_SPL_BUILD */
+#endif /* CONFIG_XPL_BUILD */
 
-#ifndef CONFIG_SPL_BUILD
+#ifndef CONFIG_XPL_BUILD
 static int do_env_default(struct cmd_tbl *cmdtp, int flag,
                          int argc, char *const argv[])
 {
@@ -1289,4 +1289,4 @@ U_BOOT_CMD_COMPLETE(
        var_complete
 );
 #endif
-#endif /* CONFIG_SPL_BUILD */
+#endif /* CONFIG_XPL_BUILD */
index c52d4c39f6b97e78238381e0a288cd3957327329..ae8984659c0cb2ee0cfc5247a4823b4f9744d89d 100644 (file)
@@ -4,7 +4,7 @@
 # Wolfgang Denk, DENX Software Engineering, wd@denx.de.
 
 # core
-ifndef CONFIG_SPL_BUILD
+ifndef CONFIG_XPL_BUILD
 obj-y += init/
 obj-y += main.o
 obj-y += exports.o
@@ -42,12 +42,12 @@ obj-$(CONFIG_MENU) += menu.o
 obj-$(CONFIG_UPDATE_COMMON) += update.o
 obj-$(CONFIG_USB_KEYBOARD) += usb_kbd.o
 
-endif # !CONFIG_SPL_BUILD
+endif # !CONFIG_XPL_BUILD
 
 obj-$(CONFIG_$(SPL_TPL_)BOOTSTAGE) += bootstage.o
 obj-$(CONFIG_$(SPL_TPL_)BLOBLIST) += bloblist.o
 
-ifdef CONFIG_SPL_BUILD
+ifdef CONFIG_XPL_BUILD
 ifdef CONFIG_SPL_DFU
 obj-$(CONFIG_DFU_OVER_USB) += dfu.o
 endif
@@ -58,7 +58,7 @@ obj-$(CONFIG_SPL_USB_STORAGE) += usb_storage.o
 obj-$(CONFIG_SPL_MUSB_NEW) += usb.o
 obj-$(CONFIG_SPL_SPLASH_SCREEN) += splash.o
 obj-$(CONFIG_SPL_SPLASH_SOURCE) += splash_source.o
-endif # CONFIG_SPL_BUILD
+endif # CONFIG_XPL_BUILD
 
 #others
 obj-$(CONFIG_DDR_SPD) += ddr_spd.o
index 4cb82b40149a9888fb881d0fb8b5bae39cc3dec7..4e6797a1944eb8fb43352ee56c9ad05f9b40b034 100644 (file)
@@ -73,7 +73,7 @@ static char *delete_char (char *buffer, char *p, int *colp, int *np, int plen)
 #define getcmd_getch()         getchar()
 #define getcmd_cbeep()         getcmd_putch('\a')
 
-#ifdef CONFIG_SPL_BUILD
+#ifdef CONFIG_XPL_BUILD
 #define HIST_MAX               3
 #define HIST_SIZE              32
 #else
index c9e206aec413dc5563b559496bc8b947e2f28f90..22224701e451b318e084965dcdfb2dfbf5ef2e0f 100644 (file)
@@ -191,7 +191,7 @@ static int console_setfile(int file, struct stdio_dev * dev)
                /* Assign the new device (leaving the existing one started) */
                stdio_devices[file] = dev;
 
-#ifndef CONFIG_SPL_BUILD
+#ifndef CONFIG_XPL_BUILD
                /*
                 * Update monitor functions
                 * (to use the console stuff by other applications)
index ac63803fed95b553a015f2fd65dd0c7c644e2cb4..db6925d6782e99094d75bcc26db2ff60e9a4b2be 100644 (file)
@@ -403,7 +403,7 @@ int hash_block(const char *algo_name, const void *data, unsigned int len,
        return 0;
 }
 
-#if !defined(CONFIG_SPL_BUILD) && (defined(CONFIG_CMD_HASH) || \
+#if !defined(CONFIG_XPL_BUILD) && (defined(CONFIG_CMD_HASH) || \
        defined(CONFIG_CMD_SHA1SUM) || defined(CONFIG_CMD_CRC32)) || \
        defined(CONFIG_CMD_MD5SUM)
 /**
index 137b18428bd56653be3fcb2997b5b28e8c1e0721..10528b31a7c6be139e6b82a93ea7058de8099b6f 100644 (file)
@@ -6,7 +6,7 @@
 # Based on common/Makefile.
 #
 
-ifdef CONFIG_SPL_BUILD
+ifdef CONFIG_XPL_BUILD
 obj-$(CONFIG_$(SPL_TPL_)FRAMEWORK) += spl.o
 obj-$(CONFIG_$(SPL_TPL_)BOOTROM_SUPPORT) += spl_bootrom.o
 obj-$(CONFIG_$(SPL_TPL_)LOAD_FIT) += spl_fit.o
index 5b27116044954fb3b7de7184ceb3bca966aae4c1..f43e7cc1be7aef78d1729d4c5da2b5e459086c00 100644 (file)
@@ -215,7 +215,7 @@ static int splash_init_virtio(void)
        }
 }
 
-#if defined(CONFIG_CMD_UBIFS) && !defined(CONFIG_SPL_BUILD)
+#if defined(CONFIG_CMD_UBIFS) && !defined(CONFIG_XPL_BUILD)
 static int splash_mount_ubifs(struct splash_location *location)
 {
        int res;
index b915c29b3f3e0c9957976c00a3698fcb27270bd4..e294be2a4c4279e05cdc3b5d297d172a0833db7f 100644 (file)
--- a/config.mk
+++ b/config.mk
@@ -21,7 +21,7 @@ VENDOR :=
 
 ARCH := $(CONFIG_SYS_ARCH:"%"=%)
 CPU := $(CONFIG_SYS_CPU:"%"=%)
-ifdef CONFIG_SPL_BUILD
+ifdef CONFIG_XPL_BUILD
 ifdef CONFIG_ARCH_TEGRA
 CPU := arm720t
 endif
index 706d77b3194fb230d02dbbf861169de8db90be76..303178161c083ec6e1b767b4f06ac5773576ca60 100644 (file)
@@ -482,7 +482,7 @@ int blk_get_device_part_str(const char *ifname, const char *dev_part_str,
        }
 #endif
 
-#if IS_ENABLED(CONFIG_CMD_UBIFS) && !IS_ENABLED(CONFIG_SPL_BUILD)
+#if IS_ENABLED(CONFIG_CMD_UBIFS) && !IS_ENABLED(CONFIG_XPL_BUILD)
        /*
         * Special-case ubi, ubi goes through a mtd, rather than through
         * a regular block device.
index 09af2aeeb995478040965851a39526294d23aa9a..96f748702fd5f9a410d49544a26ea91479ae9c56 100644 (file)
@@ -100,7 +100,7 @@ static int test_block_type(unsigned char *buffer)
 
 static int part_test_dos(struct blk_desc *desc)
 {
-#ifndef CONFIG_SPL_BUILD
+#ifndef CONFIG_XPL_BUILD
        ALLOC_CACHE_ALIGN_BUFFER(legacy_mbr, mbr,
                        DIV_ROUND_UP(desc->blksz, sizeof(legacy_mbr)));
 
index 9e715b23ebb23b56035505ec763f3514e26e03c8..637bc27fc2d771e663602bde1cd526d7193dc0f2 100644 (file)
@@ -189,7 +189,7 @@ TO BE UPDATED:
 
 In your board configuration file, include the following::
 
-    #ifndef CONFIG_SPL_BUILD
+    #ifndef CONFIG_XPL_BUILD
     #include <config_distro_bootcmd.h>
     #endif
 
@@ -316,7 +316,7 @@ that it supports the correct set of possible boot device types. To provide this
 configuration, simply define macro BOOT_TARGET_DEVICES prior to including
 <config_distro_bootcmd.h>. For example::
 
-    #ifndef CONFIG_SPL_BUILD
+    #ifndef CONFIG_XPL_BUILD
     #define BOOT_TARGET_DEVICES(func) \
             func(MMC, mmc, 1) \
             func(MMC, mmc, 0) \
index 123779eab175fc6d29d0f9700ad9e39a63bd1138..a18f32470cad1bcd4a196a4d73fac9f0aac72c3b 100644 (file)
@@ -226,7 +226,7 @@ Available options
    Look for moved config options in spl/include/autoconf.mk instead of
    include/autoconf.mk.  This is useful for moving options for SPL build
    because SPL related options (mostly prefixed with CONFIG_SPL\_) are
-   sometimes blocked by CONFIG_SPL_BUILD ifdef conditionals.
+   sometimes blocked by CONFIG_XPL_BUILD ifdef conditionals.
 
  -j, --jobs
    Specify the number of threads to run simultaneously.  If not specified,
index 72923070150d9816a71129e6fd91758074dbbc78..0630180bc55e03926bf01b005480a1bc5194358a 100644 (file)
@@ -278,7 +278,7 @@ Whatever sandbox build is used, which tests are present is determined by which
 source files are built. For sandbox_spl, the of_platdata tests are built
 because of the build rule in test/dm/Makefile::
 
-   ifeq ($(CONFIG_SPL_BUILD),y)
+   ifeq ($(CONFIG_XPL_BUILD),y)
    obj-$(CONFIG_SPL_OF_PLATDATA) += of_platdata.o
    else
    ...other tests for non-spl
index d6c2c9daf31d64b6f26ef63af04a5e851f1042ab..62a65688cf5e984f95df6ed5a1535ab01b60426f 100644 (file)
@@ -53,7 +53,7 @@ PHONY += arch-dtbs
 arch-dtbs:
        $(Q)$(MAKE) $(build)=$(dt_dir) dtbs
 
-ifeq ($(CONFIG_SPL_BUILD),y)
+ifeq ($(CONFIG_XPL_BUILD),y)
 obj-$(CONFIG_OF_EMBED) := dt-spl.dtb.o
 # support "out-of-tree" build for dtb-spl
 $(obj)/dt-spl.dtb.o: $(obj)/dt-spl.dtb.S FORCE
index 673b979fdfa915718a7974c596811b6f546355be..c5145c1735f06b9b920622c096bd60d9fe9aa835 100644 (file)
@@ -8,7 +8,7 @@ obj-$(CONFIG_$(SPL_TPL_)ENV_SUPPORT) += env.o
 obj-$(CONFIG_$(SPL_TPL_)ENV_SUPPORT) += attr.o
 obj-$(CONFIG_$(SPL_TPL_)ENV_SUPPORT) += flags.o
 
-ifndef CONFIG_SPL_BUILD
+ifndef CONFIG_XPL_BUILD
 obj-y += callback.o
 obj-$(CONFIG_ENV_IS_IN_EEPROM) += eeprom.o
 obj-$(CONFIG_ENV_IS_IN_EEPROM) += embedded.o
index 6cba7f1c187fc780837d305c9d7132079baa30c3..a58955a4f42a30c788bc486b989a1b9d31b67596 100644 (file)
@@ -61,7 +61,7 @@ int env_do_env_set(int flag, int argc, char *const argv[], int env_flag)
 
        debug("Initial value for argc=%d\n", argc);
 
-#if !IS_ENABLED(CONFIG_SPL_BUILD) && IS_ENABLED(CONFIG_CMD_NVEDIT_EFI)
+#if !IS_ENABLED(CONFIG_XPL_BUILD) && IS_ENABLED(CONFIG_CMD_NVEDIT_EFI)
        if (argc > 1 && argv[1][0] == '-' && argv[1][1] == 'e')
                return do_env_set_efi(NULL, flag, --argc, ++argv);
 #endif
@@ -551,7 +551,7 @@ int env_export(env_t *env_out)
 void env_relocate(void)
 {
        if (gd->env_valid == ENV_INVALID) {
-#if defined(CONFIG_ENV_IS_NOWHERE) || defined(CONFIG_SPL_BUILD)
+#if defined(CONFIG_ENV_IS_NOWHERE) || defined(CONFIG_XPL_BUILD)
                /* Environment not changable */
                env_set_default(NULL, 0);
 #else
index f3f8b7301eef6e494ba4bdcd5558f681cfe086e6..b04b1d9c31516586e2f96828d16662c7d9d6c671 100644 (file)
--- a/env/fat.c
+++ b/env/fat.c
@@ -22,7 +22,7 @@
 #include <asm/global_data.h>
 #include <linux/stddef.h>
 
-#ifdef CONFIG_SPL_BUILD
+#ifdef CONFIG_XPL_BUILD
 /* TODO(sjg@chromium.org): Figure out why this is needed */
 # if !defined(CONFIG_TARGET_AM335X_EVM) || defined(CONFIG_SPL_OS_BOOT)
 #  define LOADENV
@@ -129,7 +129,7 @@ static int env_fat_load(void)
        if (!strcmp(ifname, "mmc"))
                mmc_initialize(NULL);
 #endif
-#ifndef CONFIG_SPL_BUILD
+#ifndef CONFIG_XPL_BUILD
 #if defined(CONFIG_AHCI) || defined(CONFIG_SCSI)
        if (!strcmp(CONFIG_ENV_FAT_INTERFACE, "scsi"))
                scsi_scan(true);
index 1bd6e7003d6ec86fd21e79e78a7a6143ba35f226..0f7393d830c1761726bdb7896f655cead9176d06 100644 (file)
@@ -22,7 +22,7 @@
 
 DECLARE_GLOBAL_DATA_PTR;
 
-#ifndef CONFIG_SPL_BUILD
+#ifndef CONFIG_XPL_BUILD
 # if defined(CONFIG_CMD_SAVEENV) && defined(CONFIG_CMD_FLASH)
 #  include <flash.h>
 #  define CMD_SAVEENV
@@ -35,11 +35,11 @@ DECLARE_GLOBAL_DATA_PTR;
 #if (!defined(CONFIG_MICROBLAZE) && !defined(CONFIG_ARCH_ZYNQ) && \
        !defined(CONFIG_TARGET_MCCMON6) && !defined(CONFIG_TARGET_X600) && \
        !defined(CONFIG_TARGET_EDMINIV2)) || \
-       !defined(CONFIG_SPL_BUILD)
+       !defined(CONFIG_XPL_BUILD)
 #define LOADENV
 #endif
 
-#if !defined(CONFIG_TARGET_X600) || !defined(CONFIG_SPL_BUILD)
+#if !defined(CONFIG_TARGET_X600) || !defined(CONFIG_XPL_BUILD)
 #define INITENV
 #endif
 
index 0338aa6c56adf2f8c32724059c7b3a66b821725a..5fc0dae23a84f7dfb9dfe609b402565e02fb1ab3 100644 (file)
--- a/env/mmc.c
+++ b/env/mmc.c
@@ -239,7 +239,7 @@ static void fini_mmc_for_env(struct mmc *mmc)
        mmc_set_env_part_restore(mmc);
 }
 
-#if defined(CONFIG_CMD_SAVEENV) && !defined(CONFIG_SPL_BUILD)
+#if defined(CONFIG_CMD_SAVEENV) && !defined(CONFIG_XPL_BUILD)
 static inline int write_env(struct mmc *mmc, unsigned long size,
                            unsigned long offset, const void *buffer)
 {
@@ -368,7 +368,7 @@ fini:
        fini_mmc_for_env(mmc);
        return ret;
 }
-#endif /* CONFIG_CMD_SAVEENV && !CONFIG_SPL_BUILD */
+#endif /* CONFIG_CMD_SAVEENV && !CONFIG_XPL_BUILD */
 
 static inline int read_env(struct mmc *mmc, unsigned long size,
                           unsigned long offset, const void *buffer)
@@ -498,7 +498,7 @@ U_BOOT_ENV_LOCATION(mmc) = {
        .location       = ENVL_MMC,
        ENV_NAME("MMC")
        .load           = env_mmc_load,
-#if defined(CONFIG_CMD_SAVEENV) && !defined(CONFIG_SPL_BUILD)
+#if defined(CONFIG_CMD_SAVEENV) && !defined(CONFIG_XPL_BUILD)
        .save           = env_save_ptr(env_mmc_save),
        .erase          = ENV_ERASE_PTR(env_mmc_erase)
 #endif
index fef5697ec39d13b3dad263c7b03bde2302d477d3..fdaa903cd6120693b70fa3ba101a487048fdf31f 100644 (file)
@@ -26,9 +26,9 @@
 #include <u-boot/crc.h>
 
 #if defined(CONFIG_CMD_SAVEENV) && defined(CONFIG_CMD_NAND) && \
-               !defined(CONFIG_SPL_BUILD)
+               !defined(CONFIG_XPL_BUILD)
 #define CMD_SAVEENV
-#elif defined(CONFIG_ENV_OFFSET_REDUND) && !defined(CONFIG_SPL_BUILD)
+#elif defined(CONFIG_ENV_OFFSET_REDUND) && !defined(CONFIG_XPL_BUILD)
 #error CONFIG_ENV_OFFSET_REDUND must have CONFIG_CMD_SAVEENV & CONFIG_CMD_NAND
 #endif
 
@@ -224,7 +224,7 @@ static int env_nand_save(void)
 }
 #endif /* CMD_SAVEENV */
 
-#if defined(CONFIG_SPL_BUILD)
+#if defined(CONFIG_XPL_BUILD)
 static int readenv(size_t offset, u_char *buf)
 {
        return nand_spl_load_image(offset, CONFIG_ENV_SIZE, buf);
@@ -265,7 +265,7 @@ static int readenv(size_t offset, u_char *buf)
 
        return 0;
 }
-#endif /* #if defined(CONFIG_SPL_BUILD) */
+#endif /* #if defined(CONFIG_XPL_BUILD) */
 
 #ifdef CONFIG_ENV_OFFSET_OOB
 int get_nand_env_oob(struct mtd_info *mtd, unsigned long *result)
index 326f27db2e9c5ddb64de637cbfb00ef1771942c5..6b9b6e2fe0bc8edca46e1381032b15cf8000577a 100644 (file)
@@ -33,7 +33,7 @@ static int env_nowhere_load(void)
         * searches default_environment array in that case.
         * For U-Boot proper, import the default environment to allow reload.
         */
-       if (!IS_ENABLED(CONFIG_SPL_BUILD))
+       if (!IS_ENABLED(CONFIG_XPL_BUILD))
                env_set_default(NULL, 0);
 
        gd->env_valid = ENV_INVALID;
index 21ac0c202e737283626613efd0978c3a68cec44f..eb4c8d5ec95162f4c9ba9e0a92b1b508f74cbea9 100644 (file)
--- a/env/sf.c
+++ b/env/sf.c
@@ -329,7 +329,7 @@ done:
 
 __weak void *env_sf_get_env_addr(void)
 {
-#ifndef CONFIG_SPL_BUILD
+#ifndef CONFIG_XPL_BUILD
        return (void *)CONFIG_ENV_ADDR;
 #else
        return NULL;
index 7b05c79e0ccfdc5c83067e4e53269337230e7e83..ec3e31c7c75c124777ac55ddf71ebee9d252ab0d 100644 (file)
@@ -4,7 +4,7 @@
 # Wolfgang Denk, DENX Software Engineering, wd@denx.de.
 # Copyright (c) 2012, NVIDIA CORPORATION.  All rights reserved.
 
-ifdef CONFIG_SPL_BUILD
+ifdef CONFIG_XPL_BUILD
 obj-$(CONFIG_FS_LOADER) += fs.o
 obj-$(CONFIG_SPL_FS_FAT) += fat/
 obj-$(CONFIG_SPL_FS_EXT4) += ext4/
diff --git a/fs/fs.c b/fs/fs.c
index 4bc28d1dffb5435e14364a2ab21110b6ae117d92..e2915e7cf7992d9e84dd4caf2fe694c370cae7f6 100644 (file)
--- a/fs/fs.c
+++ b/fs/fs.c
@@ -237,7 +237,7 @@ static struct fstype_info fstypes[] = {
                .mkdir = fs_mkdir_unsupported,
        },
 #endif
-#if IS_ENABLED(CONFIG_SANDBOX) && !IS_ENABLED(CONFIG_SPL_BUILD)
+#if IS_ENABLED(CONFIG_SANDBOX) && !IS_ENABLED(CONFIG_XPL_BUILD)
        {
                .fstype = FS_TYPE_SANDBOX,
                .name = "sandbox",
@@ -275,7 +275,7 @@ static struct fstype_info fstypes[] = {
                .ln = fs_ln_unsupported,
        },
 #endif
-#ifndef CONFIG_SPL_BUILD
+#ifndef CONFIG_XPL_BUILD
 #ifdef CONFIG_CMD_UBIFS
        {
                .fstype = FS_TYPE_UBIFS,
@@ -296,7 +296,7 @@ static struct fstype_info fstypes[] = {
        },
 #endif
 #endif
-#ifndef CONFIG_SPL_BUILD
+#ifndef CONFIG_XPL_BUILD
 #ifdef CONFIG_FS_BTRFS
        {
                .fstype = FS_TYPE_BTRFS,
index d300249f57ce586e8e2456536b0084ca16a6f2d3..66f84408aaee2f83d84bcd0ab12b8de65bd21fb1 100644 (file)
@@ -3,7 +3,7 @@
 # (C) Copyright 2000-2006
 # Wolfgang Denk, DENX Software Engineering, wd@denx.de.
 
-ifndef CONFIG_SPL_BUILD
+ifndef CONFIG_XPL_BUILD
 
 obj-$(CONFIG_EFI) += efi/
 obj-$(CONFIG_EFI_LOADER) += efi_driver/
@@ -96,7 +96,7 @@ obj-$(CONFIG_LIBAVB) += libavb/
 obj-$(CONFIG_$(SPL_TPL_)OF_LIBFDT) += libfdt/
 obj-$(CONFIG_$(SPL_TPL_)OF_REAL) += fdtdec_common.o fdtdec.o
 
-ifdef CONFIG_SPL_BUILD
+ifdef CONFIG_XPL_BUILD
 obj-$(CONFIG_SPL_YMODEM_SUPPORT) += crc16-ccitt.o
 obj-$(CONFIG_$(SPL_TPL_)HASH) += crc16-ccitt.o
 obj-$(CONFIG_MMC_SPI_CRC_ON) += crc16-ccitt.o
@@ -131,7 +131,7 @@ obj-$(CONFIG_LIB_UUID) += uuid.o
 obj-$(CONFIG_LIB_RAND) += rand.o
 obj-y += panic.o
 
-ifeq ($(CONFIG_SPL_BUILD),y)
+ifeq ($(CONFIG_XPL_BUILD),y)
 # SPL U-Boot may use full-printf, tiny-printf or none at all
 ifdef CONFIG_$(SPL_TPL_)USE_TINY_PRINTF
 obj-$(CONFIG_$(SPL_TPL_)SPRINTF) += tiny-printf.o
index bec1bc95a65864fb3a6c935f1efd3eb2ec9fdc99..3259c951241e21ebab4a593568f73703905a3a8f 100644 (file)
@@ -18,12 +18,12 @@ rsa_public_key-y := \
        rsa_helper.o
 
 $(obj)/rsapubkey.asn1.o: $(obj)/rsapubkey.asn1.c $(obj)/rsapubkey.asn1.h
-ifdef CONFIG_SPL_BUILD
+ifdef CONFIG_XPL_BUILD
 CFLAGS_rsapubkey.asn1.o += -I$(obj)
 endif
 
 $(obj)/rsa_helper.o: $(obj)/rsapubkey.asn1.h
-ifdef CONFIG_SPL_BUILD
+ifdef CONFIG_XPL_BUILD
 CFLAGS_rsa_helper.o += -I$(obj)
 endif
 
index d5df53ab15f93b88d114a575c2c777c20168642e..2c15cc5b5c4aa69568d7cede90a3deb003aa5dac 100644 (file)
@@ -236,7 +236,7 @@ int print_buffer(ulong addr, const void *data, uint width, uint count,
                addr += thislinelen * width;
                count -= thislinelen;
 
-               if (!IS_ENABLED(CONFIG_SPL_BUILD) && ctrlc())
+               if (!IS_ENABLED(CONFIG_XPL_BUILD) && ctrlc())
                        return -EINTR;
        }
 
index 6276b27af33842e76f0f2942234a67235e005112..b2d38795a48cccd43ac869651e7978a644ce5f51 100644 (file)
@@ -1230,7 +1230,7 @@ static void *fdt_find_separate(void)
        if (IS_ENABLED(CONFIG_SANDBOX))
                return NULL;
 
-#ifdef CONFIG_SPL_BUILD
+#ifdef CONFIG_XPL_BUILD
        /* FDT is at end of BSS unless it is in a different memory region */
        if (IS_ENABLED(CONFIG_SPL_SEPARATE_BSS))
                fdt_blob = (ulong *)_image_binary_end;
@@ -1714,7 +1714,7 @@ int fdtdec_setup(void)
        }
 
        /* Allow the early environment to override the fdt address */
-       if (!IS_ENABLED(CONFIG_SPL_BUILD)) {
+       if (!IS_ENABLED(CONFIG_XPL_BUILD)) {
                ulong addr;
 
                addr = env_get_hex("fdtcontroladdr", 0);
index 3cfb06e9ca8d06b43946513df3b2867414c2d183..f3c3c896f0abf29d55becabca9266d5820b1f6ad 100644 (file)
@@ -22,7 +22,7 @@
  */
 void hang(void)
 {
-#if !defined(CONFIG_SPL_BUILD) || \
+#if !defined(CONFIG_XPL_BUILD) || \
                (CONFIG_IS_ENABLED(LIBCOMMON_SUPPORT) && \
                 CONFIG_IS_ENABLED(SERIAL))
        puts("### ERROR ### Please RESET the board ###\n");
index 9613adc55408dbc4d0673c9ab8056bb4e0eb257e..e8a59e2dcac2dea13e093cc3f861b722b5cdb6f4 100644 (file)
@@ -221,7 +221,7 @@ static int
 do_callback(const struct env_entry *e, const char *name, const char *value,
            enum env_op op, int flags)
 {
-#ifndef CONFIG_SPL_BUILD
+#ifndef CONFIG_XPL_BUILD
        if (e->callback)
                return e->callback(name, value, op, flags);
 #endif
@@ -487,7 +487,7 @@ int hdelete_r(const char *key, struct hsearch_data *htab, int flag)
        return 0;
 }
 
-#if !(defined(CONFIG_SPL_BUILD) && !defined(CONFIG_SPL_SAVEENV))
+#if !(defined(CONFIG_XPL_BUILD) && !defined(CONFIG_SPL_SAVEENV))
 /*
  * hexport()
  */
index 2bc508ff5048e288f5435515a1a6f1d43aa334e4..29feccd60fc6ec90235dda587ab848f42b419787 100644 (file)
@@ -157,7 +157,7 @@ int print_hex_dump(const char *prefix_str, int prefix_type, int rowsize,
                        printf("%s%s\n", prefix_str, linebuf);
                        break;
                }
-               if (!IS_ENABLED(CONFIG_SPL_BUILD) && ctrlc())
+               if (!IS_ENABLED(CONFIG_XPL_BUILD) && ctrlc())
                        return -EINTR;
        }
 
index 11b86ffb02e6c9b3555ca63945852c85d28b6790..c6a27b7d044dfb5b2116893fc538919a6318e701 100644 (file)
@@ -477,7 +477,7 @@ void gen_rand_uuid_str(char *uuid_str, int str_format)
        uuid_bin_to_str(uuid_bin, uuid_str, str_format);
 }
 
-#if !defined(CONFIG_SPL_BUILD) && defined(CONFIG_CMD_UUID)
+#if !defined(CONFIG_XPL_BUILD) && defined(CONFIG_CMD_UUID)
 int do_uuid(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])
 {
        char uuid[UUID_STR_LEN + 1];
index 512ab2ed7c81c160aa5ef12b34952d5b1ac546b1..afd5b48094acda7dabc4426e59c31623a85dfc09 100644 (file)
@@ -434,7 +434,7 @@ static u8 *add_vci(u8 *e)
        char *vci = NULL;
        char *env_vci = env_get("bootp_vci");
 
-#if defined(CONFIG_SPL_BUILD) && defined(CONFIG_SPL_NET_VCI_STRING)
+#if defined(CONFIG_XPL_BUILD) && defined(CONFIG_SPL_NET_VCI_STRING)
        vci = CONFIG_SPL_NET_VCI_STRING;
 #elif defined(CONFIG_BOOTP_VCI_STRING)
        vci = CONFIG_BOOTP_VCI_STRING;
index 1e0b7c856244db09ebd45fe6305598fdcc134958..fd7d413e48839530adb89ba061fd1a745b3f4378 100644 (file)
--- a/net/net.c
+++ b/net/net.c
@@ -305,7 +305,7 @@ U_BOOT_ENV_CALLBACK(dnsip, on_dnsip);
  */
 void net_auto_load(void)
 {
-#if defined(CONFIG_CMD_NFS) && !defined(CONFIG_SPL_BUILD)
+#if defined(CONFIG_CMD_NFS) && !defined(CONFIG_XPL_BUILD)
        const char *s = env_get("autoload");
 
        if (s != NULL && strcmp(s, "NFS") == 0) {
@@ -559,7 +559,7 @@ restart:
                        ping6_start();
                        break;
 #endif
-#if defined(CONFIG_CMD_NFS) && !defined(CONFIG_SPL_BUILD)
+#if defined(CONFIG_CMD_NFS) && !defined(CONFIG_XPL_BUILD)
                case NFS:
                        nfs_start();
                        break;
@@ -574,7 +574,7 @@ restart:
                        cdp_start();
                        break;
 #endif
-#if defined(CONFIG_NETCONSOLE) && !defined(CONFIG_SPL_BUILD)
+#if defined(CONFIG_NETCONSOLE) && !defined(CONFIG_XPL_BUILD)
                case NETCONS:
                        nc_start();
                        break;
@@ -1439,7 +1439,7 @@ void net_process_received_packet(uchar *in_packet, int len)
                        }
                }
 
-#if defined(CONFIG_NETCONSOLE) && !defined(CONFIG_SPL_BUILD)
+#if defined(CONFIG_NETCONSOLE) && !defined(CONFIG_XPL_BUILD)
                nc_input_packet((uchar *)ip + IP_UDP_HDR_SIZE,
                                src_ip,
                                ntohs(ip->udp_dst),
index 5daceb26061139be235ffe28613a0ff254497693..b70b75ee68db5541ddba86a31e0bd392d7ffcf86 100644 (file)
@@ -324,7 +324,7 @@ endif
 # do not delete intermediate files automatically
 .SECONDARY:
 
-ifdef CONFIG_SPL_BUILD
+ifdef CONFIG_XPL_BUILD
 SPL_ := SPL_
 ifeq ($(CONFIG_VPL_BUILD),y)
 SPL_TPL_ := VPL_
index ad21d451a3012214900b5d4ecf40a5dc13df05fa..08453f0b4151919b6bce7873773a741b8259640e 100644 (file)
@@ -55,7 +55,7 @@ endif
 
 export SPL_NAME
 
-ifdef CONFIG_SPL_BUILD
+ifdef CONFIG_XPL_BUILD
 SPL_ := SPL_
 ifeq ($(CONFIG_VPL_BUILD),y)
 SPL_TPL_ := VPL_
index ed312cd0a4847b8c4d9b845f62b310f4c7c5973a..f801d87e385b3ea49a9e020c7ef32a190ac5e7a3 100644 (file)
@@ -25,7 +25,7 @@ obj-$(CONFIG_$(SPL_)CMDLINE) += str_ut.o
 obj-$(CONFIG_UT_TIME) += time_ut.o
 obj-y += ut.o
 
-ifeq ($(CONFIG_SPL_BUILD),)
+ifeq ($(CONFIG_XPL_BUILD),)
 obj-y += boot/
 obj-$(CONFIG_UNIT_TEST) += common/
 obj-y += log/
index 38ba89ee33ebdf50072514deb2fcdd173e35b8d3..53fddebd49d645b6ebe103ac509a1982af04beeb 100644 (file)
@@ -256,7 +256,7 @@ U_BOOT_LONGHELP(ut,
        "\ntime - very basic test of time functions"
 #endif
 #if defined(CONFIG_UT_UNICODE) && \
-       !defined(CONFIG_SPL_BUILD) && !defined(API_BUILD)
+       !defined(CONFIG_XPL_BUILD) && !defined(API_BUILD)
        "\nunicode - Unicode functions"
 #endif
        );
index c12589d487ccc3639d98dbfe8d6ee7b71c1d0538..c6c63051e0bc05cda6160c19dcce41cdd3276505 100644 (file)
@@ -7,7 +7,7 @@ obj-$(CONFIG_UT_DM) += test-dm.o
 
 # Tests for particular subsystems - when enabling driver model for a new
 # subsystem you must add sandbox tests here.
-ifeq ($(CONFIG_SPL_BUILD),y)
+ifeq ($(CONFIG_XPL_BUILD),y)
 obj-$(CONFIG_SPL_OF_PLATDATA) += of_platdata.o
 else
 obj-$(CONFIG_UT_DM) += bus.o
index 70f14c46b1e215ff7a60c48b4c791be7bbd359f8..a54387a058e9cc7f552f71fa9356b84c97707fbe 100644 (file)
@@ -2,7 +2,7 @@
 #
 # (C) Copyright 2018
 # Mario Six, Guntermann & Drunck GmbH, mario.six@gdsys.cc
-ifeq ($(CONFIG_SPL_BUILD),)
+ifeq ($(CONFIG_XPL_BUILD),)
 obj-y += cmd_ut_lib.o
 obj-y += abuf.o
 obj-y += alist.o
index b3d3e24cdcea9777731736a02e2c48420fbda5df..479dbb33b724ba0923d13633c81b45c33f4c0139 100644 (file)
@@ -47,7 +47,7 @@ enum fdtchk_t {
 static enum fdtchk_t fdt_action(void)
 {
        /* For sandbox SPL builds, do nothing */
-       if (IS_ENABLED(CONFIG_SANDBOX) && IS_ENABLED(CONFIG_SPL_BUILD))
+       if (IS_ENABLED(CONFIG_SANDBOX) && IS_ENABLED(CONFIG_XPL_BUILD))
                return FDTCHK_NONE;
 
        /* Do a copy for sandbox (but only the U-Boot build, not SPL) */
index 6a23039f46991d199e3ac7b7b5013cebfcb884fb..75af48f9116087c970c9cef31b33094569b63b26 100644 (file)
@@ -1,3 +1,3 @@
 #define CONFIG_BINMAN 1
-#define CONFIG_SPL_BUILD 1
+#define CONFIG_XPL_BUILD 1
 #define CONFIG_SPL_BINMAN_SYMBOLS 1