X-Git-Url: https://git.ozlabs.org/?a=blobdiff_plain;f=ui%2Fncurses%2Fgeneric-main.c;h=ddf0de34e7be5d6efd8b646d755bd5e07445de22;hb=c62667e5c78ea212e5ac49244e9792954a1d8f71;hp=972490acef49d2bb8e2ee0ecc4974cbbc3f52f15;hpb=174887a55ad4e8cbacde32de207c3deef8711fab;p=petitboot diff --git a/ui/ncurses/generic-main.c b/ui/ncurses/generic-main.c index 972490a..ddf0de3 100644 --- a/ui/ncurses/generic-main.c +++ b/ui/ncurses/generic-main.c @@ -38,14 +38,15 @@ static void print_version(void) { - printf("pb-cui (" PACKAGE_NAME ") " PACKAGE_VERSION "\n"); + printf("petitboot-nc (" PACKAGE_NAME ") " PACKAGE_VERSION "\n"); } static void print_usage(void) { print_version(); printf( -"Usage: pb-cui [-h, --help] [-l, --log log-file] [-V, --version]\n"); +"Usage: petitboot-nc [-d, --dry-run] [-h, --help] [-l, --log log-file]\n" +" [-s, --start-daemon] [-V, --version]\n"); } /** @@ -59,8 +60,10 @@ enum opt_value {opt_undef = 0, opt_yes, opt_no}; */ struct opts { + enum opt_value dry_run; enum opt_value show_help; const char *log_file; + enum opt_value start_daemon; enum opt_value show_version; }; @@ -71,14 +74,16 @@ struct opts { static int opts_parse(struct opts *opts, int argc, char *argv[]) { static const struct option long_options[] = { - {"help", no_argument, NULL, 'h'}, - {"log", required_argument, NULL, 'l'}, - {"version", no_argument, NULL, 'V'}, - { NULL, 0, NULL, 0}, + {"dry-run", no_argument, NULL, 'd'}, + {"help", no_argument, NULL, 'h'}, + {"log", required_argument, NULL, 'l'}, + {"start-daemon", no_argument, NULL, 's'}, + {"version", no_argument, NULL, 'V'}, + { NULL, 0, NULL, 0}, }; - static const char short_options[] = "hl:V"; + static const char short_options[] = "dhl:sV"; static const struct opts default_values = { - .log_file = "pb-cui.log", + .log_file = "/var/log/petitboot/petitboot-nc.log", }; *opts = default_values; @@ -91,12 +96,18 @@ static int opts_parse(struct opts *opts, int argc, char *argv[]) break; switch (c) { + case 'd': + opts->dry_run = opt_yes; + break; case 'h': opts->show_help = opt_yes; break; case 'l': opts->log_file = optarg; break; + case 's': + opts->start_daemon = opt_yes; + break; case 'V': opts->show_version = opt_yes; break; @@ -120,31 +131,6 @@ struct pb_cui { struct cui *cui; }; -static struct pb_cui *pb_from_cui(struct cui *cui) -{ - struct pb_cui *pb; - - assert(cui->c_sig == pb_cui_sig); - pb = cui->platform_info; - assert(pb->cui->c_sig == pb_cui_sig); - return pb; -} - -/** - * pb_kexec_cb - The kexec callback. - */ - -static int pb_kexec_cb(struct cui *cui, struct cui_opt_data *cod) -{ - struct pb_cui *pb = pb_from_cui(cui); - - pb_log("%s: %s\n", __func__, cod->name); - - assert(pb->cui->current == &pb->cui->main->scr); - - return pb_run_kexec(cod->kd); -} - /** * pb_mm_init - Setup the main menu instance. */ @@ -164,7 +150,9 @@ static struct pmenu *pb_mm_init(struct pb_cui *pb_cui) m->on_open = cui_on_open; - m->scr.frame.title = talloc_strdup(m, "Petitboot"); + m->scr.frame.title = talloc_asprintf(m, + "Petitboot (" PACKAGE_VERSION ")%s", + (pb_cui->cui->dry_run ? " (dry-run)" : "")); m->scr.frame.help = talloc_strdup(m, "ESC=exit, Enter=accept, e=edit, o=open"); m->scr.frame.status = talloc_strdup(m, "Welcome to Petitboot"); @@ -225,10 +213,9 @@ static void sig_handler(int signum) int main(int argc, char *argv[]) { static struct sigaction sa; - static struct opts opts; int result; int cui_result; - FILE *log; + struct opts opts; result = opts_parse(&opts, argc, argv); @@ -247,15 +234,19 @@ int main(int argc, char *argv[]) return EXIT_SUCCESS; } - log = fopen(opts.log_file, "a"); - assert(log); - pb_log_set_stream(log); + if (strcmp(opts.log_file, "-")) { + FILE *log = fopen(opts.log_file, "a"); + + assert(log); + pb_log_set_stream(log); + } else + pb_log_set_stream(stderr); #if defined(DEBUG) pb_log_always_flush(1); #endif - pb_log("--- pb-cui ---\n"); + pb_log("--- petitboot-nc ---\n"); sa.sa_handler = sig_handler; result = sigaction(SIGALRM, &sa, NULL); @@ -269,7 +260,7 @@ int main(int argc, char *argv[]) return EXIT_FAILURE; } - pb.cui = cui_init(&pb, pb_kexec_cb, NULL); + pb.cui = cui_init(&pb, NULL, opts.start_daemon, opts.dry_run); if (!pb.cui) return EXIT_FAILURE;