diff options
author | Kyle K <kylek389@gmail.com> | 2020-01-27 17:10:23 -0600 |
---|---|---|
committer | Kyle K <kylek389@gmail.com> | 2020-01-27 17:10:23 -0600 |
commit | f4f7b4ac910b7d74daf7524f86833ce242e9aaa1 (patch) | |
tree | a414285c8e08c00c426f0c6f726c05c6b381424a /efitools-1.9.2-fixup-UNKNOWN_GLYPH.patch | |
parent | 10976d5eac561ca712aac29d3f5e5f50988af390 (diff) | |
download | gentoox-f4f7b4ac910b7d74daf7524f86833ce242e9aaa1.tar.gz gentoox-f4f7b4ac910b7d74daf7524f86833ce242e9aaa1.tar.bz2 gentoox-f4f7b4ac910b7d74daf7524f86833ce242e9aaa1.zip |
20200127 update
- provide script to build stage3 gcc graphite tarball
- linux 5.5
- use zstd10 for ISO
- enable UEFI booting
Diffstat (limited to 'efitools-1.9.2-fixup-UNKNOWN_GLYPH.patch')
-rw-r--r-- | efitools-1.9.2-fixup-UNKNOWN_GLYPH.patch | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/efitools-1.9.2-fixup-UNKNOWN_GLYPH.patch b/efitools-1.9.2-fixup-UNKNOWN_GLYPH.patch new file mode 100644 index 0000000..3b287bd --- /dev/null +++ b/efitools-1.9.2-fixup-UNKNOWN_GLYPH.patch @@ -0,0 +1,16 @@ +diff -Naru a/lib/console.c b/lib/console.c +--- a/lib/console.c 2019-11-28 13:59:02.099153788 +0100 ++++ b/lib/console.c 2019-11-28 13:59:42.209153890 +0100 +@@ -357,7 +357,11 @@ + { EFI_SECURITY_VIOLATION, L"Security Violation"}, + + // warnings +- { EFI_WARN_UNKOWN_GLYPH, L"Warning Unknown Glyph"}, ++#ifndef EFI_WARN_UNKOWN_GLYPH ++ { EFI_WARN_UNKNOWN_GLYPH, L"Warning Unknown Glyph"}, ++#else ++ { EFI_WARN_UNKOWN_GLYPH, L"Warning Unknown Glyph"}, ++#endif + { EFI_WARN_DELETE_FAILURE, L"Warning Delete Failure"}, + { EFI_WARN_WRITE_FAILURE, L"Warning Write Failure"}, + { EFI_WARN_BUFFER_TOO_SMALL, L"Warning Buffer Too Small"} |