diff options
author | Moses Christopher <BollavarapuMoses.Christopher@in.bosch.com> | 2020-03-25 06:45:44 +0000 |
---|---|---|
committer | Lokesh Vutla <lokeshvutla@ti.com> | 2020-04-14 15:44:48 +0530 |
commit | b1c95cc7044e9afbf23e91720a81aa7deacd4a51 (patch) | |
tree | 67db9a32022764c5edc7e812725d817d92209d33 /configs/am335x_guardian_defconfig | |
parent | 891483186052b259852f3f48926ff307763f4eb0 (diff) | |
download | u-boot-b1c95cc7044e9afbf23e91720a81aa7deacd4a51.tar.gz |
am335x, guardian: fix spl usb-eth boot
- On Guardian board, usb-eth boot in SPL stage fails due to certain
misconfiguration. Hence, add the same to fix the issue.
- configs are set based on the conditional statement present in
arch/arm/mach-omap2/am33xx/board.c
- disable tiny printf in SPL stage:
As the library is optimized, the ability to deal with ethaddr is lost.
The following message would be printed on the console,
Error: flags type check failure for "ethaddr" <= "80a81144M" (type: m)
Error inserting "ethaddr" variable, errno=1
Signed-off-by: Moses Christopher <BollavarapuMoses.Christopher@in.bosch.com>
Diffstat (limited to 'configs/am335x_guardian_defconfig')
-rw-r--r-- | configs/am335x_guardian_defconfig | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/configs/am335x_guardian_defconfig b/configs/am335x_guardian_defconfig index 13974f7c0f..eb2d221f4c 100644 --- a/configs/am335x_guardian_defconfig +++ b/configs/am335x_guardian_defconfig @@ -52,7 +52,7 @@ CONFIG_CMD_UBI=y # CONFIG_ISO_PARTITION is not set # CONFIG_SPL_EFI_PARTITION is not set CONFIG_OF_CONTROL=y -CONFIG_SPL_OF_CONTROL=y +# CONFIG_SPL_OF_CONTROL is not set CONFIG_DEFAULT_DEVICE_TREE="am335x-guardian" CONFIG_SYS_RELOC_GD_ENV_ADDR=y CONFIG_SPL_DM=y @@ -87,3 +87,5 @@ CONFIG_USB_GADGET_PRODUCT_NUM=0xd022 CONFIG_USB_ETHER=y CONFIG_SPL_WDT=y CONFIG_FAT_WRITE=y +CONFIG_SPL_OF_LIBFDT=y +# CONFIG_SPL_USE_TINY_PRINTF is not set |