From: Jeremy Kerr Date: Thu, 24 Sep 2015 04:38:47 +0000 (+1000) Subject: discover: Set default language X-Git-Tag: v1.0.0~41 X-Git-Url: http://git.ozlabs.org/?p=petitboot;a=commitdiff_plain;h=519d84fe21d48fe277ef5cc65d29839f86b4e1a0 discover: Set default language Rather than setting NULL, do a setlocale(LC_ALL, NULL) to query the system locale value as our default. Signed-off-by: Jeremy Kerr --- diff --git a/discover/platform.c b/discover/platform.c index a6bd74c..5f448f1 100644 --- a/discover/platform.c +++ b/discover/platform.c @@ -3,6 +3,7 @@ #include #include +#include #include #include @@ -102,6 +103,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; @@ -110,7 +113,6 @@ void config_set_defaults(struct config *config) config->network.dns_servers = NULL; config->network.n_dns_servers = 0; config->safe_mode = false; - config->lang = NULL; config->allow_writes = true; config->disable_snapshots = false; @@ -126,6 +128,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)