diff options
author | Tom Rini <trini@konsulko.com> | 2019-03-15 11:58:08 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2019-03-15 11:58:08 -0400 |
commit | 821aa1916ecc5116a6f80bcb8a73e70af5b99f4b (patch) | |
tree | 26c50e2617957d5fa5ca8023eea0ba64d4ae21b2 /lib/efi_selftest/efi_freestanding.c | |
parent | 9659eb46af6249b6e4b3712e60a1eb2e87fc48a1 (diff) | |
parent | e616100eab84464f09baa93b3fe5c15087a385c1 (diff) |
Merge tag 'efi-2019-04-rc4-3' of https://github.com/xypron2/u-boot
Pull request for UEFI system for v2019.04-rc4
Fix an error with the serial communication on boards with a very small
UART buffer which leads to a stalled system.
Provide an X86 reset driver for the UEFI runtime.
Fix a problem with parallel builds.
Diffstat (limited to 'lib/efi_selftest/efi_freestanding.c')
-rw-r--r-- | lib/efi_selftest/efi_freestanding.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/lib/efi_selftest/efi_freestanding.c b/lib/efi_selftest/efi_freestanding.c new file mode 100644 index 0000000000..4b6c27e99f --- /dev/null +++ b/lib/efi_selftest/efi_freestanding.c @@ -0,0 +1,11 @@ +// SPDX-License-Identifier: GPL-2.0+ +/* + * Library for freestanding binary + * + * Copyright 2019, Heinrich Schuchardt <xypron.glpk@gmx.de> + * + * GCC requires that freestanding programs provide memcpy(), memmove(), + * memset(), and memcmp(). + */ + +#include "../efi_loader/efi_freestanding.c" |