CONFIG_SPL_BUILD := y export CONFIG_SPL_BUILD export CONFIG_SPL_BUILD: 在接下来的编译中, 这个变量为y. 从后面的分析中可以看到, uboot的stage1, stage2阶段的代码用的是同一个Start.S, 只不过在Start.S中用#ifdef CONFIG_SPL_BUILD这种条件编译来区分. 类似的还有其他一些文件. HAVE_VENDOR_COMMON_L...
+CONFIG_SPL_BSS_START_ADDR=0x4000000 +CONFIG_SPL_BSS_MAX_SIZE=0x4000 +# CONFIG_SPL_RAW_IMAGE_SUPPORT is not set +# CONFIG_SPL_SHARES_INIT_SP_ADDR is not set +CONFIG_SPL_STACK_R=y +CONFIG_SPL_ATF=y +CONFIG_CMD_GPIO=y +CONFIG_CMD_GPT=y ...
export CONFIG_SPL_BUILD: 在接下来的编译中, 这个变量为y. 从后面的分析中可以看到, uboot的stage1, stage2阶段的代码用的是同一个Start.S, 只不过在Start.S中用#ifdef CONFIG_SPL_BUILD这种条件编译来区分. 类似的还有其他一些文件. [plain]view plain copy HAVE_...
config SPL_MMC_TINY bool "Tiny MMC framework in SPL" depends on SPL_MMC_SUPPORT 1 change: 0 additions & 1 deletion 1 include/configs/am3517_crane.h Original file line numberDiff line numberDiff line change @@ -207,7 +207,6 @@ #define CONFIG_SPL_BSS_START_ADDR 0x80000000 #define ...
CONFIG_SPL_RAW_IMAGE_SUPPORT=y CONFIG_SPL_LEGACY_IMAGE_SUPPORT=y # CONFIG_SPL_SYS_MALLOC_SIMPLE is not set # CONFIG_TPL_SYS_MALLOC_SIMPLE is not set # CONFIG_SPL_STACK_R is not set # CONFIG_SPL_SEPARATE_BSS is not set # CONFIG_SPL_DISABLE_BANNER_PRINT is not set # CONF...
Net: <ethaddr> not set. Validating first E-fuse MACcpsw, usb_etherHit any key to stop autoboot: 0 switch to partitions #0, OKmmc0 is current deviceScanning mmc 0:1...switch to partitions #0, OKmmc0 is current deviceSD/MMC found on device 0reading...
inet addr:127.0.0.1 Mask:255.0.0.0 UP LOOPBACK RUNNING MTU:65536 Metric:1 RX packets:0 errors:0 dropped:0 overruns:0 frame:0 TX packets:0 errors:0 dropped:0 overruns:0 carrier:0 collisions:0 txqueuelen:0 RX bytes:0 (0.0 B) TX bytes:0 (0.0 B...
#define CONFIG_SPL_BSS_START_ADDR 0x00400000 #define CONFIG_SPL_BSS_MAX_SIZE 0x2000 #define CONFIG_SYS_BOOTM_LEN (64 << 20) /* 64M */ 2 changes: 1 addition & 1 deletion 2 include/configs/rk3368_common.h Original file line numberDiff line numberDiff line change @@ -28,7 +28,7...
CONFIG_SPL_TEXT_BASE TEXT_BASE for linking the SPL binary. CONFIG_SPL_LDSCRIPT LDSCRIPT for linking the SPL binary. CONFIG_SPL_BSS_START_ADDR Link address for the BSS within the SPL binary. CONFIG_SPL_BSS_MAX_SIZE Maximum binary size of the BSS section of the SPL binary. CONFIG_SPL_STAC...
__weak void *env_sf_get_env_addr(void) { #ifndef CONFIG_SPL_BUILD #ifndef CONFIG_XPL_BUILD return (void *)CONFIG_ENV_ADDR; #else return NULL;2 changes: 1 addition & 1 deletion 2 fs/Makefile Original file line numberDiff line numberDiff line change @@ -4,7 +4,7 @@ # Wolfga...