mirror of
https://github.com/u-boot/u-boot.git
synced 2025-05-08 19:11:53 +00:00
efi_loader: DEL is an illegal file name character
According to the FAT32 specification 0x7f (DEL) is not a legal character for file names. Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
This commit is contained in:
parent
1f1075c6e3
commit
2d51bd2926
1 changed files with 1 additions and 1 deletions
|
@ -12,7 +12,7 @@
|
|||
#include <efi_loader.h>
|
||||
|
||||
/* Characters that may not be used in file names */
|
||||
static const char illegal[] = "<>:\"/\\|?*";
|
||||
static const char illegal[] = "<>:\"/\\|?*\x7f";
|
||||
|
||||
/*
|
||||
* EDK2 assumes codepage 1250 when creating FAT 8.3 file names.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue