forked from u-boot/u-boot
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
global: Use CONFIG_XPL_BUILD instead of CONFIG_SPL_BUILD
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 <[email protected]>
- Loading branch information
Showing
48 changed files
with
78 additions
and
78 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
# (C) Copyright 2004-2006 | ||
# Wolfgang Denk, DENX Software Engineering, [email protected]. | ||
|
||
ifndef CONFIG_SPL_BUILD | ||
ifndef CONFIG_XPL_BUILD | ||
|
||
obj-$(CONFIG_BOOT_RETRY) += bootretry.o | ||
obj-$(CONFIG_CMD_BOOTM) += bootm.o bootm_os.o | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
# (C) Copyright 2004-2006 | ||
# Wolfgang Denk, DENX Software Engineering, [email protected]. | ||
|
||
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 | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ | |
# Wolfgang Denk, DENX Software Engineering, [email protected]. | ||
|
||
# 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 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,7 +22,7 @@ | |
#include <asm/global_data.h> | ||
#include <linux/stddef.h> | ||
|
||
#ifdef CONFIG_SPL_BUILD | ||
#ifdef CONFIG_XPL_BUILD | ||
/* TODO([email protected]): 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); | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.