]> git.ozlabs.org Git - petitboot/blobdiff - discover/platform.c
lib/efi: Cleanup read/write routines
[petitboot] / discover / platform.c
index 93cd05787406cf1d01dd51a6dd469c253b2636e6..e69c6f6b5bebe9958a31c80c7f27727ae0cf1191 100644 (file)
@@ -87,6 +87,11 @@ static void dump_config(struct config *config)
        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 ?: "");
 }
@@ -121,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;
@@ -159,6 +166,7 @@ int platform_init(void *ctx)
        platform_ctx = talloc_new(ctx);
 
        for (p = &__start_platforms; p < &__stop_platforms; p++) {
+               pb_debug("%s: Try platform %s\n", __func__, (*p)->name);
                if (!(*p)->probe(*p, platform_ctx))
                        continue;
                platform = *p;