how to build the BSP L5.1.1_2.1.0 mfg firmware?
i can not found the mfg config in u-boot and kernel in the newest BSP!!!!
解決済! 解決策の投稿を見る。
You can ask a software engineer to help you review the uboot source code by searching "is_boot_from_usb".
From the 3.10 BSP, the uboot is shared with mfg tool.
uboot-imx\common\main
#ifdef is_boot_from_usb
if (is_boot_from_usb()) {
printf("Boot from USB for mfgtools\n");
bootdelay = 0;
set_default_env("Use default environment for mfgtools\n");
} else {
printf("Normal Boot\n");
}
#endif
Hello XianYo,
Can you please tell me which evaluation board are you using?... did you download both the bsp and mfg tools?.
Can you be more specific on what you can't do?
our custom board
in the old bsp
we must rebuild the mfg uboot and kernel firmware
but thre newest bsp do not have the mfg config
You can ask a software engineer to help you review the uboot source code by searching "is_boot_from_usb".
From the 3.10 BSP, the uboot is shared with mfg tool.
uboot-imx\common\main
#ifdef is_boot_from_usb
if (is_boot_from_usb()) {
printf("Boot from USB for mfgtools\n");
bootdelay = 0;
set_default_env("Use default environment for mfgtools\n");
} else {
printf("Normal Boot\n");
}
#endif
got it. thanks!