mirror of
https://xff.cz/git/u-boot/
synced 2025-09-01 08:42:12 +02:00
efi_loader: fix setting PlatformLang
The UEFI variables PlatformLang and PlatformLangCodes specify the current firmware language and the list of all available languages. Currently their values are hard coded. With the patch a new configuration variable EFI_PLATFORM_LANG_CODES is provided. When initializing the UEFI subsystem this configuration variable is used to initialize PlatformLangCodes. The value of variable PlatformLang is read. If it is not set, the first language specified in EFI_PLATFORM_LANG_CODES is used to initialize PlatformLang. Suggested-by: Takahiro Akashi <takahiro.akashi@linaro.org> Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
This commit is contained in:
@@ -10,27 +10,21 @@
|
||||
|
||||
#define OBJ_LIST_NOT_INITIALIZED 1
|
||||
|
||||
/* Language code for American English according to RFC 4646 */
|
||||
#define EN_US L"en-US"
|
||||
|
||||
static efi_status_t efi_obj_list_initialized = OBJ_LIST_NOT_INITIALIZED;
|
||||
|
||||
/* Initialize and populate EFI object list */
|
||||
efi_status_t efi_init_obj_list(void)
|
||||
/**
|
||||
* efi_init_platform_lang() - define supported languages
|
||||
*
|
||||
* Set the PlatformLangCodes and PlatformLang variables.
|
||||
*
|
||||
* Return: status code
|
||||
*/
|
||||
static efi_status_t efi_init_platform_lang(void)
|
||||
{
|
||||
efi_status_t ret = EFI_SUCCESS;
|
||||
|
||||
/*
|
||||
* Variable PlatformLang defines the language that the machine has been
|
||||
* configured for.
|
||||
*/
|
||||
ret = EFI_CALL(efi_set_variable(L"PlatformLang",
|
||||
&efi_global_variable_guid,
|
||||
EFI_VARIABLE_BOOTSERVICE_ACCESS |
|
||||
EFI_VARIABLE_RUNTIME_ACCESS,
|
||||
sizeof(EN_US), EN_US));
|
||||
if (ret != EFI_SUCCESS)
|
||||
goto out;
|
||||
efi_status_t ret;
|
||||
efi_uintn_t data_size = 0;
|
||||
char *lang = CONFIG_EFI_PLATFORM_LANG_CODES;
|
||||
char *pos;
|
||||
|
||||
/*
|
||||
* Variable PlatformLangCodes defines the language codes that the
|
||||
@@ -40,14 +34,62 @@ efi_status_t efi_init_obj_list(void)
|
||||
&efi_global_variable_guid,
|
||||
EFI_VARIABLE_BOOTSERVICE_ACCESS |
|
||||
EFI_VARIABLE_RUNTIME_ACCESS,
|
||||
sizeof(EN_US), EN_US));
|
||||
sizeof(CONFIG_EFI_PLATFORM_LANG_CODES),
|
||||
CONFIG_EFI_PLATFORM_LANG_CODES));
|
||||
if (ret != EFI_SUCCESS)
|
||||
goto out;
|
||||
|
||||
/*
|
||||
* Variable PlatformLang defines the language that the machine has been
|
||||
* configured for.
|
||||
*/
|
||||
ret = EFI_CALL(efi_get_variable(L"PlatformLang",
|
||||
&efi_global_variable_guid,
|
||||
NULL, &data_size, &pos));
|
||||
if (ret == EFI_BUFFER_TOO_SMALL) {
|
||||
/* The variable is already set. Do not change it. */
|
||||
ret = EFI_SUCCESS;
|
||||
goto out;
|
||||
}
|
||||
|
||||
/*
|
||||
* The list of supported languages is semicolon separated. Use the first
|
||||
* language to initialize PlatformLang.
|
||||
*/
|
||||
pos = strchr(lang, ';');
|
||||
if (pos)
|
||||
*pos = 0;
|
||||
|
||||
ret = EFI_CALL(efi_set_variable(L"PlatformLang",
|
||||
&efi_global_variable_guid,
|
||||
EFI_VARIABLE_NON_VOLATILE |
|
||||
EFI_VARIABLE_BOOTSERVICE_ACCESS |
|
||||
EFI_VARIABLE_RUNTIME_ACCESS,
|
||||
1 + strlen(lang), lang));
|
||||
out:
|
||||
if (ret != EFI_SUCCESS)
|
||||
printf("EFI: cannot initialize platform language settings\n");
|
||||
return ret;
|
||||
}
|
||||
|
||||
/**
|
||||
* efi_init_obj_list() - Initialize and populate EFI object list
|
||||
*
|
||||
* Return: status code
|
||||
*/
|
||||
efi_status_t efi_init_obj_list(void)
|
||||
{
|
||||
efi_status_t ret = EFI_SUCCESS;
|
||||
|
||||
/* Initialize once only */
|
||||
if (efi_obj_list_initialized != OBJ_LIST_NOT_INITIALIZED)
|
||||
return efi_obj_list_initialized;
|
||||
|
||||
/* Define supported languages */
|
||||
ret = efi_init_platform_lang();
|
||||
if (ret != EFI_SUCCESS)
|
||||
goto out;
|
||||
|
||||
/* Initialize system table */
|
||||
ret = efi_initialize_system_table();
|
||||
if (ret != EFI_SUCCESS)
|
||||
|
Reference in New Issue
Block a user