mirror of
https://git.freebsd.org/ports.git
synced 2025-06-08 14:20:33 -04:00
This change adds a patch to disable the PMP for the sifive/fu540 target, which is a workaround to a PMP errata in the chip. The OpenSBI update itself is quite minor. Bump the dependent port, sysutils/u-boot-sifive-fu540. Reviewed by: lwhsu, kp Approved by: lwhsu (ports) Tested by: Klaus Küchemann (maciphone2@googlemail.com) Differential Revision: https://reviews.freebsd.org/D28471
11 lines
337 B
C
11 lines
337 B
C
--- platform/generic/platform.c.orig 2021-01-30 20:29:48 UTC
|
|
+++ platform/generic/platform.c
|
|
@@ -22,6 +22,8 @@
|
|
#include <sbi_utils/ipi/fdt_ipi.h>
|
|
#include <sbi_utils/reset/fdt_reset.h>
|
|
|
|
+int need_pmp_war = FALSE;
|
|
+
|
|
extern const struct platform_override sifive_fu540;
|
|
|
|
static const struct platform_override *special_platforms[] = {
|