diff options
author | Heinrich Schuchardt <xypron.glpk@gmx.de> | 2021-02-27 14:08:35 +0100 |
---|---|---|
committer | Heinrich Schuchardt <xypron.glpk@gmx.de> | 2021-03-07 17:37:12 +0100 |
commit | 70616a1ed8c7fe22aa19eb674915623bd236926f (patch) | |
tree | cb79eb8251582164aaec528bda11f443ee66a27b /lib/charset.c | |
parent | 997b57fc1a375811af84bc1d18a5e59957b2a937 (diff) | |
download | u-boot-70616a1ed8c7fe22aa19eb674915623bd236926f.tar.gz u-boot-70616a1ed8c7fe22aa19eb674915623bd236926f.tar.bz2 u-boot-70616a1ed8c7fe22aa19eb674915623bd236926f.zip |
efi_loader: move codepage 437 table
Move the Unicode to codepage 437 table to charset.c
Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
Diffstat (limited to 'lib/charset.c')
-rw-r--r-- | lib/charset.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/charset.c b/lib/charset.c index 2177014ee1..814847d165 100644 --- a/lib/charset.c +++ b/lib/charset.c @@ -8,9 +8,15 @@ #include <common.h> #include <charset.h> #include <capitalization.h> +#include <cp437.h> #include <efi_loader.h> #include <malloc.h> +/** + * codepage_437 - Unicode to codepage 437 translation table + */ +const u16 codepage_437[128] = CP437; + static struct capitalization_table capitalization_table[] = #ifdef CONFIG_EFI_UNICODE_CAPITALIZATION UNICODE_CAPITALIZATION_TABLE; |