diff options
| author | jmcneill <jmcneill@NetBSD.org> | 2021-01-09 13:19:27 +0000 |
|---|---|---|
| committer | jmcneill <jmcneill@NetBSD.org> | 2021-01-09 13:19:27 +0000 |
| commit | 968c633fcf757c6c8462267f4986daa88fe52b34 (patch) | |
| tree | e08a860ef7496c0e11b47730a0966aa2333d95f5 /sys/stand | |
| parent | 9d757146addcb472dfa825ae56681ee44bf2d141 (diff) | |
Flush from kernel start, not the entry point.
Diffstat (limited to 'sys/stand')
| -rw-r--r-- | sys/stand/efiboot/bootaa64/efibootaa64.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/stand/efiboot/bootaa64/efibootaa64.c b/sys/stand/efiboot/bootaa64/efibootaa64.c index 13d1931a103..e8f17cef3c1 100644 --- a/sys/stand/efiboot/bootaa64/efibootaa64.c +++ b/sys/stand/efiboot/bootaa64/efibootaa64.c @@ -1,4 +1,4 @@ -/* $NetBSD: efibootaa64.c,v 1.4 2021/01/09 13:15:15 jmcneill Exp $ */ +/* $NetBSD: efibootaa64.c,v 1.5 2021/01/09 13:19:27 jmcneill Exp $ */ /*- * Copyright (c) 2016 Kimihiro Nonaka <nonaka@netbsd.org> @@ -56,7 +56,7 @@ efi_boot_kernel(u_long marks[MARK_MAX]) fdt_start = (u_long)efi_fdt_data(); fdt_size = efi_fdt_size(); - aarch64_dcache_wbinv_range(kernel_entry, kernel_size); + aarch64_dcache_wbinv_range(kernel_start, kernel_size); if (efi_fdt_size() > 0) { aarch64_dcache_wbinv_range(fdt_start, fdt_size); } |
