pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/sysutils/u-boot-pine-h64/patches
Module Name: pkgsrc
Committed By: jmcneill
Date: Thu May 31 20:20:00 UTC 2018
Added Files:
pkgsrc/sysutils/u-boot-pine-h64/patches:
patch-arch_arm_cpu_armv8_Kconfig patch-lib_bch.c
Log Message:
add missing patches
To generate a diff of this commit:
cvs rdiff -u -r0 -r1.1 \
pkgsrc/sysutils/u-boot-pine-h64/patches/patch-arch_arm_cpu_armv8_Kconfig \
pkgsrc/sysutils/u-boot-pine-h64/patches/patch-lib_bch.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Added files:
Index: pkgsrc/sysutils/u-boot-pine-h64/patches/patch-arch_arm_cpu_armv8_Kconfig
diff -u /dev/null pkgsrc/sysutils/u-boot-pine-h64/patches/patch-arch_arm_cpu_armv8_Kconfig:1.1
--- /dev/null Thu May 31 20:20:00 2018
+++ pkgsrc/sysutils/u-boot-pine-h64/patches/patch-arch_arm_cpu_armv8_Kconfig Thu May 31 20:20:00 2018
@@ -0,0 +1,15 @@
+$NetBSD: patch-arch_arm_cpu_armv8_Kconfig,v 1.1 2018/05/31 20:20:00 jmcneill Exp $
+
+--- arch/arm/cpu/armv8/Kconfig.orig 2018-01-23 06:50:34.000000000 +0000
++++ arch/arm/cpu/armv8/Kconfig
+@@ -132,6 +132,10 @@ config ARMV8_PSCI_CPUS_PER_CLUSTER
+ A value 0 or no definition of it works for single cluster system.
+ System with multi-cluster should difine their own exact value.
+
++config ARMV8_SWITCH_TO_EL1
++ bool "Switch to EL1 before booting kernel"
++ default n
++
+ if SYS_HAS_ARMV8_SECURE_BASE
+
+ config ARMV8_SECURE_BASE
Index: pkgsrc/sysutils/u-boot-pine-h64/patches/patch-lib_bch.c
diff -u /dev/null pkgsrc/sysutils/u-boot-pine-h64/patches/patch-lib_bch.c:1.1
--- /dev/null Thu May 31 20:20:00 2018
+++ pkgsrc/sysutils/u-boot-pine-h64/patches/patch-lib_bch.c Thu May 31 20:20:00 2018
@@ -0,0 +1,26 @@
+$NetBSD: patch-lib_bch.c,v 1.1 2018/05/31 20:20:00 jmcneill Exp $
+
+--- lib/bch.c.orig 2018-01-23 06:50:34.000000000 +0000
++++ lib/bch.c
+@@ -61,8 +61,11 @@
+ #include <linux/bitops.h>
+ #else
+ #include <errno.h>
+-#if defined(__FreeBSD__)
++#if defined(__FreeBSD__) || defined(__NetBSD__)
+ #include <sys/endian.h>
++#elif defined(__APPLE__)
++#include <machine/endian.h>
++#define htobe32 htonl
+ #else
+ #include <endian.h>
+ #endif
+@@ -117,7 +120,7 @@ struct gf_poly_deg1 {
+ };
+
+ #ifdef USE_HOSTCC
+-#if !defined(__DragonFly__) && !defined(__FreeBSD__)
++#if !defined(__DragonFly__) && !defined(__FreeBSD__) && !defined(__APPLE__)
+ static int fls(int x)
+ {
+ int r = 32;
Home |
Main Index |
Thread Index |
Old Index