uboot配置文件

S32V Link to heading

 1  x CONFIG_SYS_EXTRA_OPTIONS:                                                                                                                                      x
 2  x                                                                                                                                                                x
 3  x The old configuration infrastructure (= mkconfig + boards.cfg)                                                                                                 x
 4  x provided the extra options field. If you have something like                                                                                                   x
 5  x "HAS_BAR,BAZ=64", the optional options                                                                                                                         x
 6  x   #define CONFIG_HAS                                                                                                                                           x
 7  x   #define CONFIG_BAZ   64                                                                                                                                      x
 8  x will be defined in include/config.h.                                                                                                                           x
 9  x This option was prepared for the smooth migration from the old                                                                                                 x
10  x configuration to Kconfig. Since this option will be removed sometime,                                                                                          x
11  x new boards should not use this option.                                                                                                                         x
12  x                                                                                                                                                                x
13  x Symbol: SYS_EXTRA_OPTIONS [=IMX_CONFIG=board/freescale/s32v234evb/s32v234evb.cfg]                                                                              x
14  x Type  : string                                                                                                                                                 x
15  x Prompt: Extra Options (DEPRECATED)                                                                                                                             x
16  x   Location:                                                                                                                                                    x
17  x     -> Boot images                                                                                                                                             x
18  x   Defined at Kconfig:197

由以上信息可以获取uboot的配置文件路径:

1IMX_CONFIG=board/freescale/s32v234evb/s32v234evb.cfg
2
3.u-boot.s32.cmd:1:cmd_u-boot.s32 := ./tools/mkimage -n board/freescale/s32v234evb/s32v234evb.cfg.cfgtmp -T imximage -e 0x3E820000 -d u-boot.bin u-boot.s32  >/dev/null
4
5tools/s32v234-smp/makefile:24:	../mkimage -n ../../board/freescale/s32v234evb/s32v234evb.cfg.cfgtmp -T imximage  -e 0x3e802000 -d $^ $@

IMX6 Link to heading

 1  x CONFIG_SYS_EXTRA_OPTIONS:                                                                                                                                      x
 2  x                                                                                                                                                                x
 3  x The old configuration infrastructure (= mkconfig + boards.cfg)                                                                                                 x
 4  x provided the extra options field. If you have something like                                                                                                   x
 5  x "HAS_BAR,BAZ=64", the optional options                                                                                                                         x
 6  x   #define CONFIG_HAS                                                                                                                                           x
 7  x   #define CONFIG_BAZ   64                                                                                                                                      x
 8  x will be defined in include/config.h.                                                                                                                           x
 9  x This option was prepared for the smooth migration from the old                                                                                                 x
10  x configuration to Kconfig. Since this option will be removed sometime,                                                                                          x
11  x new boards should not use this option.                                                                                                                         x
12  x                                                                                                                                                                x
13  x Symbol: SYS_EXTRA_OPTIONS [=IMX_CONFIG=board/freescale/mx6sabresd/mx6q_4x_mt41j128.cfg,MX6Q,SYS_USE_SPINOR]                                                    x
14  x Type  : string                                                                                                                                                 x
15  x Prompt: Extra Options (DEPRECATED)                                                                                                                             x
16  x   Location:                                                                                                                                                    x
17  x     -> Boot images                                                                                                                                             x
18  x   Defined at Kconfig:167

由以上信息可以获取uboot的配置文件路径:

1IMX_CONFIG=board/freescale/mx6sabresd/mx6q_4x_mt41j128.cfg,MX6Q,SYS_USE_SPINOR
2
3.u-boot.imx.cmd:1:cmd_u-boot.imx := ./tools/mkimage -n board/freescale/mx6sabresd/mx6q_4x_mt41j128.cfg.cfgtmp -T imximage -e 0x17800000 -d u-boot.bin u-boot.imx  >/dev/null

See also in uboot Link to heading