From: Piotr Dymacz Date: Thu, 6 Apr 2017 10:32:50 +0000 (+0200) Subject: Drop support for CONFIG_AUTOBOOT_STOP_CHAR X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=3208a89c3604d30a3f62944228fdac5ab2a261ee;p=oweals%2Fu-boot_mod.git Drop support for CONFIG_AUTOBOOT_STOP_CHAR --- diff --git a/u-boot/common/main.c b/u-boot/common/main.c index 9ca775d..a8d708c 100644 --- a/u-boot/common/main.c +++ b/u-boot/common/main.c @@ -76,11 +76,7 @@ static __inline__ int abortboot(int bootdelay) /* we got a key press */ if (tstc()) { stopc = getc(); -#if defined(CONFIG_AUTOBOOT_STOP_CHAR) - if (stopc == CONFIG_AUTOBOOT_STOP_CHAR) { -#else if (stopc != 0) { -#endif abort = 1; bootdelay = 0; break;