freebsd-ports/sysutils/u-boot-beaglebone/files/bbb_fragment
Emmanuel Vadot 4c2a4d4dce u-boot-beaglebone: Add some fragment data to disable NAND
Since u-boot merged the beaglebone defconfig with the am335x_evm ones
eMMC support is seriously broken.
Disabling NAND support (which isn't present on BBB) make this works again
as they share some pins.
Also remove the legacy_mmc targets as it is Linux centric.
2019-09-16 15:07:44 +00:00

10 lines
356 B
Text

CONFIG_API=y
CONFIG_ARMV7_NONSEC=n
CONFIG_CMD_CACHE=y
CONFIG_BOOTCOMMAND="if test ${boot_fit} -eq 1; then run update_to_fit; fi; run findfdt; run init_console; setenv boot_targets mmc0 mmc1 pxe dhcp; run distro_bootcmd"
CONFIG_NAND=n
CONFIG_SPL_NAND_SUPPORT=n
CONFIG_CMD_NAND=n
CONFIG_DFU_NAND=n
CONFIG_ENV_IS_IN_MMC=y
CONFIG_SYS_EXTRA_OPTIONS="EMMC_BOOT"