projects
/
karo-tx-uboot.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
1cb997f
)
karo: tx28: check ctrlc before returning error code for unsupported baseboard
author
Lothar Waßmann
<LW@KARO-electronics.de>
Thu, 11 Feb 2016 12:02:21 +0000
(13:02 +0100)
committer
Lothar Waßmann
<LW@KARO-electronics.de>
Thu, 11 Feb 2016 12:02:21 +0000
(13:02 +0100)
board/karo/tx28/tx28.c
patch
|
blob
|
history
diff --git
a/board/karo/tx28/tx28.c
b/board/karo/tx28/tx28.c
index
ed9846a
..
c5c4788
100644
(file)
--- 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: