ti_omap5_common: Respect USB controller number in fastboot
authorSemen Protsenko <semen.protsenko@linaro.org>
Mon, 24 Oct 2016 15:41:11 +0000 (18:41 +0300)
committerTom Rini <trini@konsulko.com>
Mon, 21 Nov 2016 18:59:26 +0000 (13:59 -0500)
On "fastboot reboot-bootloader" we check "dofastboot" variable and do
"fastboot 0" command in U-Boot if it's 1. But there are boards which have
USB controller number other than 0, so it should be respected when
performing "fastboot" command.

This patch reuses CONFIG_FASTBOOT_USB_DEV option toprovide correct USB
controller number to "fastboot" command.

Signed-off-by: Sam Protsenko <semen.protsenko@linaro.org>
Reviewed-by: Tom Rini <trini@konsulko.com>
include/configs/ti_omap5_common.h

index 29b7d96d9622de87d04b23ff1cd74995c3053594..b85fae39bcc79c005fc0f5b41cde3b12e732d4e5 100644 (file)
        "if test ${dofastboot} -eq 1; then " \
                "echo Boot fastboot requested, resetting dofastboot ...;" \
                "setenv dofastboot 0; saveenv;" \
-               "echo Booting into fastboot ...; fastboot 0;" \
+               "echo Booting into fastboot ...; " \
+               "fastboot " __stringify(CONFIG_FASTBOOT_USB_DEV) "; " \
        "fi;" \
        "run findfdt; " \
        "run envboot; " \