From: Lothar Waßmann Date: Thu, 11 Feb 2016 12:02:21 +0000 (+0100) Subject: karo: tx28: check ctrlc before returning error code for unsupported baseboard X-Git-Tag: KARO-TX6-2016-03-10~1^2~2 X-Git-Url: https://git.kernelconcepts.de/?p=karo-tx-uboot.git;a=commitdiff_plain;h=0e6985443278fc193c90fc2daeeefce853012d54 karo: tx28: check ctrlc before returning error code for unsupported baseboard --- diff --git a/board/karo/tx28/tx28.c b/board/karo/tx28/tx28.c index ed9846a2df..c5c4788a58 100644 --- a/board/karo/tx28/tx28.c +++ b/board/karo/tx28/tx28.c @@ -879,7 +879,8 @@ int board_late_init(void) } else { printf("WARNING: Unsupported baseboard: '%s'\n", baseboard); - ret = -EINVAL; + if (!had_ctrlc()) + ret = -EINVAL; } exit: