From mboxrd@z Thu Jan 1 00:00:00 1970 Authentication-Results: mx.groups.io; dkim=pass header.i=@linaro.org header.s=google header.b=odWHB4tc; spf=pass (domain: linaro.org, ip: 209.85.128.67, mailfrom: leif.lindholm@linaro.org) Received: from mail-wm1-f67.google.com (mail-wm1-f67.google.com [209.85.128.67]) by groups.io with SMTP; Thu, 26 Sep 2019 15:26:20 -0700 Received: by mail-wm1-f67.google.com with SMTP id r17so7602874wme.0 for ; Thu, 26 Sep 2019 15:26:19 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linaro.org; s=google; h=date:from:to:subject:message-id:references:mime-version :content-disposition:in-reply-to:user-agent; bh=DOLjWhKWorYjYgURdv+KAebpuSG6aSvXAr8zGfYiDCQ=; b=odWHB4tc3payO+vdylHPs7wl4rHL4th8lk/Fqisq2Pu4sNlQ0b6Ldut1MYf84rrBex /PL7cK/lPUOOmZUPrKFb2+Snj2GMDuyqna92WMNXIEbWHmr5RPtsBHlUYXjany00u1b8 PpCpJDsiBFfRlUE8Uj3ZxApsMz1ropUQfkusogWZYSE9N1dP1Mt5QLV/3xgOfdDYlaPB E3MOb/IKDKQkyOvon26BoNS6KD42Ih/xHojPWofDHM+F8bYaY//mrw5VeqLS7oIv9nMl zIPH9JMo1h11cu+qpiCEIK+VhloHDePtLDsUQ1tmJ6i6B2OrGrNPMSLr6hrMHeXpZey6 bmNQ== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:date:from:to:subject:message-id:references :mime-version:content-disposition:in-reply-to:user-agent; bh=DOLjWhKWorYjYgURdv+KAebpuSG6aSvXAr8zGfYiDCQ=; b=IZ9gVU35AQ6Za+kbPoQ9yXT6w3Q2mMTjNR6WXGvTBMoAiFjaNsiOz4G12Dq4befryA Bfo6CDHpqpcPYr12neXWmxid0W+W5rQQfEN/BXts85yVrwjBmM2MLJ9g+MuXOh10Kcas OxzPNe6ipwpcaKW5cDN+SPMv2jdby3FszkCNGLIUnjiWY7jesx4RBbwBcXKJDjbqzcO0 QZb+Iuoc+zXx7hMQGpsVuxvynp7m4Xx/Vxwh7RtBKUMTTmaqn4Y6KP1Lx0faGpP/VGeV CB3ubH7HioWuZ9uiujyFVhK0FV88/KWDxoiOVxcHHG0tJhM1ZjOn5i8LC8rkLrbkL9K5 H7mA== X-Gm-Message-State: APjAAAWTpKo80Ri/07M+btD6YeDKIcKbZiyNM64STQVB+c/+8K2uJkiD eMbZfntTi4nBZ8av/PNqxuRqXDNU8Ju7Aw== X-Google-Smtp-Source: APXvYqzTPXJPfNUjvJ2KONe+kEo41sAfwMaB7syIy+ynHl+656T739XBA+T7f/ulD7iI3Fu7/FUPYw== X-Received: by 2002:a7b:c4c9:: with SMTP id g9mr5119790wmk.150.1569536778383; Thu, 26 Sep 2019 15:26:18 -0700 (PDT) Return-Path: Received: from bivouac.eciton.net (bivouac.eciton.net. [2a00:1098:0:86:1000:23:0:2]) by smtp.gmail.com with ESMTPSA id f17sm610807wru.29.2019.09.26.15.26.17 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Thu, 26 Sep 2019 15:26:17 -0700 (PDT) Date: Thu, 26 Sep 2019 23:26:16 +0100 From: "Leif Lindholm" To: devel@edk2.groups.io, abner.chang@hpe.com Subject: Re: [edk2-devel] [edk2-staging/RISC-V-V2 PATCH v2 01/29] RiscVPkg: RISC-V processor package. Message-ID: <20190926222616.GC25504@bivouac.eciton.net> References: <1569198715-31552-1-git-send-email-abner.chang@hpe.com> <1569198715-31552-2-git-send-email-abner.chang@hpe.com> MIME-Version: 1.0 In-Reply-To: <1569198715-31552-2-git-send-email-abner.chang@hpe.com> User-Agent: Mutt/1.10.1 (2018-07-13) Content-Type: text/plain; charset=us-ascii Content-Disposition: inline On Mon, Sep 23, 2019 at 08:31:26AM +0800, Abner Chang wrote: > - Add RiscVPkg package which provides RISC-V processor related > drivers and libraries. > - Support RISC-V OpenSBI and RISC-V platforms > > Signed-off-by: Abner Chang > --- > RiscVPkg/RiscVPkg.dec | 27 +++++++++++++++++++++++++++ > RiscVPkg/RiscVPkg.uni | 13 +++++++++++++ > RiscVPkg/RiscVPkgExtra.uni | 13 +++++++++++++ > 3 files changed, 53 insertions(+) > create mode 100644 RiscVPkg/RiscVPkg.dec > create mode 100644 RiscVPkg/RiscVPkg.uni > create mode 100644 RiscVPkg/RiscVPkgExtra.uni > > diff --git a/RiscVPkg/RiscVPkg.dec b/RiscVPkg/RiscVPkg.dec > new file mode 100644 > index 0000000..74314e8 > --- /dev/null > +++ b/RiscVPkg/RiscVPkg.dec > @@ -0,0 +1,27 @@ > +## @file RiscVPkg.dec > +# This Package provides UEFI RISC-V modules and libraries. > +# > +# Copyright (c) 2016 - 2019, Hewlett Packard Enterprise Development LP. All rights reserved.
> +# > +# SPDX-License-Identifier: BSD-2-Clause-Patent > +# > +## > + > +[Defines] > + DEC_SPECIFICATION = 0x0001001b > + PACKAGE_NAME = RiscVPkg > + PACKAGE_UNI_FILE = RiscVPkg.uni > + PACKAGE_GUID = 993C7CAC-C87C-4F08-A2CF-AD3AABA859D1 > + PACKAGE_VERSION = 1.0 > + > +[Includes] > + Include > + opensbi # OpebSBI header file reference ("include/sbi/...") > + opensbi/include # Header file reference from opensbi files, ("sbi/...") > + opensbi/lib/utils/libfdt This line should no longer be needed, right? If you delete it, Reviewed-by: Leif Lindholm > + > +[Guids] > + gUefiRiscVPkgTokenSpaceGuid = { 0x4261e9c8, 0x52c0, 0x4b34, { 0x85, 0x3d, 0x48, 0x46, 0xea, 0xd3, 0xb7, 0x2c}} > + > +[UserExtensions.TianoCore."ExtraFiles"] > + RiscVPkgExtra.uni > diff --git a/RiscVPkg/RiscVPkg.uni b/RiscVPkg/RiscVPkg.uni > new file mode 100644 > index 0000000..5ec7a99 > --- /dev/null > +++ b/RiscVPkg/RiscVPkg.uni > @@ -0,0 +1,13 @@ > +// /** @file > +// RISC-V Package Localized Strings and Content. > +// > +// Copyright (c) 2016 - 2019, Hewlett Packard Enterprise Development LP. All rights reserved.
> +// > +// SPDX-License-Identifier: BSD-2-Clause-Patent > +// > +// **/ > + > +#string STR_PACKAGE_ABSTRACT #language en-US "Provides UEFI compatible RISC-V modules and libraries" > + > +#string STR_PACKAGE_DESCRIPTION #language en-US "This Package provides UEFI compatible RISC-V modules and libraries." > + > diff --git a/RiscVPkg/RiscVPkgExtra.uni b/RiscVPkg/RiscVPkgExtra.uni > new file mode 100644 > index 0000000..b50a6b4 > --- /dev/null > +++ b/RiscVPkg/RiscVPkgExtra.uni > @@ -0,0 +1,13 @@ > +// /** @file > +// RISC-V Package Localized Strings and Content. > +// > +// Copyright (c) 2016 - 2019, Hewlett Packard Enterprise Development LP. All rights reserved.
> +// > +// SPDX-License-Identifier: BSD-2-Clause-Patent > +// > +// **/ > + > +#string STR_PROPERTIES_PACKAGE_NAME > +#language en-US > +"RiscV package" > + > -- > 2.7.4 > > > >