View | Details | Raw Unified | Return to bug 230043
Collapse All | Expand All

(-)i/sysutils/flashrom/Makefile (-4 / +6 lines)
Lines 12-19 COMMENT= Utility for reading, writing, verifying, and erasing flash ROM chips Link Here
12
LICENSE=	GPLv2
12
LICENSE=	GPLv2
13
LICENSE_FILE=	${WRKSRC}/COPYING
13
LICENSE_FILE=	${WRKSRC}/COPYING
14
14
15
ONLY_FOR_ARCHS=	amd64 i386
16
17
LIB_DEPENDS=	libpci.so:devel/libpci
15
LIB_DEPENDS=	libpci.so:devel/libpci
18
16
19
USES=		gmake tar:bzip2
17
USES=		gmake tar:bzip2
Lines 24-31 PLIST_FILES= bin/flashrom \ Link Here
24
		man/man8/flashrom.8.gz
22
		man/man8/flashrom.8.gz
25
PORTDOCS=	*
23
PORTDOCS=	*
26
24
27
OPTIONS_DEFINE=		BUSPIRATE DMIDECODE DOCS FTDI
25
OPTIONS_DEFINE=		BUSPIRATE DOCS FTDI
28
OPTIONS_DEFAULT=	DMIDECODE FTDI
26
OPTIONS_DEFINE_amd64=	DMIDECODE
27
OPTIONS_DEFINE_i386=	DMIDECODE
28
OPTIONS_DEFAULT=	FTDI
29
OPTIONS_DEFAULT_amd64=	DMIDECODE
30
OPTIONS_DEFAULT_i386=	DMIDECODE
29
31
30
BUSPIRATE_DESC=		Enable buspirate support (broken)
32
BUSPIRATE_DESC=		Enable buspirate support (broken)
31
DMIDECODE_DESC=		Use dmidecode to gather DMI information
33
DMIDECODE_DESC=		Use dmidecode to gather DMI information
(-)i/sysutils/flashrom/files/patch-hwaccess.h (+11 lines)
Added Link Here
1
--- hwaccess.h.orig	2018-07-25 12:39:14 UTC
2
+++ hwaccess.h
3
@@ -79,7 +79,7 @@
4
 /* ARM can be either endian. */
5
 #if defined (__ARMEB__)
6
 #define __FLASHROM_BIG_ENDIAN__ 1
7
-#elif defined (__ARMEL__)
8
+#elif defined (__ARMEL__) || defined (__aarch64__)
9
 #define __FLASHROM_LITTLE_ENDIAN__ 1
10
 #endif
11
 

Return to bug 230043