public inbox for devel@edk2.groups.io
 help / color / mirror / Atom feed
* [edk2-devel] [edk2-platfoms][PATCH V1] WhitleyOpenBoardPkg :Updated PcdFlashFvSecuritySize for JunctionCity and Aowanda platform
@ 2023-08-31 17:53 Ramkumar Krishnamoorthi via groups.io
  2023-09-08  1:31 ` Nate DeSimone
  2023-09-08  1:33 ` Nate DeSimone
  0 siblings, 2 replies; 3+ messages in thread
From: Ramkumar Krishnamoorthi via groups.io @ 2023-08-31 17:53 UTC (permalink / raw)
  To: devel@edk2.groups.io
  Cc: Harikrishna Doppalapudi, Sureshkumar Ponnusamy,
	Manickavasakam Karpagavinayagam, Selvaraj V,
	Ramkumar Krishnamoorthi, Isaac Oram, Nate DeSimone

Subject: [edk2-platfoms][PATCH V1] WhitleyOpenBoardPkg : Updated
 PcdFlashFvSecuritySize for JunctionCity and Aowanda platform

Fix to resolve the build error for JunctionCity and Aowanda platform.
Updated PcdFlashFvSecuritySize in JunctionCity\PlatformPkg.fdf and
Aowanda\PlatformPkg.fdf


Cc: Harikrishna Doppalapudi <harikrishnad@ami.com>
Cc: Sureshkumar Ponnusamy <sureshkumarp@ami.com>
Cc: Manickavasakam Karpagavinayagam <manickavasakamk@ami.com>
Cc: Selvaraj V <selvarajv@ami.com>
Cc: Ramkumar Krishnamoorthi <ramkumark@ami.com>

Cc: Isaac Oram <isaac.w.oram@intel.com>

Cc: Nate DeSimone <nathaniel.l.desimone@intel.com>



Signed-off-by: Ramkumar Krishnamoorthi <ramkumark@ami.com>
---
 Platform/Intel/WhitleyOpenBoardPkg/Aowanda/PlatformPkg.fdf      | 2 +-
 Platform/Intel/WhitleyOpenBoardPkg/JunctionCity/PlatformPkg.fdf | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/Platform/Intel/WhitleyOpenBoardPkg/Aowanda/PlatformPkg.fdf b/Platform/Intel/WhitleyOpenBoardPkg/Aowanda/PlatformPkg.fdf
index 2d3cd094fd..3fe78b7e6f 100644
--- a/Platform/Intel/WhitleyOpenBoardPkg/Aowanda/PlatformPkg.fdf
+++ b/Platform/Intel/WhitleyOpenBoardPkg/Aowanda/PlatformPkg.fdf
@@ -189,7 +189,7 @@ SET gMinPlatformPkgTokenSpaceGuid.PcdFlashAreaSize         = 0x01000000
   # This makes it easy to adjust the various sizes without having to manually calculate the offsets.
   # These are out of flash layout order because FvAdvanced gets any remaining space
   #
-  SET gMinPlatformPkgTokenSpaceGuid.PcdFlashFvSecuritySize      = 0x00040000
+  SET gMinPlatformPkgTokenSpaceGuid.PcdFlashFvSecuritySize      = 0x00050000
   SET gMinPlatformPkgTokenSpaceGuid.PcdFlashFvOsBootSize        = 0x00230000
   SET gMinPlatformPkgTokenSpaceGuid.PcdFlashFvUefiBootSize      = 0x0004C000
   SET gMinPlatformPkgTokenSpaceGuid.PcdFlashFvAdvancedSize      = gCpPlatFlashTokenSpaceGuid.PcdFlashFdMainSize - gMinPlatformPkgTokenSpaceGuid.PcdFlashFvUefiBootSize - gMinPlatformPkgTokenSpaceGuid.PcdFlashFvOsBootSize - gMinPlatformPkgTokenSpaceGuid.PcdFlashFvSecuritySize
diff --git a/Platform/Intel/WhitleyOpenBoardPkg/JunctionCity/PlatformPkg.fdf b/Platform/Intel/WhitleyOpenBoardPkg/JunctionCity/PlatformPkg.fdf
index c63442508b..e120ff143a 100644
--- a/Platform/Intel/WhitleyOpenBoardPkg/JunctionCity/PlatformPkg.fdf
+++ b/Platform/Intel/WhitleyOpenBoardPkg/JunctionCity/PlatformPkg.fdf
@@ -189,7 +189,7 @@ SET gMinPlatformPkgTokenSpaceGuid.PcdFlashAreaSize         = 0x01000000
   # This makes it easy to adjust the various sizes without having to manually calculate the offsets.
   # These are out of flash layout order because FvAdvanced gets any remaining space
   #
-  SET gMinPlatformPkgTokenSpaceGuid.PcdFlashFvSecuritySize      = 0x00040000
+  SET gMinPlatformPkgTokenSpaceGuid.PcdFlashFvSecuritySize      = 0x00050000
   SET gMinPlatformPkgTokenSpaceGuid.PcdFlashFvOsBootSize        = 0x00230000
   SET gMinPlatformPkgTokenSpaceGuid.PcdFlashFvUefiBootSize      = 0x0004C000
   SET gMinPlatformPkgTokenSpaceGuid.PcdFlashFvAdvancedSize      = gCpPlatFlashTokenSpaceGuid.PcdFlashFdMainSize - gMinPlatformPkgTokenSpaceGuid.PcdFlashFvUefiBootSize - gMinPlatformPkgTokenSpaceGuid.PcdFlashFvOsBootSize - gMinPlatformPkgTokenSpaceGuid.PcdFlashFvSecuritySize
--
2.37.1.windows.1
-The information contained in this message may be confidential and proprietary to American Megatrends (AMI). This communication is intended to be read only by the individual or entity to whom it is addressed or by their designee. If the reader of this message is not the intended recipient, you are on notice that any distribution of this message, in any form, is strictly prohibited. Please promptly notify the sender by reply e-mail or by telephone at 770-246-8600, and then delete or destroy all copies of the transmission.


-=-=-=-=-=-=-=-=-=-=-=-
Groups.io Links: You receive all messages sent to this group.
View/Reply Online (#108205): https://edk2.groups.io/g/devel/message/108205
Mute This Topic: https://groups.io/mt/101079192/7686176
Group Owner: devel+owner@edk2.groups.io
Unsubscribe: https://edk2.groups.io/g/devel/unsub [rebecca@openfw.io]
-=-=-=-=-=-=-=-=-=-=-=-



^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [edk2-devel] [edk2-platfoms][PATCH V1] WhitleyOpenBoardPkg :Updated PcdFlashFvSecuritySize for JunctionCity and Aowanda platform
  2023-08-31 17:53 [edk2-devel] [edk2-platfoms][PATCH V1] WhitleyOpenBoardPkg :Updated PcdFlashFvSecuritySize for JunctionCity and Aowanda platform Ramkumar Krishnamoorthi via groups.io
@ 2023-09-08  1:31 ` Nate DeSimone
  2023-09-08  1:33 ` Nate DeSimone
  1 sibling, 0 replies; 3+ messages in thread
From: Nate DeSimone @ 2023-09-08  1:31 UTC (permalink / raw)
  To: Ramkumar Krishnamoorthi, devel@edk2.groups.io
  Cc: DOPPALAPUDI, HARIKRISHNA, Ponnusamy, Suresh,
	KARPAGAVINAYAGAM, MANICKAVASAKAM, Venkatesan, Selvaraj,
	Isaac Oram

Reviewed-by: Nate DeSimone <nathaniel.l.desimone@intel.com>

-----Original Message-----
From: Ramkumar Krishnamoorthi <ramkumark@ami.com> 
Sent: Thursday, August 31, 2023 10:53 AM
To: devel@edk2.groups.io
Cc: DOPPALAPUDI, HARIKRISHNA <harikrishnad@ami.com>; Ponnusamy, Suresh <sureshkumarp@ami.com>; KARPAGAVINAYAGAM, MANICKAVASAKAM <manickavasakamk@ami.com>; Venkatesan, Selvaraj <selvarajv@ami.com>; Ramkumar Krishnamoorthi <ramkumark@ami.com>; Isaac Oram <isaac.w.oram@intel.com>; Desimone, Nathaniel L <nathaniel.l.desimone@intel.com>
Subject: [edk2-platfoms][PATCH V1] WhitleyOpenBoardPkg :Updated PcdFlashFvSecuritySize for JunctionCity and Aowanda platform

Subject: [edk2-platfoms][PATCH V1] WhitleyOpenBoardPkg : Updated  PcdFlashFvSecuritySize for JunctionCity and Aowanda platform

Fix to resolve the build error for JunctionCity and Aowanda platform.
Updated PcdFlashFvSecuritySize in JunctionCity\PlatformPkg.fdf and Aowanda\PlatformPkg.fdf


Cc: Harikrishna Doppalapudi <harikrishnad@ami.com>
Cc: Sureshkumar Ponnusamy <sureshkumarp@ami.com>
Cc: Manickavasakam Karpagavinayagam <manickavasakamk@ami.com>
Cc: Selvaraj V <selvarajv@ami.com>
Cc: Ramkumar Krishnamoorthi <ramkumark@ami.com>

Cc: Isaac Oram <isaac.w.oram@intel.com>

Cc: Nate DeSimone <nathaniel.l.desimone@intel.com>



Signed-off-by: Ramkumar Krishnamoorthi <ramkumark@ami.com>
---
 Platform/Intel/WhitleyOpenBoardPkg/Aowanda/PlatformPkg.fdf      | 2 +-
 Platform/Intel/WhitleyOpenBoardPkg/JunctionCity/PlatformPkg.fdf | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/Platform/Intel/WhitleyOpenBoardPkg/Aowanda/PlatformPkg.fdf b/Platform/Intel/WhitleyOpenBoardPkg/Aowanda/PlatformPkg.fdf
index 2d3cd094fd..3fe78b7e6f 100644
--- a/Platform/Intel/WhitleyOpenBoardPkg/Aowanda/PlatformPkg.fdf
+++ b/Platform/Intel/WhitleyOpenBoardPkg/Aowanda/PlatformPkg.fdf
@@ -189,7 +189,7 @@ SET gMinPlatformPkgTokenSpaceGuid.PcdFlashAreaSize         = 0x01000000
   # This makes it easy to adjust the various sizes without having to manually calculate the offsets.
   # These are out of flash layout order because FvAdvanced gets any remaining space
   #
-  SET gMinPlatformPkgTokenSpaceGuid.PcdFlashFvSecuritySize      = 0x00040000
+  SET gMinPlatformPkgTokenSpaceGuid.PcdFlashFvSecuritySize      = 0x00050000
   SET gMinPlatformPkgTokenSpaceGuid.PcdFlashFvOsBootSize        = 0x00230000
   SET gMinPlatformPkgTokenSpaceGuid.PcdFlashFvUefiBootSize      = 0x0004C000
   SET gMinPlatformPkgTokenSpaceGuid.PcdFlashFvAdvancedSize      = gCpPlatFlashTokenSpaceGuid.PcdFlashFdMainSize - gMinPlatformPkgTokenSpaceGuid.PcdFlashFvUefiBootSize - gMinPlatformPkgTokenSpaceGuid.PcdFlashFvOsBootSize - gMinPlatformPkgTokenSpaceGuid.PcdFlashFvSecuritySize
diff --git a/Platform/Intel/WhitleyOpenBoardPkg/JunctionCity/PlatformPkg.fdf b/Platform/Intel/WhitleyOpenBoardPkg/JunctionCity/PlatformPkg.fdf
index c63442508b..e120ff143a 100644
--- a/Platform/Intel/WhitleyOpenBoardPkg/JunctionCity/PlatformPkg.fdf
+++ b/Platform/Intel/WhitleyOpenBoardPkg/JunctionCity/PlatformPkg.fdf
@@ -189,7 +189,7 @@ SET gMinPlatformPkgTokenSpaceGuid.PcdFlashAreaSize         = 0x01000000
   # This makes it easy to adjust the various sizes without having to manually calculate the offsets.
   # These are out of flash layout order because FvAdvanced gets any remaining space
   #
-  SET gMinPlatformPkgTokenSpaceGuid.PcdFlashFvSecuritySize      = 0x00040000
+  SET gMinPlatformPkgTokenSpaceGuid.PcdFlashFvSecuritySize      = 0x00050000
   SET gMinPlatformPkgTokenSpaceGuid.PcdFlashFvOsBootSize        = 0x00230000
   SET gMinPlatformPkgTokenSpaceGuid.PcdFlashFvUefiBootSize      = 0x0004C000
   SET gMinPlatformPkgTokenSpaceGuid.PcdFlashFvAdvancedSize      = gCpPlatFlashTokenSpaceGuid.PcdFlashFdMainSize - gMinPlatformPkgTokenSpaceGuid.PcdFlashFvUefiBootSize - gMinPlatformPkgTokenSpaceGuid.PcdFlashFvOsBootSize - gMinPlatformPkgTokenSpaceGuid.PcdFlashFvSecuritySize
--
2.37.1.windows.1
-The information contained in this message may be confidential and proprietary to American Megatrends (AMI). This communication is intended to be read only by the individual or entity to whom it is addressed or by their designee. If the reader of this message is not the intended recipient, you are on notice that any distribution of this message, in any form, is strictly prohibited. Please promptly notify the sender by reply e-mail or by telephone at 770-246-8600, and then delete or destroy all copies of the transmission.


-=-=-=-=-=-=-=-=-=-=-=-
Groups.io Links: You receive all messages sent to this group.
View/Reply Online (#108434): https://edk2.groups.io/g/devel/message/108434
Mute This Topic: https://groups.io/mt/101079192/7686176
Group Owner: devel+owner@edk2.groups.io
Unsubscribe: https://edk2.groups.io/g/devel/unsub [rebecca@openfw.io]
-=-=-=-=-=-=-=-=-=-=-=-



^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [edk2-devel] [edk2-platfoms][PATCH V1] WhitleyOpenBoardPkg :Updated PcdFlashFvSecuritySize for JunctionCity and Aowanda platform
  2023-08-31 17:53 [edk2-devel] [edk2-platfoms][PATCH V1] WhitleyOpenBoardPkg :Updated PcdFlashFvSecuritySize for JunctionCity and Aowanda platform Ramkumar Krishnamoorthi via groups.io
  2023-09-08  1:31 ` Nate DeSimone
@ 2023-09-08  1:33 ` Nate DeSimone
  1 sibling, 0 replies; 3+ messages in thread
From: Nate DeSimone @ 2023-09-08  1:33 UTC (permalink / raw)
  To: Ramkumar Krishnamoorthi, devel@edk2.groups.io
  Cc: DOPPALAPUDI, HARIKRISHNA, Ponnusamy, Suresh,
	KARPAGAVINAYAGAM, MANICKAVASAKAM, Venkatesan, Selvaraj,
	Isaac Oram

Pushed: https://github.com/tianocore/edk2-platforms/commit/bb6841e

-----Original Message-----
From: Ramkumar Krishnamoorthi <ramkumark@ami.com> 
Sent: Thursday, August 31, 2023 10:53 AM
To: devel@edk2.groups.io
Cc: DOPPALAPUDI, HARIKRISHNA <harikrishnad@ami.com>; Ponnusamy, Suresh <sureshkumarp@ami.com>; KARPAGAVINAYAGAM, MANICKAVASAKAM <manickavasakamk@ami.com>; Venkatesan, Selvaraj <selvarajv@ami.com>; Ramkumar Krishnamoorthi <ramkumark@ami.com>; Isaac Oram <isaac.w.oram@intel.com>; Desimone, Nathaniel L <nathaniel.l.desimone@intel.com>
Subject: [edk2-platfoms][PATCH V1] WhitleyOpenBoardPkg :Updated PcdFlashFvSecuritySize for JunctionCity and Aowanda platform

Subject: [edk2-platfoms][PATCH V1] WhitleyOpenBoardPkg : Updated  PcdFlashFvSecuritySize for JunctionCity and Aowanda platform

Fix to resolve the build error for JunctionCity and Aowanda platform.
Updated PcdFlashFvSecuritySize in JunctionCity\PlatformPkg.fdf and Aowanda\PlatformPkg.fdf


Cc: Harikrishna Doppalapudi <harikrishnad@ami.com>
Cc: Sureshkumar Ponnusamy <sureshkumarp@ami.com>
Cc: Manickavasakam Karpagavinayagam <manickavasakamk@ami.com>
Cc: Selvaraj V <selvarajv@ami.com>
Cc: Ramkumar Krishnamoorthi <ramkumark@ami.com>

Cc: Isaac Oram <isaac.w.oram@intel.com>

Cc: Nate DeSimone <nathaniel.l.desimone@intel.com>



Signed-off-by: Ramkumar Krishnamoorthi <ramkumark@ami.com>
---
 Platform/Intel/WhitleyOpenBoardPkg/Aowanda/PlatformPkg.fdf      | 2 +-
 Platform/Intel/WhitleyOpenBoardPkg/JunctionCity/PlatformPkg.fdf | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/Platform/Intel/WhitleyOpenBoardPkg/Aowanda/PlatformPkg.fdf b/Platform/Intel/WhitleyOpenBoardPkg/Aowanda/PlatformPkg.fdf
index 2d3cd094fd..3fe78b7e6f 100644
--- a/Platform/Intel/WhitleyOpenBoardPkg/Aowanda/PlatformPkg.fdf
+++ b/Platform/Intel/WhitleyOpenBoardPkg/Aowanda/PlatformPkg.fdf
@@ -189,7 +189,7 @@ SET gMinPlatformPkgTokenSpaceGuid.PcdFlashAreaSize         = 0x01000000
   # This makes it easy to adjust the various sizes without having to manually calculate the offsets.
   # These are out of flash layout order because FvAdvanced gets any remaining space
   #
-  SET gMinPlatformPkgTokenSpaceGuid.PcdFlashFvSecuritySize      = 0x00040000
+  SET gMinPlatformPkgTokenSpaceGuid.PcdFlashFvSecuritySize      = 0x00050000
   SET gMinPlatformPkgTokenSpaceGuid.PcdFlashFvOsBootSize        = 0x00230000
   SET gMinPlatformPkgTokenSpaceGuid.PcdFlashFvUefiBootSize      = 0x0004C000
   SET gMinPlatformPkgTokenSpaceGuid.PcdFlashFvAdvancedSize      = gCpPlatFlashTokenSpaceGuid.PcdFlashFdMainSize - gMinPlatformPkgTokenSpaceGuid.PcdFlashFvUefiBootSize - gMinPlatformPkgTokenSpaceGuid.PcdFlashFvOsBootSize - gMinPlatformPkgTokenSpaceGuid.PcdFlashFvSecuritySize
diff --git a/Platform/Intel/WhitleyOpenBoardPkg/JunctionCity/PlatformPkg.fdf b/Platform/Intel/WhitleyOpenBoardPkg/JunctionCity/PlatformPkg.fdf
index c63442508b..e120ff143a 100644
--- a/Platform/Intel/WhitleyOpenBoardPkg/JunctionCity/PlatformPkg.fdf
+++ b/Platform/Intel/WhitleyOpenBoardPkg/JunctionCity/PlatformPkg.fdf
@@ -189,7 +189,7 @@ SET gMinPlatformPkgTokenSpaceGuid.PcdFlashAreaSize         = 0x01000000
   # This makes it easy to adjust the various sizes without having to manually calculate the offsets.
   # These are out of flash layout order because FvAdvanced gets any remaining space
   #
-  SET gMinPlatformPkgTokenSpaceGuid.PcdFlashFvSecuritySize      = 0x00040000
+  SET gMinPlatformPkgTokenSpaceGuid.PcdFlashFvSecuritySize      = 0x00050000
   SET gMinPlatformPkgTokenSpaceGuid.PcdFlashFvOsBootSize        = 0x00230000
   SET gMinPlatformPkgTokenSpaceGuid.PcdFlashFvUefiBootSize      = 0x0004C000
   SET gMinPlatformPkgTokenSpaceGuid.PcdFlashFvAdvancedSize      = gCpPlatFlashTokenSpaceGuid.PcdFlashFdMainSize - gMinPlatformPkgTokenSpaceGuid.PcdFlashFvUefiBootSize - gMinPlatformPkgTokenSpaceGuid.PcdFlashFvOsBootSize - gMinPlatformPkgTokenSpaceGuid.PcdFlashFvSecuritySize
--
2.37.1.windows.1
-The information contained in this message may be confidential and proprietary to American Megatrends (AMI). This communication is intended to be read only by the individual or entity to whom it is addressed or by their designee. If the reader of this message is not the intended recipient, you are on notice that any distribution of this message, in any form, is strictly prohibited. Please promptly notify the sender by reply e-mail or by telephone at 770-246-8600, and then delete or destroy all copies of the transmission.


-=-=-=-=-=-=-=-=-=-=-=-
Groups.io Links: You receive all messages sent to this group.
View/Reply Online (#108435): https://edk2.groups.io/g/devel/message/108435
Mute This Topic: https://groups.io/mt/101079192/7686176
Group Owner: devel+owner@edk2.groups.io
Unsubscribe: https://edk2.groups.io/g/devel/unsub [rebecca@openfw.io]
-=-=-=-=-=-=-=-=-=-=-=-



^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2023-09-08  1:33 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-08-31 17:53 [edk2-devel] [edk2-platfoms][PATCH V1] WhitleyOpenBoardPkg :Updated PcdFlashFvSecuritySize for JunctionCity and Aowanda platform Ramkumar Krishnamoorthi via groups.io
2023-09-08  1:31 ` Nate DeSimone
2023-09-08  1:33 ` Nate DeSimone

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox