diff options
author | Heinrich Schuchardt <xypron.glpk@gmx.de> | 2017-12-11 20:10:20 +0100 |
---|---|---|
committer | Alexander Graf <agraf@suse.de> | 2018-01-22 23:09:12 +0100 |
commit | 05b6f56ead11f6a530b0cbdbd60e45f3b3cfcb07 (patch) | |
tree | 0d5dd8076dcc41d64745966f667e215ad2efb4e4 /lib | |
parent | af3106a12dd5d3a315f9f68b5fc0002c09f54d54 (diff) | |
download | u-boot-05b6f56ead11f6a530b0cbdbd60e45f3b3cfcb07.zip u-boot-05b6f56ead11f6a530b0cbdbd60e45f3b3cfcb07.tar.gz u-boot-05b6f56ead11f6a530b0cbdbd60e45f3b3cfcb07.tar.bz2 |
efi_loader: use wide string do define firmware vendor
As the U-Boot is compiled with -fshort-wchar we can define
the firmware vendor constant as wide string.
Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
Signed-off-by: Alexander Graf <agraf@suse.de>
Diffstat (limited to 'lib')
-rw-r--r-- | lib/efi_loader/efi_boottime.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/efi_loader/efi_boottime.c b/lib/efi_loader/efi_boottime.c index b90bd0b..02bc9fd 100644 --- a/lib/efi_loader/efi_boottime.c +++ b/lib/efi_loader/efi_boottime.c @@ -2201,8 +2201,7 @@ static const struct efi_boot_services efi_boot_services = { }; -static uint16_t __efi_runtime_data firmware_vendor[] = - { 'D','a','s',' ','U','-','b','o','o','t',0 }; +static uint16_t __efi_runtime_data firmware_vendor[] = L"Das U-Boot"; struct efi_system_table __efi_runtime_data systab = { .hdr = { |