X-Git-Url: http://git.ozlabs.org/?p=petitboot;a=blobdiff_plain;f=discover%2Fplatform.c;h=254da979b41e2cc8157ba39f0ad9734979d43498;hp=5f448f1a4a1ba92c9111b7826b074f4da3186f74;hb=ce54f866b2b9e48bab73acd73b4c05a057f9ddca;hpb=519d84fe21d48fe277ef5cc65d29839f86b4e1a0 diff --git a/discover/platform.c b/discover/platform.c index 5f448f1..254da97 100644 --- a/discover/platform.c +++ b/discover/platform.c @@ -60,6 +60,7 @@ static void dump_config(struct config *config) pb_log(" static:\n"); pb_log(" ip: %s\n", ifconf->static_config.address); pb_log(" gw: %s\n", ifconf->static_config.gateway); + pb_log(" url: %s\n", ifconf->static_config.url); } } @@ -78,6 +79,12 @@ 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_tty ?: "none set"); + pb_log(" language: %s\n", config->lang ?: ""); } @@ -116,6 +123,10 @@ void config_set_defaults(struct config *config) config->allow_writes = true; config->disable_snapshots = false; + config->n_tty = 0; + config->tty_list = NULL; + config->boot_tty = NULL; + config->n_autoboot_opts = 2; config->autoboot_opts = talloc_array(config, struct autoboot_option, config->n_autoboot_opts);