X-Git-Url: http://git.ozlabs.org/?p=petitboot;a=blobdiff_plain;f=discover%2Fplatform.c;h=cc6306f035b96e622fb40026b780925279ac78fa;hp=95a905d6ec82eac746c1bd6d38f928d34c4f4aa1;hb=d63bacef37d61b46e8db10914d4a7a677ba0775a;hpb=9f42e56fc5968fcb34edfad017adb73960c2bb61 diff --git a/discover/platform.c b/discover/platform.c index 95a905d..cc6306f 100644 --- a/discover/platform.c +++ b/discover/platform.c @@ -84,6 +84,13 @@ static void dump_config(struct config *config) 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 ?: ""); @@ -119,6 +126,8 @@ 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->allow_writes = true; config->disable_snapshots = false;