From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from foss.arm.com (foss.arm.com [217.140.110.172]) by mx.groups.io with SMTP id smtpd.web12.8955.1622042188821861957 for ; Wed, 26 May 2021 08:16:28 -0700 Authentication-Results: mx.groups.io; dkim=missing; spf=pass (domain: arm.com, ip: 217.140.110.172, mailfrom: ross.burton@arm.com) Received: from usa-sjc-imap-foss1.foss.arm.com (unknown [10.121.207.14]) by usa-sjc-mx-foss1.foss.arm.com (Postfix) with ESMTP id 50CC51692 for ; Wed, 26 May 2021 08:16:28 -0700 (PDT) Received: from oss-tx204.lab.cambridge.arm.com (usa-sjc-imap-foss1.foss.arm.com [10.121.207.14]) by usa-sjc-imap-foss1.foss.arm.com (Postfix) with ESMTPSA id EBDC53F73D for ; Wed, 26 May 2021 08:16:27 -0700 (PDT) From: "Ross Burton" To: meta-arm@lists.yoctoproject.org Subject: [PATCH 3/6] arm/fvp-library: add recipe for the FVP Library Date: Wed, 26 May 2021 16:16:15 +0100 Message-Id: <20210526151618.170014-3-ross.burton@arm.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20210526151618.170014-1-ross.burton@arm.com> References: <20210526151618.170014-1-ross.burton@arm.com> MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Add a recipe for the FVP Library: https://developer.arm.com/tools-and-software/simulation-models/fixed-virt= ual-platforms This is free to download but is behind a login-wall, and the FVPs are license managed. Change-Id: Ia0e7b1bfac54e06faf9d517d5b769acf9670724a Signed-off-by: Ross Burton --- meta-arm/recipes-devtools/fvp/fvp-library.bb | 22 ++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 meta-arm/recipes-devtools/fvp/fvp-library.bb diff --git a/meta-arm/recipes-devtools/fvp/fvp-library.bb b/meta-arm/reci= pes-devtools/fvp/fvp-library.bb new file mode 100644 index 0000000..13bf778 --- /dev/null +++ b/meta-arm/recipes-devtools/fvp/fvp-library.bb @@ -0,0 +1,22 @@ +require fvp-ecosystem.inc + +MODEL =3D "Library" +MODEL_CODE =3D "FVP_ARM_Std_Library" +PV =3D "11.14_21" + +HOMEPAGE =3D "https://developer.arm.com/tools-and-software/simulation-mo= dels/fixed-virtual-platforms" + +LIC_FILES_CHKSUM =3D "file://license_terms/license_agreement.txt;md5=3Da= 50d186fffa51ed55599183aad911298 \ + file://license_terms/third_party_licenses.txt;md5=3D= b40ecbbbd3409d48263437b782df6df9" + + +# The FVP Library tarball cannot be downloaded directly, so download the= it +# yourself from from the homepage and set FVP_LIBRARY_TARBALL_URI approp= riately +# (for example, "file:///home/user/FVP_ARM_Std_Library_11.14_21.tgz"). +FVP_LIBRARY_TARBALL_URI ?=3D "" + +SRC_URI =3D "${FVP_LIBRARY_TARBALL_URI};subdir=3D${BP}" +python() { + if not d.getVar("FVP_LIBRARY_TARBALL_URI"): + raise bb.parse.SkipRecipe("FVP_LIBRARY_TARBALL_URI not set") +} --=20 2.25.1