From mboxrd@z Thu Jan 1 00:00:00 1970 Authentication-Results: mx.groups.io; dkim=missing; spf=pass (domain: intel.com, ip: 134.134.136.100, mailfrom: xiaoyux.lu@intel.com) Received: from mga07.intel.com (mga07.intel.com [134.134.136.100]) by groups.io with SMTP; Wed, 03 Jul 2019 01:23:05 -0700 X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga001.fm.intel.com ([10.253.24.23]) by orsmga105.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 03 Jul 2019 01:23:04 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.63,446,1557212400"; d="scan'208";a="184686317" Received: from xiaoyu-dev.sh.intel.com ([10.239.47.27]) by fmsmga001.fm.intel.com with ESMTP; 03 Jul 2019 01:23:03 -0700 From: "Xiaoyu Lu" To: devel@edk2.groups.io Cc: Xiaoyu Lu , Liming Gao , Jiewen Yao Subject: [edk2-BuildSpecification PATCH] Document: Support HOST_APPLICATION ModuleType Date: Wed, 3 Jul 2019 08:23:44 +0000 Message-Id: <20190703082344.21466-1-xiaoyux.lu@intel.com> X-Mailer: git-send-email 2.17.1 BZ: https://bugzilla.tianocore.org/show_bug.cgi?id=1952 INF spec add a new MODULE_TYPE HOST_APPLICATION, it indicate those modules that can run directly in OS environment. So BUILD spec also need be updated to support HOST_APPLICATION build. Cc: Liming Gao Cc: Jiewen Yao Signed-off-by: Xiaoyu Lu --- 1_introduction/13_terms.md | 4 ++-- 8_pre-build_autogen_stage/83_auto-generated_code.md | 1 + README.md | 1 + 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/1_introduction/13_terms.md b/1_introduction/13_terms.md index b6cd569..ee107d5 100644 --- a/1_introduction/13_terms.md +++ b/1_introduction/13_terms.md @@ -228,8 +228,8 @@ with a similar set of requirements. A module that is of module type `BASE`, depends only on headers and libraries provided in the MDE, while a module that is of module type `DXE_DRIVER` depends on common DXE components. For a definition of the various module types, see Appendix Module Types. The EDK II -build system also permits modules of type `USER_DEFINED`. These modules will not -be processed by the EDK II Build system. +build system also permits modules of type `USER_DEFINED` and `HOST_APPLICATION`. +These modules will not be processed by the EDK II Build system. **Package** diff --git a/8_pre-build_autogen_stage/83_auto-generated_code.md b/8_pre-build_autogen_stage/83_auto-generated_code.md index dcb0c09..b9a40ef 100644 --- a/8_pre-build_autogen_stage/83_auto-generated_code.md +++ b/8_pre-build_autogen_stage/83_auto-generated_code.md @@ -684,6 +684,7 @@ Which files are included is determined by module type. ```c Switch MODULE_TYPE { case "BASE": + case "HOST_APPLICATION": case "USER_DEFINED": include_statement (AutoGen.c, " #include diff --git a/README.md b/README.md index b51a382..bedc3e7 100644 --- a/README.md +++ b/README.md @@ -230,3 +230,4 @@ Copyright (c) 2008-2017, Intel Corporation. All rights reserved. | | [#1110](https://bugzilla.tianocore.org/show_bug.cgi?id=1110) Extend exclamation statement's keyword to case-insensitive | | | | [#598](https://bugzilla.tianocore.org/show_bug.cgi?id=598) update supported operators in 8.2.4.6 Expressions | | | 1.29 | [#1453](https://bugzilla.tianocore.org/show_bug.cgi?id=1453) Update Build spec to remove EDK related contents | Mar 2019 | +| 1.30 | [#1952](https://bugzilla.tianocore.org/show_bug.cgi?id=1952) Update Build spec to support HOST_APPLICATION MODULE_TYPE | July 2019 | -- 2.17.1