X-Git-Url: http://git.ozlabs.org/?p=petitboot;a=blobdiff_plain;f=discover%2Fplatform.c;h=cc6306f035b96e622fb40026b780925279ac78fa;hp=a6bd74c7a0757b0a2f2de8da38eac4c5e9ce8e81;hb=d63bacef37d61b46e8db10914d4a7a677ba0775a;hpb=5b308c5680f349dd080f516f8c371efd67d496d5 diff --git a/discover/platform.c b/discover/platform.c index a6bd74c..cc6306f 100644 --- a/discover/platform.c +++ b/discover/platform.c @@ -3,6 +3,7 @@ #include #include +#include #include #include @@ -59,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); } } @@ -77,6 +79,19 @@ 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"); + + if (config->http_proxy) + pb_log(" HTTP Proxy: %s\n", config->http_proxy); + if (config->https_proxy) + pb_log(" HTTPS Proxy: %s\n", config->https_proxy); + pb_log(" language: %s\n", config->lang ?: ""); } @@ -102,6 +117,8 @@ static bool config_debug_on_cmdline(void) void config_set_defaults(struct config *config) { + const char *lang; + config->autoboot_enabled = true; config->autoboot_timeout_sec = 10; config->autoboot_enabled = true; @@ -109,11 +126,16 @@ void config_set_defaults(struct config *config) config->network.n_interfaces = 0; config->network.dns_servers = NULL; config->network.n_dns_servers = 0; + config->http_proxy = NULL; + config->https_proxy = NULL; config->safe_mode = false; - config->lang = NULL; 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); @@ -126,6 +148,14 @@ void config_set_defaults(struct config *config) config->ipmi_bootdev_persistent = false; config->debug = config_debug_on_cmdline(); + + lang = setlocale(LC_ALL, NULL); + pb_log("lang: %s\n", lang); + if (lang && strlen(lang)) + config->lang = talloc_strdup(config, lang); + else + config->lang = NULL; + } int platform_init(void *ctx)