L5.1.1_2.1.0 mfg firmware u-boot and kernel

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

L5.1.1_2.1.0 mfg firmware u-boot and kernel

Jump to solution
1,030 Views
xianyoju
Contributor II

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!!!!

Labels (1)
0 Kudos
1 Solution
807 Views
BiyongSUN
NXP Employee
NXP Employee

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

View solution in original post

0 Kudos
4 Replies
807 Views
SergioSolis
NXP Employee
NXP Employee

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?

0 Kudos
807 Views
xianyoju
Contributor II

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

0 Kudos
808 Views
BiyongSUN
NXP Employee
NXP Employee

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

0 Kudos
807 Views
xianyoju
Contributor II

got it. thanks!

0 Kudos