From mboxrd@z Thu Jan 1 00:00:00 1970 Authentication-Results: mx.groups.io; dkim=missing; spf=fail (domain: intel.com, ip: , mailfrom: dandan.bi@intel.com) Received: from mga12.intel.com (mga12.intel.com []) by groups.io with SMTP; Mon, 17 Jun 2019 01:49:01 -0700 X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga006.jf.intel.com ([10.7.209.51]) by fmsmga106.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 17 Jun 2019 01:49:00 -0700 X-ExtLoop1: 1 Received: from shwdeopenpsi114.ccr.corp.intel.com ([10.239.157.147]) by orsmga006.jf.intel.com with ESMTP; 17 Jun 2019 01:49:00 -0700 From: "Dandan Bi" To: devel@edk2.groups.io Cc: Eric Dong , Liming Gao Subject: [edk2-platforms] [patch v3 1/2] Platform/Intel: Add UserInterfaceFeaturePkg Date: Mon, 17 Jun 2019 16:48:49 +0800 Message-Id: <20190617084850.41272-2-dandan.bi@intel.com> X-Mailer: git-send-email 2.18.0.windows.1 In-Reply-To: <20190617084850.41272-1-dandan.bi@intel.com> References: <20190617084850.41272-1-dandan.bi@intel.com> REF: https://bugzilla.tianocore.org/show_bug.cgi?id=1545 Add new package UserInterfaceFeaturePkg in Platform/Intel/ folder. It will keep UI related modules in this package. We plan add UserAuthentication modules in Platform/Intel. Firstly we add a new package UserInterfaceFeaturePkg where add the UserAuthentication modules into. Package name follows the discussion in: https://edk2.groups.io/g/devel/message/42286 Cc: Eric Dong Cc: Liming Gao Signed-off-by: Dandan Bi --- Maintainers.txt | 4 ++++ .../UserInterfaceFeaturePkg.dec | 19 +++++++++++++++ .../UserInterfaceFeaturePkg.dsc | 23 +++++++++++++++++++ 3 files changed, 46 insertions(+) create mode 100644 Platform/Intel/UserInterfaceFeaturePkg/UserInterfaceFeaturePkg.dec create mode 100644 Platform/Intel/UserInterfaceFeaturePkg/UserInterfaceFeaturePkg.dsc diff --git a/Maintainers.txt b/Maintainers.txt index cb9e15e880..c55a285fa1 100644 --- a/Maintainers.txt +++ b/Maintainers.txt @@ -71,10 +71,14 @@ R: Liming Gao Platform/Intel/DebugFeaturePkg M: Eric Dong R: Liming Gao +Platform/Intel/UserInterfaceFeaturePkg +M: Dandan Bi +R: Liming Gao + Platform/Intel/ClevoOpenBoardPkg M: Michael Kubacki M: Ankit Sinha M: Nate DeSimone diff --git a/Platform/Intel/UserInterfaceFeaturePkg/UserInterfaceFeaturePkg.dec b/Platform/Intel/UserInterfaceFeaturePkg/UserInterfaceFeaturePkg.dec new file mode 100644 index 0000000000..7162637e24 --- /dev/null +++ b/Platform/Intel/UserInterfaceFeaturePkg/UserInterfaceFeaturePkg.dec @@ -0,0 +1,19 @@ +## @file +# This package provides UI related modules. +# +# The DEC files are used by the utilities that parse DSC and +# INF files to generate AutoGen.c and AutoGen.h files +# for the build infrastructure. +# +# Copyright (c) 2019, Intel Corporation. All rights reserved.
+# +# SPDX-License-Identifier: BSD-2-Clause-Patent +# +## + +[Defines] + DEC_SPECIFICATION = 0x00010017 + PACKAGE_NAME = UserInterfaceFeaturePkg + PACKAGE_VERSION = 0.1 + PACKAGE_GUID = 5A92199C-C2ED-4A3F-9ED0-C278DEA0DA47 + diff --git a/Platform/Intel/UserInterfaceFeaturePkg/UserInterfaceFeaturePkg.dsc b/Platform/Intel/UserInterfaceFeaturePkg/UserInterfaceFeaturePkg.dsc new file mode 100644 index 0000000000..7098affee9 --- /dev/null +++ b/Platform/Intel/UserInterfaceFeaturePkg/UserInterfaceFeaturePkg.dsc @@ -0,0 +1,23 @@ +## @file +# This package provides UI related modules. +# +# The DEC files are used by the utilities that parse DSC and +# INF files to generate AutoGen.c and AutoGen.h files +# for the build infrastructure. +# +# Copyright (c) 2019, Intel Corporation. All rights reserved.
+# +# SPDX-License-Identifier: BSD-2-Clause-Patent +# +## + +[Defines] + PLATFORM_NAME = UserInterfaceFeaturePkg + PLATFORM_GUID = 66536B4C-84A3-42FD-B0AE-603414A4CE9E + PLATFORM_VERSION = 0.1 + DSC_SPECIFICATION = 0x00010005 + OUTPUT_DIRECTORY = Build/UserInterfaceFeaturePkg + SUPPORTED_ARCHITECTURES = IA32|X64 + BUILD_TARGETS = DEBUG|RELEASE|NOOPT + SKUID_IDENTIFIER = DEFAULT + -- 2.18.0.windows.1