summaryrefslogtreecommitdiffstats
path: root/common
diff options
context:
space:
mode:
Diffstat (limited to 'common')
-rw-r--r--common/bbu.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/common/bbu.c b/common/bbu.c
index e31f645d9c..7fb154a230 100644
--- a/common/bbu.c
+++ b/common/bbu.c
@@ -65,8 +65,10 @@ int bbu_confirm(struct bbu_data *data)
key = read_key();
- if (key == 'y')
+ if (key == 'y') {
+ printf("updating barebox...\n");
return 0;
+ }
return -EINTR;
}