X-Git-Url: https://git.ozlabs.org/?a=blobdiff_plain;f=discover%2Fplatform.c;h=93cd05787406cf1d01dd51a6dd469c253b2636e6;hb=d9e70bb63227a683f808a21be20b3d5e1a474f95;hp=fc0930db29a1cd67d6223d891f9fa9a865e064e6;hpb=32d3249e252fe201eb81155cbf3b800ce5cf88e0;p=petitboot diff --git a/discover/platform.c b/discover/platform.c index fc0930d..93cd057 100644 --- a/discover/platform.c +++ b/discover/platform.c @@ -79,6 +79,14 @@ static void dump_config(struct config *config) pb_log(" IPMI boot device 0x%02x%s\n", config->ipmi_bootdev, config->ipmi_bootdev_persistent ? " (persistent)" : ""); + pb_log(" Modifications allowed to disks: %s\n", + config->allow_writes ? "yes" : "no"); + + pb_log(" Default UI to boot on: %s\n", + config->boot_console ?: "none set"); + if (config->manual_console) + pb_log(" (Manually set)\n"); + pb_log(" language: %s\n", config->lang ?: ""); } @@ -117,6 +125,10 @@ void config_set_defaults(struct config *config) config->allow_writes = true; config->disable_snapshots = false; + config->n_consoles = 0; + config->consoles = NULL; + config->boot_console = NULL; + config->n_autoboot_opts = 2; config->autoboot_opts = talloc_array(config, struct autoboot_option, config->n_autoboot_opts);