]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
efi_loader: move codepage 437 table
authorHeinrich Schuchardt <xypron.glpk@gmx.de>
Sat, 27 Feb 2021 13:08:35 +0000 (14:08 +0100)
committerHeinrich Schuchardt <xypron.glpk@gmx.de>
Sun, 7 Mar 2021 16:37:12 +0000 (17:37 +0100)
Move the Unicode to codepage 437 table to charset.c

Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
include/charset.h
lib/charset.c
lib/efi_loader/efi_unicode_collation.c

index cc650a2ce707dc57525f7b95d7b930ab5c933248..64ba91f791410d0ce940c9bebec5e1f9e001e14f 100644 (file)
 
 #define MAX_UTF8_PER_UTF16 3
 
+/**
+ * codepage_437 - Unicode to codepage 437 translation table
+ */
+extern const u16 codepage_437[128];
+
 /**
  * console_read_unicode() - read Unicode code point from console
  *
index 2177014ee1c514e0efa7112d136c2ad17ff36880..814847d1654deeb4bf08ef4041851b0becd345cd 100644 (file)
@@ -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;
index f6c875bc33c61d46d9135314aa0fdb4da4266d4e..bf5314c4ff69953fde635387156c07d26b0145e1 100644 (file)
@@ -23,7 +23,7 @@ static const char illegal[] = "+,<=>:;\"/\\|?*[]\x7f";
 static const u16 codepage[] = CP1250;
 #else
 /* Unicode code points for code page 437 characters 0x80 - 0xff */
-static const u16 codepage[] = CP437;
+static const u16 *codepage = codepage_437;
 #endif
 
 /* GUID of the EFI_UNICODE_COLLATION_PROTOCOL2 */