pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/sysutils



Module Name:    pkgsrc
Committed By:   jmcneill
Date:           Sat May 26 17:51:33 UTC 2018

Modified Files:
        pkgsrc/sysutils: Makefile
Added Files:
        pkgsrc/sysutils/arm-trusted-firmware-sun50i-h6: DESCR Makefile PLIST
            buildlink3.mk distinfo

Log Message:
Initial import of arm-trusted-firmware-sun50i-h6 version 20180207.

ARM Trusted Firmware (ATF) provides a reference implementation of secure
world software for ARMv8-A, including a Secure Monitor executing at
Exception Level 3 (EL3). It implements various ARM interface standards,
such as:

    The Power State Coordination Interface (PSCI)
    Trusted Board Boot Requirements (TBBR, ARM DEN0006C-1)
    SMC Calling Convention
    System Control and Management Interface

As far as possible the code is designed for reuse or porting to other
ARMv8-A model and hardware platforms.

ARM will continue development in collaboration with interested parties to
provide a full reference implementation of Secure Monitor code and ARM
standards to the benefit of all developers working with ARMv8-A TrustZone
technology.

This package provides ATF for Allwinner H6 family SoCs.


To generate a diff of this commit:
cvs rdiff -u -r1.758 -r1.759 pkgsrc/sysutils/Makefile
cvs rdiff -u -r0 -r1.1 pkgsrc/sysutils/arm-trusted-firmware-sun50i-h6/DESCR \
    pkgsrc/sysutils/arm-trusted-firmware-sun50i-h6/Makefile \
    pkgsrc/sysutils/arm-trusted-firmware-sun50i-h6/PLIST \
    pkgsrc/sysutils/arm-trusted-firmware-sun50i-h6/buildlink3.mk \
    pkgsrc/sysutils/arm-trusted-firmware-sun50i-h6/distinfo

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/sysutils/Makefile
diff -u pkgsrc/sysutils/Makefile:1.758 pkgsrc/sysutils/Makefile:1.759
--- pkgsrc/sysutils/Makefile:1.758      Fri May 18 17:08:12 2018
+++ pkgsrc/sysutils/Makefile    Sat May 26 17:51:33 2018
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.758 2018/05/18 17:08:12 youri Exp $
+# $NetBSD: Makefile,v 1.759 2018/05/26 17:51:33 jmcneill Exp $
 #
 
 COMMENT=       System utilities
@@ -21,6 +21,7 @@ SUBDIR+=      amtterm
 SUBDIR+=       ansible
 SUBDIR+=       ansible2
 SUBDIR+=       apcupsd
+SUBDIR+=       arm-trusted-firmware-sun50i-h6
 SUBDIR+=       arm-trusted-firmware-sun50iw1p1
 SUBDIR+=       asapm
 SUBDIR+=       atitvout

Added files:

Index: pkgsrc/sysutils/arm-trusted-firmware-sun50i-h6/DESCR
diff -u /dev/null pkgsrc/sysutils/arm-trusted-firmware-sun50i-h6/DESCR:1.1
--- /dev/null   Sat May 26 17:51:33 2018
+++ pkgsrc/sysutils/arm-trusted-firmware-sun50i-h6/DESCR        Sat May 26 17:51:33 2018
@@ -0,0 +1,19 @@
+ARM Trusted Firmware (ATF) provides a reference implementation of secure
+world software for ARMv8-A, including a Secure Monitor executing at
+Exception Level 3 (EL3). It implements various ARM interface standards,
+such as:
+
+    The Power State Coordination Interface (PSCI)
+    Trusted Board Boot Requirements (TBBR, ARM DEN0006C-1)
+    SMC Calling Convention
+    System Control and Management Interface
+
+As far as possible the code is designed for reuse or porting to other
+ARMv8-A model and hardware platforms.
+
+ARM will continue development in collaboration with interested parties to
+provide a full reference implementation of Secure Monitor code and ARM
+standards to the benefit of all developers working with ARMv8-A TrustZone
+technology.
+
+This package provides ATF for Allwinner H6 family SoCs.
Index: pkgsrc/sysutils/arm-trusted-firmware-sun50i-h6/Makefile
diff -u /dev/null pkgsrc/sysutils/arm-trusted-firmware-sun50i-h6/Makefile:1.1
--- /dev/null   Sat May 26 17:51:33 2018
+++ pkgsrc/sysutils/arm-trusted-firmware-sun50i-h6/Makefile     Sat May 26 17:51:33 2018
@@ -0,0 +1,33 @@
+# $NetBSD: Makefile,v 1.1 2018/05/26 17:51:33 jmcneill Exp $
+
+VERSION=       20180207
+GITHUB_PROJECT=        arm-trusted-firmware
+GITHUB_TAG=    406a637162bee1f1b0c26525c3aae204aac241fa
+
+PKGNAME=       ${GITHUB_PROJECT}-sun50i-h6-${VERSION}
+DISTNAME=      ${PKGNAME}
+CATEGORIES=    sysutils
+MASTER_SITES=  ${MASTER_SITE_GITHUB:=Icenowy/}
+EXTRACT_SUFX=  .zip
+
+MAINTAINER=    port-arm%NetBSD.org@localhost
+HOMEPAGE=      https://github.com/Icenowy/arm-trusted-firmware/
+COMMENT=       ARM Trusted Firmware for Allwinner H6 SoCs
+LICENSE=       modified-bsd
+
+USE_TOOLS+=    gmake
+
+MAKE_FLAGS+=   CROSS_COMPILE=${PREFIX}/cross-aarch64-none-elf/bin/aarch64-none-elf-
+MAKE_FLAGS+=   PLAT=sun50i_h6
+MAKE_FLAGS+=   DEBUG=1
+MAKE_FLAGS+=   BUILD_STRING=${GITHUB_TAG}
+BUILD_TARGET=  bl31
+
+BUILD_DEPENDS+=        cross-aarch64-none-elf-gcc-[0-9]*:../../cross/aarch64-none-elf-gcc
+
+do-install:
+       ${INSTALL_DATA_DIR} ${DESTDIR}${PREFIX}/share/arm-trusted-firmware/sun50i-h6
+       ${INSTALL_DATA} ${WRKSRC}/build/sun50i_h6/debug/bl31.bin \
+           ${DESTDIR}${PREFIX}/share/arm-trusted-firmware/sun50i-h6
+
+.include "../../mk/bsd.pkg.mk"
Index: pkgsrc/sysutils/arm-trusted-firmware-sun50i-h6/PLIST
diff -u /dev/null pkgsrc/sysutils/arm-trusted-firmware-sun50i-h6/PLIST:1.1
--- /dev/null   Sat May 26 17:51:33 2018
+++ pkgsrc/sysutils/arm-trusted-firmware-sun50i-h6/PLIST        Sat May 26 17:51:33 2018
@@ -0,0 +1,2 @@
+@comment $NetBSD: PLIST,v 1.1 2018/05/26 17:51:33 jmcneill Exp $
+share/arm-trusted-firmware/sun50i-h6/bl31.bin
Index: pkgsrc/sysutils/arm-trusted-firmware-sun50i-h6/buildlink3.mk
diff -u /dev/null pkgsrc/sysutils/arm-trusted-firmware-sun50i-h6/buildlink3.mk:1.1
--- /dev/null   Sat May 26 17:51:33 2018
+++ pkgsrc/sysutils/arm-trusted-firmware-sun50i-h6/buildlink3.mk        Sat May 26 17:51:33 2018
@@ -0,0 +1,14 @@
+# $NetBSD: buildlink3.mk,v 1.1 2018/05/26 17:51:33 jmcneill Exp $
+
+BUILDLINK_DEPMETHOD.arm-trusted-firmware-sun50i-h6?=   build
+
+BUILDLINK_TREE+=       arm-trusted-firmware-sun50i-h6
+
+.if !defined(ARM_TRUSTED_FIRMWARE_SUN50I_H6_BUILDLINK3_MK)
+ARM_TRUSTED_FIRMWARE_SUN50I_H6_BUILDLINK3_MK:=
+
+BUILDLINK_API_DEPENDS.arm-trusted-firmware-sun50i-h6+= arm-trusted-firmware-sun50i-h6>=20180207
+BUILDLINK_PKGSRCDIR.arm-trusted-firmware-sun50i-h6?=   ../../sysutils/arm-trusted-firmware-sun50i-h6
+.endif # ARM_TRUSTED_FIRMWARE_SUN50I_H6_BUILDLINK3_MK
+
+BUILDLINK_TREE+=       -arm-trusted-firmware-sun50i-h6
Index: pkgsrc/sysutils/arm-trusted-firmware-sun50i-h6/distinfo
diff -u /dev/null pkgsrc/sysutils/arm-trusted-firmware-sun50i-h6/distinfo:1.1
--- /dev/null   Sat May 26 17:51:33 2018
+++ pkgsrc/sysutils/arm-trusted-firmware-sun50i-h6/distinfo     Sat May 26 17:51:33 2018
@@ -0,0 +1,6 @@
+$NetBSD: distinfo,v 1.1 2018/05/26 17:51:33 jmcneill Exp $
+
+SHA1 (arm-trusted-firmware-sun50i-h6-20180207-406a637162bee1f1b0c26525c3aae204aac241fa.zip) = 57cb3ee8bbcd225e3b643bc57676a85fd413e77a
+RMD160 (arm-trusted-firmware-sun50i-h6-20180207-406a637162bee1f1b0c26525c3aae204aac241fa.zip) = 60a903dfbb523ef09c9c052cbc77bcf21efe7a67
+SHA512 (arm-trusted-firmware-sun50i-h6-20180207-406a637162bee1f1b0c26525c3aae204aac241fa.zip) = 
6f9b7b27b1d449a313b7b04b400f463356018b446e6e7c3cf20f6ee9625231d39d2e1bbe35049eb2c992a7b9c1e902e69e2ffb8b207a8c7bec577eae2fe1e472
+Size (arm-trusted-firmware-sun50i-h6-20180207-406a637162bee1f1b0c26525c3aae204aac241fa.zip) = 3330975 bytes



Home | Main Index | Thread Index | Old Index