9
0
Fork 0

bbu: make bbu confirm a bit more verbose

It is a lot more user friendly if we give a bit more feedback.

Signed-off-by: Lucas Stach <dev@lynxeye.de>
Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
This commit is contained in:
Lucas Stach 2015-03-03 20:46:19 +01:00 committed by Sascha Hauer
parent 6b73603f16
commit 21294b0516
1 changed files with 3 additions and 1 deletions

View File

@ -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;
}