A little disappointed in the lack of a response on this issue. I removed the #ifdef code from the previous post and have gotten further.
My current issue is that there are no environment variable being included with my manufacturing u-boot file. When it loads the files into memory and attempts to boot, the code has no idea where to go. The current defined variables are here:
MFG U-Boot>printenv
stdin=serial
stdout=serial
stderr=serial
ethact=FEC0
Environment size: 53/131068 bytes
Within my custom manufacturing include file I have the following definitions:
#define CONFIG_BOOTARGS "console=ttymxc0,115200 rdinit=/linuxrc"
#define CONFIG_BOOTCOMMAND "bootm 0x10800000 0x11000000"
#define CONFIG_EXTRA_ENV_SETTINGS \
"netdev=eth0\0" \
"ethprime=FEC0\0" \
"uboot=u-boot.bin\0" \
"kernel=uImage\0" \
Any idea why these variables are not being included in my u-boot build?