1
0
mirror of https://github.com/DigitalDevices/dddvb.git synced 2023-10-10 13:37:43 +02:00

add yesno

This commit is contained in:
none 2020-03-31 16:37:31 +02:00
parent b43160a03a
commit 5abf74a952

View File

@ -17,6 +17,20 @@
static int verbose = 0; static int verbose = 0;
static int yesno()
{
char c;
printf("\n\nNew firmware available\nReally flash now? y/n\n");
fflush(0);
c = getchar();
if (c!='y') {
printf("\nFlashing aborted.\n\n");
return 0;
}
printf("\nStarting to flash\n\n");
return 1;
}
static int update_flash(struct ddflash *ddf) static int update_flash(struct ddflash *ddf)
{ {
@ -179,7 +193,7 @@ out:
return ret; return ret;
} }
usage() static int usage()
{ {
printf("ddupdate [OPTION]\n\n" printf("ddupdate [OPTION]\n\n"
"-n N\n only update card N (default with N=0)\n\n" "-n N\n only update card N (default with N=0)\n\n"