[edk2-devel] [edk2-BuildSpecification PATCH] Document: Support HOST_APPLICATION ModuleType

Xiaoyu Lu posted 1 patch 4 years, 9 months ago
Failed in applying to current master (apply log)
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(-)
[edk2-devel] [edk2-BuildSpecification PATCH] Document: Support HOST_APPLICATION ModuleType
Posted by Xiaoyu Lu 4 years, 9 months ago
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 <liming.gao@intel.com>
Cc: Jiewen Yao <jiewen.yao@intel.com>
Signed-off-by: Xiaoyu Lu <xiaoyux.lu@intel.com>
---
 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 <Base.h>
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


-=-=-=-=-=-=-=-=-=-=-=-
Groups.io Links: You receive all messages sent to this group.

View/Reply Online (#43206): https://edk2.groups.io/g/devel/message/43206
Mute This Topic: https://groups.io/mt/32295530/1787277
Group Owner: devel+owner@edk2.groups.io
Unsubscribe: https://edk2.groups.io/g/devel/unsub  [importer@patchew.org]
-=-=-=-=-=-=-=-=-=-=-=-

Re: [edk2-devel] [edk2-BuildSpecification PATCH] Document: Support HOST_APPLICATION ModuleType
Posted by Liming Gao 4 years, 9 months ago
Reviewed-by: Liming Gao <liming.gao@intel.com>

>-----Original Message-----
>From: devel@edk2.groups.io [mailto:devel@edk2.groups.io] On Behalf Of
>Xiaoyu Lu
>Sent: Wednesday, July 03, 2019 4:24 PM
>To: devel@edk2.groups.io
>Cc: Lu, XiaoyuX <xiaoyux.lu@intel.com>; Gao, Liming <liming.gao@intel.com>;
>Yao, Jiewen <jiewen.yao@intel.com>
>Subject: [edk2-devel] [edk2-BuildSpecification PATCH] Document: Support
>HOST_APPLICATION ModuleType
>
>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 <liming.gao@intel.com>
>Cc: Jiewen Yao <jiewen.yao@intel.com>
>Signed-off-by: Xiaoyu Lu <xiaoyux.lu@intel.com>
>---
> 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 <Base.h>
>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
>
>
>


-=-=-=-=-=-=-=-=-=-=-=-
Groups.io Links: You receive all messages sent to this group.

View/Reply Online (#43384): https://edk2.groups.io/g/devel/message/43384
Mute This Topic: https://groups.io/mt/32295530/1787277
Group Owner: devel+owner@edk2.groups.io
Unsubscribe: https://edk2.groups.io/g/devel/unsub  [importer@patchew.org]
-=-=-=-=-=-=-=-=-=-=-=-