Hi Yiping,
I understand that this print is in image-fit.c,
I wonder how does printf(" Using '%s' configuration\n", fit_base_uname_config);
fit_base_uname_config knows it's ls1021a-twr.dtb for example, if I want to change it to ls1021a-random.dtb how could I do that?
Also it shows different name during different sections
## Loading ramdisk from FIT Image at xxxxxxx...
Using 'conf@random1-image.dtb' configuration
## Loading fdt from FIT Image at xxxxxx...
Using 'conf@random2-image.dtb' configuration
how to change the name random2-image.dtb to random2.dtb so the printf will print
For example:
Using 'conf@random1.dtb' configuration
Using 'conf@random2-.dtb' configuration
Do I have to change the name of the dts file itself? if so how many changes do I need to make ?