How to change Uboot Console Information ls1021a

cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

How to change Uboot Console Information ls1021a

Jump to solution
889 Views
jiye
Contributor V

Hi,

pastedImage_1.png

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.

Labels (2)
1 Solution
769 Views
yipingwang
NXP TechSupport
NXP TechSupport

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

View solution in original post

1 Reply
770 Views
yipingwang
NXP TechSupport
NXP TechSupport

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