IntelFspPkg/GenCfgOpt tool add embed structure.

The EMBED command allows you to put one or more UPD data into a specify data 
structure. You can utilize it as a group of UPD for example. You must specify a 
start and an end for the specify data structure.
Example:
     !HDR EMBED:{MY_DATA_STRUCT:MyDataStructure:START}
     gTokenSpaceGuid.Upd1  | 0x0020 | 0x01 | 0x00
     gTokenSpaceGuid.Upd2  | 0x0021 | 0x01 | 0x00
     !HDR EMBED:{MY_DATA_STRUCT:MyDataStructure:END}
     gTokenSpaceGuid.UpdN  | 0x0022 | 0x01 | 0x00
Result:
                  typedef struct {
                  /** Offset 0x0020
                  **/
                  UINT8                     Upd1;
                  /** Offset 0x0021
                  **/
                  UINT8                     Upd2;
                  /** Offset 0x0022
                  **/
                  UINT8                     UpdN;
                  }  MY_DATA_STRUCT;

                  typedef struct _UPD_DATA_REGION {
                  ...
                  /** Offset 0x0020
                  **/
                  MY_DATA_STRUCT    MyDataStruct;
                  ...
                    } UPD_DATA_REGION;


Signed-off-by: Ma, Maurice maurice...@intel.com<mailto:maurice...@intel.com>
Reviewed-by: Mudusuru, Giri P 
giri.p.mudus...@intel.com<mailto:giri.p.mudus...@intel.com>
Reviewed-by: Rangarajan, Ravi P 
ravi.p.rangara...@intel.com<mailto:ravi.p.rangara...@intel.com>
Reviewed-by: Yao, Jiewen jiewen....@intel.com<mailto:jiewen....@intel.com>


Attachment: GenCfgOpt.py.patch
Description: GenCfgOpt.py.patch

------------------------------------------------------------------------------
_______________________________________________
edk2-devel mailing list
edk2-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/edk2-devel

Reply via email to