Received: by mail.netbsd.org (Postfix, from userid 605) id 2D51684D8D; Thu, 7 Sep 2017 15:30:33 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id B303084CFB for ; Thu, 7 Sep 2017 15:30:32 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id MXkig2xaDjIk for ; Thu, 7 Sep 2017 15:30:32 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 1FF9284CE2 for ; Thu, 7 Sep 2017 15:30:32 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 1E5EEFA97; Thu, 7 Sep 2017 15:30:32 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1504798232162200" MIME-Version: 1.0 Date: Thu, 7 Sep 2017 15:30:32 +0000 From: "Jared D. McNeill" Subject: CVS commit: pkgsrc/sysutils/u-boot To: pkgsrc-changes@NetBSD.org Reply-To: jmcneill@netbsd.org X-Mailer: log_accum Message-Id: <20170907153032.1E5EEFA97@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1504798232162200 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: jmcneill Date: Thu Sep 7 15:30:32 UTC 2017 Modified Files: pkgsrc/sysutils/u-boot: u-boot-arm64.mk Log Message: Add an 'el1' pkg option for enabling CONFIG_ARMV8_SWITCH_TO_EL1 To generate a diff of this commit: cvs rdiff -u -r1.1 -r1.2 pkgsrc/sysutils/u-boot/u-boot-arm64.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1504798232162200 Content-Disposition: inline Content-Length: 887 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/sysutils/u-boot/u-boot-arm64.mk diff -u pkgsrc/sysutils/u-boot/u-boot-arm64.mk:1.1 pkgsrc/sysutils/u-boot/u-boot-arm64.mk:1.2 --- pkgsrc/sysutils/u-boot/u-boot-arm64.mk:1.1 Fri Sep 1 21:03:11 2017 +++ pkgsrc/sysutils/u-boot/u-boot-arm64.mk Thu Sep 7 15:30:31 2017 @@ -1,8 +1,17 @@ -# $NetBSD: u-boot-arm64.mk,v 1.1 2017/09/01 21:03:11 jmcneill Exp $ +# $NetBSD: u-boot-arm64.mk,v 1.2 2017/09/07 15:30:31 jmcneill Exp $ MAINTAINER= port-arm@NetBSD.org BUILD_DEPENDS+= cross-aarch64-none-elf-gcc-[0-9]*:../../cross/aarch64-none-elf-gcc UBOOT_ENV+= CROSS_COMPILE=${PREFIX}/cross-aarch64-none-elf/bin/aarch64-none-elf- +PKG_OPTIONS_VAR= PKG_OPTIONS.u-boot-${UBOOT_TARGET} +PKG_SUPPORTED_OPTIONS= el1 + +.include "../../mk/bsd.options.mk" + +.if !empty(PKG_OPTIONS:Mel1) +UBOOT_OPTIONS+= CONFIG_ARMV8_SWITCH_TO_EL1=y +.endif + .include "u-boot.mk" --_----------=_1504798232162200--