Hi,
Such as the first line U-Boot 2015.01...............
and Board: ls1021atwr
How am I able to customize them.
I dont think this is something can be done from uboot or dtsi file.
Solved! Go to Solution.
Hello Elias Bitbaker ,
u-boot version information, please refer to the following in Makefile.
VERSION = 2019
PATCHLEVEL = 04
SUBLEVEL =
EXTRAVERSION =
NAME =
...
# Read UBOOTRELEASE from include/config/uboot.release (if it exists)
UBOOTRELEASE = $(shell cat include/config/uboot.release 2> /dev/null)
UBOOTVERSION = $(VERSION)$(if $(PATCHLEVEL),.$(PATCHLEVEL)$(if $(SUBLEVEL),.$(SUBLEVEL)))$(EXTRAVERSION)
Please refer to checkboard function in ./board/freescale/ls1021atwr/ls1021atwr.c.
int checkboard(void)
{
puts("Board: LS1021ATWR\n");
#if !defined(CONFIG_QSPI_BOOT) && !defined(CONFIG_SD_BOOT_QSPI)
cpld_show();
#endif
return 0;
}
Thanks,
Yiping
Hello Elias Bitbaker ,
u-boot version information, please refer to the following in Makefile.
VERSION = 2019
PATCHLEVEL = 04
SUBLEVEL =
EXTRAVERSION =
NAME =
...
# Read UBOOTRELEASE from include/config/uboot.release (if it exists)
UBOOTRELEASE = $(shell cat include/config/uboot.release 2> /dev/null)
UBOOTVERSION = $(VERSION)$(if $(PATCHLEVEL),.$(PATCHLEVEL)$(if $(SUBLEVEL),.$(SUBLEVEL)))$(EXTRAVERSION)
Please refer to checkboard function in ./board/freescale/ls1021atwr/ls1021atwr.c.
int checkboard(void)
{
puts("Board: LS1021ATWR\n");
#if !defined(CONFIG_QSPI_BOOT) && !defined(CONFIG_SD_BOOT_QSPI)
cpld_show();
#endif
return 0;
}
Thanks,
Yiping