From mboxrd@z Thu Jan 1 00:00:00 1970 Authentication-Results: mx.groups.io; dkim=missing; spf=fail (domain: intel.com, ip: , mailfrom: eric.dong@intel.com) Received: from mga04.intel.com (mga04.intel.com []) by groups.io with SMTP; Tue, 28 May 2019 17:47:56 -0700 X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga006.fm.intel.com ([10.253.24.20]) by fmsmga104.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 28 May 2019 17:47:56 -0700 X-ExtLoop1: 1 Received: from ydong10-win10.ccr.corp.intel.com ([10.239.158.133]) by fmsmga006.fm.intel.com with ESMTP; 28 May 2019 17:47:56 -0700 From: "Dong, Eric" To: devel@edk2.groups.io Subject: [Patch 1/3] [edk2-platforms] Platform/Intel/DebugFeaturePkg: Add DebugFeaturePkg Date: Wed, 29 May 2019 08:47:52 +0800 Message-Id: <20190529004754.22332-2-eric.dong@intel.com> X-Mailer: git-send-email 2.21.0.windows.1 In-Reply-To: <20190529004754.22332-1-eric.dong@intel.com> References: <20190529004754.22332-1-eric.dong@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Add new package DebugFeaturePkg in Platform/Intel/ folder. It will keep debug related features in this package. Signed-off-by: Eric Dong --- Maintainers.txt | 4 ++++ .../Intel/DebugFeaturePkg/DebugFeaturePkg.dec | 19 +++++++++++++++ .../Intel/DebugFeaturePkg/DebugFeaturePkg.dsc | 24 +++++++++++++++++++ 3 files changed, 47 insertions(+) create mode 100644 Platform/Intel/DebugFeaturePkg/DebugFeaturePkg.dec create mode 100644 Platform/Intel/DebugFeaturePkg/DebugFeaturePkg.dsc diff --git a/Maintainers.txt b/Maintainers.txt index 76feecceb7..66782b4b92 100644 --- a/Maintainers.txt +++ b/Maintainers.txt @@ -60,6 +60,10 @@ M: Michael Kubacki M: Sai Chaganty R: Liming Gao +Platform/Intel/DebugFeaturePkg +M: Eric Dong +R: Liming Gao + Platform/Intel/ClevoOpenBoardPkg M: Michael Kubacki M: Ankit Sinha diff --git a/Platform/Intel/DebugFeaturePkg/DebugFeaturePkg.dec b/Platform/Intel/DebugFeaturePkg/DebugFeaturePkg.dec new file mode 100644 index 0000000000..839684183a --- /dev/null +++ b/Platform/Intel/DebugFeaturePkg/DebugFeaturePkg.dec @@ -0,0 +1,19 @@ +## @file +# This package provides the modules that build for debug feature. +# This DebugAdvancedFeaturePkg should only depend on EDKII Core packages and MinPlatformPkg. +# +# 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 = 0x00010005 + PACKAGE_NAME = DebugFeaturePkg + PACKAGE_GUID = 58B6F2BB-A94F-4EB9-89DA-2F06ED59CE39 + PACKAGE_VERSION = 0.1 \ No newline at end of file diff --git a/Platform/Intel/DebugFeaturePkg/DebugFeaturePkg.dsc b/Platform/Intel/DebugFeaturePkg/DebugFeaturePkg.dsc new file mode 100644 index 0000000000..351d6583d5 --- /dev/null +++ b/Platform/Intel/DebugFeaturePkg/DebugFeaturePkg.dsc @@ -0,0 +1,24 @@ +## @file +# This package provides the modules that build for debug feature. +# This DebugFeaturePkg should only depend on EDKII Core packages and MinPlatformPkg. +# +# 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 = DebugFeaturePkg + PLATFORM_GUID = 3A0DBEF4-3C16-4F6B-8B55-BABB260D30B9 + PLATFORM_VERSION = 0.1 + DSC_SPECIFICATION = 0x00010005 + OUTPUT_DIRECTORY = Build/DebugFeaturePkg + SUPPORTED_ARCHITECTURES = IA32|X64 + BUILD_TARGETS = DEBUG|RELEASE|NOOPT + SKUID_IDENTIFIER = DEFAULT + -- 2.21.0.windows.1