* [edk2-DscSpecification PATCH v1] DSC document: Support HOST_APPLICATION ModuleType
@ 2019-07-11 4:12 Xiaoyu Lu
2019-07-11 4:18 ` Liming Gao
0 siblings, 1 reply; 2+ messages in thread
From: Xiaoyu Lu @ 2019-07-11 4:12 UTC (permalink / raw)
To: devel; +Cc: Xiaoyu Lu, Liming Gao, Jiewen Yao
REF: https://bugzilla.tianocore.org/show_bug.cgi?id=1952
INF spec add a new MODULE_TYPE HOST_APPLICATION, so this
SPEC also need be updated to support this type.
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/12_terms.md | 6 +++---
3_edk_ii_dsc_file_format/33_platform_dsc_definition.md | 1 +
README.md | 1 +
3 files changed, 5 insertions(+), 3 deletions(-)
diff --git a/1_introduction/12_terms.md b/1_introduction/12_terms.md
index ffd8bb6..b1b3286 100644
--- a/1_introduction/12_terms.md
+++ b/1_introduction/12_terms.md
@@ -227,9 +227,9 @@ All libraries and components belong to one of the following module types:
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. The EDK II build
-system also permits modules of type `USER_DEFINED`. These modules will not be
-processed by the EDK II Build system. For a definition of the various module
-types, see Appendix C.
+system also permits modules of type `USER_DEFINED` and `HOST_APPLICATOIN`.
+These modules will not be processed by the EDK II Build system. For a
+definition of the various module types, see Appendix C.
**Package**
diff --git a/3_edk_ii_dsc_file_format/33_platform_dsc_definition.md b/3_edk_ii_dsc_file_format/33_platform_dsc_definition.md
index 0679ff0..b31d286 100644
--- a/3_edk_ii_dsc_file_format/33_platform_dsc_definition.md
+++ b/3_edk_ii_dsc_file_format/33_platform_dsc_definition.md
@@ -263,6 +263,7 @@ The following are common definitions used by multiple section types.
{"DXE_RUNTIME_DRIVER"} {"DXE_SAL_DRIVER"}
{"DXE_SMM_DRIVER"} {"UEFI_DRIVER"}
{"UEFI_APPLICATION"} {"USER_DEFINED"}
+ {"HOST_APPLICATION"}
<ModuleTypeList> ::= <ModuleType> [" " <ModuleType>]*
<Boolean> ::= {<BoolType>} {<Expression>}
<EOL> ::= <TS> 0x0A 0x0D
diff --git a/README.md b/README.md
index 5d774f5..42febaf 100644
--- a/README.md
+++ b/README.md
@@ -195,3 +195,4 @@ Copyright (c) 2006-2017, Intel Corporation. All rights reserved.
| | Add !error statement section | |
| |[#1110](https://bugzilla.tianocore.org/show_bug.cgi?id=1110) Extend exclamation statement's keyword to case-insensitive | |
| 1.29 | [#1453](https://bugzilla.tianocore.org/show_bug.cgi?id=1453) Update DSC spec to remove EDK related contents | Mar 2019 |
+| 1.30 | [#1952](https://bugzilla.tianocore.org/show_bug.cgi?id=1952) add HOST_APPLIACTION ModuleTpye | July 2019 |
--
2.17.1
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [edk2-DscSpecification PATCH v1] DSC document: Support HOST_APPLICATION ModuleType
2019-07-11 4:12 [edk2-DscSpecification PATCH v1] DSC document: Support HOST_APPLICATION ModuleType Xiaoyu Lu
@ 2019-07-11 4:18 ` Liming Gao
0 siblings, 0 replies; 2+ messages in thread
From: Liming Gao @ 2019-07-11 4:18 UTC (permalink / raw)
To: Lu, XiaoyuX, devel@edk2.groups.io; +Cc: Yao, Jiewen
Reviewed-by: Liming Gao <liming.gao@intel.com>
>-----Original Message-----
>From: Lu, XiaoyuX
>Sent: Thursday, July 11, 2019 12:13 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-DscSpecification PATCH v1] DSC document: Support
>HOST_APPLICATION ModuleType
>
>REF: https://bugzilla.tianocore.org/show_bug.cgi?id=1952
>
>INF spec add a new MODULE_TYPE HOST_APPLICATION, so this
>SPEC also need be updated to support this type.
>
>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/12_terms.md | 6 +++---
> 3_edk_ii_dsc_file_format/33_platform_dsc_definition.md | 1 +
> README.md | 1 +
> 3 files changed, 5 insertions(+), 3 deletions(-)
>
>diff --git a/1_introduction/12_terms.md b/1_introduction/12_terms.md
>index ffd8bb6..b1b3286 100644
>--- a/1_introduction/12_terms.md
>+++ b/1_introduction/12_terms.md
>@@ -227,9 +227,9 @@ All libraries and components belong to one of the
>following module types:
> 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. The
>EDK II build
>-system also permits modules of type `USER_DEFINED`. These modules will
>not be
>-processed by the EDK II Build system. For a definition of the various module
>-types, see Appendix C.
>+system also permits modules of type `USER_DEFINED` and
>`HOST_APPLICATOIN`.
>+These modules will not be processed by the EDK II Build system. For a
>+definition of the various module types, see Appendix C.
>
> **Package**
>
>diff --git a/3_edk_ii_dsc_file_format/33_platform_dsc_definition.md
>b/3_edk_ii_dsc_file_format/33_platform_dsc_definition.md
>index 0679ff0..b31d286 100644
>--- a/3_edk_ii_dsc_file_format/33_platform_dsc_definition.md
>+++ b/3_edk_ii_dsc_file_format/33_platform_dsc_definition.md
>@@ -263,6 +263,7 @@ The following are common definitions used by multiple
>section types.
> {"DXE_RUNTIME_DRIVER"} {"DXE_SAL_DRIVER"}
> {"DXE_SMM_DRIVER"} {"UEFI_DRIVER"}
> {"UEFI_APPLICATION"} {"USER_DEFINED"}
>+ {"HOST_APPLICATION"}
> <ModuleTypeList> ::= <ModuleType> [" " <ModuleType>]*
> <Boolean> ::= {<BoolType>} {<Expression>}
> <EOL> ::= <TS> 0x0A 0x0D
>diff --git a/README.md b/README.md
>index 5d774f5..42febaf 100644
>--- a/README.md
>+++ b/README.md
>@@ -195,3 +195,4 @@ Copyright (c) 2006-2017, Intel Corporation. All rights
>reserved.
> | | Add !error statement section
>| |
> | |[#1110](https://bugzilla.tianocore.org/show_bug.cgi?id=1110)
>Extend exclamation statement's keyword to case-insensitive
>| |
> | 1.29 | [#1453](https://bugzilla.tianocore.org/show_bug.cgi?id=1453)
>Update DSC spec to remove EDK related contents
>| Mar 2019 |
>+| 1.30 | [#1952](https://bugzilla.tianocore.org/show_bug.cgi?id=1952) add
>HOST_APPLIACTION ModuleTpye
>| July 2019 |
>--
>2.17.1
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2019-07-11 4:18 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-07-11 4:12 [edk2-DscSpecification PATCH v1] DSC document: Support HOST_APPLICATION ModuleType Xiaoyu Lu
2019-07-11 4:18 ` Liming Gao
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox