
On 29/07/2021 09:21, Mattijs Korpershoek wrote:
Right now, when running fastboot we use a hard-coded "0" for the device number.
Use the Kconfig option named CONFIG_FASTBOOT_USB_DEV instead.
Signed-off-by: Guillaume La Roque mkorpershoek@baylibre.com Signed-off-by: Mattijs Korpershoek mkorpershoek@baylibre.com
include/configs/meson64_android.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/include/configs/meson64_android.h b/include/configs/meson64_android.h index 661de76fd7..4027a7fe0d 100644 --- a/include/configs/meson64_android.h +++ b/include/configs/meson64_android.h @@ -38,7 +38,7 @@ "fi;" \ "if test "${run_fastboot}" -eq 1; then " \ "echo Running Fastboot...;" \
"fastboot 0;" \
"fi\0""fastboot " __stringify(CONFIG_FASTBOOT_USB_DEV) "; " \
#define BOOTENV_DEV_NAME_FASTBOOT(devtypeu, devtypel, instance) \ @@ -69,7 +69,7 @@ "fi;" \ "if test "${run_recovery}" -eq 1; then " \ "echo Running Recovery...;" \
"fastboot 0;" \
"fi\0""fastboot " __stringify(CONFIG_FASTBOOT_USB_DEV) "; " \
#define BOOTENV_DEV_NAME_RECOVERY(devtypeu, devtypel, instance) \
Acked-by: Neil Armstrong narmstrong@baylibre.com