diff options
author | Bin Meng <bmeng.cn@gmail.com> | 2016-08-25 01:47:17 -0700 |
---|---|---|
committer | Bin Meng <bmeng.cn@gmail.com> | 2016-08-30 09:26:05 +0800 |
commit | 3dc51ab0e15180fa761c8072120c591b4693b3c8 (patch) | |
tree | a0b6fc4be44dd69b0cf8939a59ffe7909ff9e6b4 /lib/efi | |
parent | 4cc00f0611c4b491f6dd1f6a5582d24a41f12769 (diff) |
x86: efi: payload: Make EFI payload build again
Since commit 73c5c39 "Makefile: Drop unnecessary -dtb suffixes",
EFI payload does not build anymore. This fixes the build.
Signed-off-by: Bin Meng <bmeng.cn@gmail.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'lib/efi')
-rw-r--r-- | lib/efi/efi_stub.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/efi/efi_stub.c b/lib/efi/efi_stub.c index 8b4bb4e78fe..18149605728 100644 --- a/lib/efi/efi_stub.c +++ b/lib/efi/efi_stub.c @@ -354,9 +354,9 @@ efi_status_t efi_main(efi_handle_t image, struct efi_system_table *sys_table) /* The EFI UART won't work now, switch to a debug one */ use_uart = true; - memcpy((void *)CONFIG_SYS_TEXT_BASE, _binary_u_boot_dtb_bin_start, - (ulong)_binary_u_boot_dtb_bin_end - - (ulong)_binary_u_boot_dtb_bin_start); + memcpy((void *)CONFIG_SYS_TEXT_BASE, _binary_u_boot_bin_start, + (ulong)_binary_u_boot_bin_end - + (ulong)_binary_u_boot_bin_start); #ifdef DEBUG puts("EFI table at "); |