Re: [edk2] Duplicate PCDs in DSC files

2014-08-26 Thread El-Haj-Mahmoud, Samer
Andrew,

A summary section in the build log sounds like a good suggestion. My main 
complaint is that it is not easy to find such build results which are buried 
deep in the -y/-Y log output.

Thanks,
--Samer

From: Andrew Fish [mailto:af...@apple.com]
Sent: Tuesday, August 26, 2014 12:28 PM
To: edk2-devel@lists.sourceforge.net
Subject: Re: [edk2] Duplicate PCDs in DSC files


On Aug 26, 2014, at 9:22 AM, El-Haj-Mahmoud, Samer 
mailto:samer.el-haj-mahm...@hp.com>> wrote:


I take that back, you are correct that the type needs to be one type in the 
DSC. Does the build tool actually check that the multiple instances of PCDs (in 
a DSC build) use a common type?

My request is to add the (optional) ability to break the build if a PCD shows 
up more than once in the DSC


Samer,

I was thinking about the issue of how easy it is to add a file to the .dsc and 
to forget to add it to the .fdf file. It is not really an error, like your case 
above, but it would be good to know about.

I was wondering if the build log could have a summary section that contained 
information like this in an easy to read, and easy to find format. So it could 
be a list of .inf files not in an .fdf file (assuming the .dsc points to an 
.fdf), or PCD values that have multiple values.

Thanks,

Andrew Fish



From: El-Haj-Mahmoud, Samer
Sent: Tuesday, August 26, 2014 11:12 AM
To: edk2-devel@lists.sourceforge.net<mailto:edk2-devel@lists.sourceforge.net>
Subject: Re: [edk2] Duplicate PCDs in DSC files

Liming,

"But, PCD type must be set to one type in DSC file."

This is not true. The build tools are not enforcing this. You can have multiple 
values for a PCD in the DSC file, and the tools will pick the last one. Hence, 
my ask for a modification to the build tools to enforce this and break the 
build if duplicate PCDs are found in the DSC file (even if it is an optional 
tool parameter).

Thanks,
--Samer

From: Gao, Liming [mailto:liming@intel.com]
Sent: Tuesday, August 26, 2014 9:10 AM
To: edk2-devel@lists.sourceforge.net<mailto:edk2-devel@lists.sourceforge.net>
Subject: Re: [edk2] Duplicate PCDs in DSC files

PCD value could be overridden. You can give one common value. The different 
module could have their value. But, PCD type must be set to one type in DSC 
file.

EDKII Build tool provides the option -y and -Y to dump all PCD value and type 
for each driver. -y to specify the report file name. -Y specify the report 
type. For PCD, you can type build -y log -Y PCD. Then, you can know what PCD 
value is used for your driver.

Thanks
Liming
From: Olivier Martin [mailto:olivier.mar...@arm.com]
Sent: Tuesday, August 26, 2014 7:19 PM
To: edk2-devel@lists.sourceforge.net<mailto:edk2-devel@lists.sourceforge.net>
Subject: Re: [edk2] Duplicate PCDs in DSC files

I am not sure the BaseTools has already raised a warning/error on multiple PCD 
definitions.
In our build system, it automatically appends 
'gEfiMdeModulePkgTokenSpaceGuid.PcdFirmwareVersionString' at the end of the DSC 
file to track the built binaries.
And I have not seen any issue in case PcdFirmwareVersionString was already 
defined.

From: El-Haj-Mahmoud, Samer [mailto:samer.el-haj-mahm...@hp.com]
Sent: 25 August 2014 18:59
To: edk2-devel@lists.sourceforge.net<mailto:edk2-devel@lists.sourceforge.net>
Subject: [edk2] Duplicate PCDs in DSC files

It looks like the build tools will not warn you (or stop with an error) if 
there are multiple declarations of the same PCD in the DSC file. In fact, the 
same PCD could be initialized multiple times using different values and 
different types (Fixed vs. Dynamic for instance), and the build tools will 
silently pick the last instance of the PCD in the DSC File.

We just finished debugging a nasty issue caused by duplicate PCDs, and it would 
have been nice to prevent this to begin with! Looks to me like a bug in the 
tool.

Can we add the ability to break the build if there are duplicate PCD instances 
in the DSC file?




Samer El-Haj-Mahmoud
System Firmware Architect
HP Servers

el...@hp.com<mailto:el...@hp.com>
T +1.281.514.5973
C +1.512.659.1523
Hewlett-Packard Company
hp.com/go/proliant/uefi<http://hp.com/go/proliant/uefi>



--
Slashdot TV.
Video for Nerds.  Stuff that matters.
http://tv.slashdot.org/___
edk2-devel mailing list
edk2-devel@lists.sourceforge.net<mailto:edk2-devel@lists.sourceforge.net>
https://lists.sourceforge.net/lists/listinfo/edk2-devel

--
Slashdot TV.  
Video for Nerds.  Stuff that matters.
http://tv.slashdot.org/___
edk2-devel mailing list
edk2-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/edk2-devel


Re: [edk2] Duplicate PCDs in DSC files

2014-08-26 Thread Andrew Fish

On Aug 26, 2014, at 9:22 AM, El-Haj-Mahmoud, Samer 
 wrote:

> I take that back, you are correct that the type needs to be one type in the 
> DSC. Does the build tool actually check that the multiple instances of PCDs 
> (in a DSC build) use a common type?
>  
> My request is to add the (optional) ability to break the build if a PCD shows 
> up more than once in the DSC
>  

Samer,

I was thinking about the issue of how easy it is to add a file to the .dsc and 
to forget to add it to the .fdf file. It is not really an error, like your case 
above, but it would be good to know about.

I was wondering if the build log could have a summary section that contained 
information like this in an easy to read, and easy to find format. So it could 
be a list of .inf files not in an .fdf file (assuming the .dsc points to an 
.fdf), or PCD values that have multiple values. 

Thanks,

Andrew Fish

>  
> From: El-Haj-Mahmoud, Samer 
> Sent: Tuesday, August 26, 2014 11:12 AM
> To: edk2-devel@lists.sourceforge.net
> Subject: Re: [edk2] Duplicate PCDs in DSC files
>  
> Liming,
>  
> “But, PCD type must be set to one type in DSC file.”
>  
> This is not true. The build tools are not enforcing this. You can have 
> multiple values for a PCD in the DSC file, and the tools will pick the last 
> one. Hence, my ask for a modification to the build tools to enforce this and 
> break the build if duplicate PCDs are found in the DSC file (even if it is an 
> optional tool parameter).
>  
> Thanks,
> --Samer
>  
> From: Gao, Liming [mailto:liming@intel.com] 
> Sent: Tuesday, August 26, 2014 9:10 AM
> To: edk2-devel@lists.sourceforge.net
> Subject: Re: [edk2] Duplicate PCDs in DSC files
>  
> PCD value could be overridden. You can give one common value. The different 
> module could have their value. But, PCD type must be set to one type in DSC 
> file.
>  
> EDKII Build tool provides the option –y and –Y to dump all PCD value and type 
> for each driver. -y to specify the report file name. -Y specify the report 
> type. For PCD, you can type build -y log -Y PCD. Then, you can know what PCD 
> value is used for your driver.
>  
> Thanks
> Liming
> From: Olivier Martin [mailto:olivier.mar...@arm.com] 
> Sent: Tuesday, August 26, 2014 7:19 PM
> To: edk2-devel@lists.sourceforge.net
> Subject: Re: [edk2] Duplicate PCDs in DSC files
>  
> I am not sure the BaseTools has already raised a warning/error on multiple 
> PCD definitions.
> In our build system, it automatically appends 
> ‘gEfiMdeModulePkgTokenSpaceGuid.PcdFirmwareVersionString’ at the end of the 
> DSC file to track the built binaries.
> And I have not seen any issue in case PcdFirmwareVersionString was already 
> defined.
>  
> From: El-Haj-Mahmoud, Samer [mailto:samer.el-haj-mahm...@hp.com] 
> Sent: 25 August 2014 18:59
> To: edk2-devel@lists.sourceforge.net
> Subject: [edk2] Duplicate PCDs in DSC files
>  
> It looks like the build tools will not warn you (or stop with an error) if 
> there are multiple declarations of the same PCD in the DSC file. In fact, the 
> same PCD could be initialized multiple times using different values and 
> different types (Fixed vs. Dynamic for instance), and the build tools will 
> silently pick the last instance of the PCD in the DSC File.
>  
> We just finished debugging a nasty issue caused by duplicate PCDs, and it 
> would have been nice to prevent this to begin with! Looks to me like a bug in 
> the tool.
>  
> Can we add the ability to break the build if there are duplicate PCD 
> instances in the DSC file?
>  
>  
>  
> 
> Samer El-Haj-Mahmoud
> System Firmware Architect
> HP Servers 
> 
> el...@hp.com 
> T +1.281.514.5973
> C +1.512.659.1523
> Hewlett-Packard Company
> hp.com/go/proliant/uefi
> 
> 
>  
> --
> Slashdot TV.  
> Video for Nerds.  Stuff that matters.
> http://tv.slashdot.org/___
> edk2-devel mailing list
> edk2-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/edk2-devel

--
Slashdot TV.  
Video for Nerds.  Stuff that matters.
http://tv.slashdot.org/___
edk2-devel mailing list
edk2-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/edk2-devel


Re: [edk2] Duplicate PCDs in DSC files

2014-08-26 Thread El-Haj-Mahmoud, Samer
I take that back, you are correct that the type needs to be one type in the 
DSC. Does the build tool actually check that the multiple instances of PCDs (in 
a DSC build) use a common type?

My request is to add the (optional) ability to break the build if a PCD shows 
up more than once in the DSC


From: El-Haj-Mahmoud, Samer
Sent: Tuesday, August 26, 2014 11:12 AM
To: edk2-devel@lists.sourceforge.net
Subject: Re: [edk2] Duplicate PCDs in DSC files

Liming,

"But, PCD type must be set to one type in DSC file."

This is not true. The build tools are not enforcing this. You can have multiple 
values for a PCD in the DSC file, and the tools will pick the last one. Hence, 
my ask for a modification to the build tools to enforce this and break the 
build if duplicate PCDs are found in the DSC file (even if it is an optional 
tool parameter).

Thanks,
--Samer

From: Gao, Liming [mailto:liming@intel.com]
Sent: Tuesday, August 26, 2014 9:10 AM
To: edk2-devel@lists.sourceforge.net<mailto:edk2-devel@lists.sourceforge.net>
Subject: Re: [edk2] Duplicate PCDs in DSC files

PCD value could be overridden. You can give one common value. The different 
module could have their value. But, PCD type must be set to one type in DSC 
file.

EDKII Build tool provides the option -y and -Y to dump all PCD value and type 
for each driver. -y to specify the report file name. -Y specify the report 
type. For PCD, you can type build -y log -Y PCD. Then, you can know what PCD 
value is used for your driver.

Thanks
Liming
From: Olivier Martin [mailto:olivier.mar...@arm.com]
Sent: Tuesday, August 26, 2014 7:19 PM
To: edk2-devel@lists.sourceforge.net<mailto:edk2-devel@lists.sourceforge.net>
Subject: Re: [edk2] Duplicate PCDs in DSC files

I am not sure the BaseTools has already raised a warning/error on multiple PCD 
definitions.
In our build system, it automatically appends 
'gEfiMdeModulePkgTokenSpaceGuid.PcdFirmwareVersionString' at the end of the DSC 
file to track the built binaries.
And I have not seen any issue in case PcdFirmwareVersionString was already 
defined.

From: El-Haj-Mahmoud, Samer [mailto:samer.el-haj-mahm...@hp.com]
Sent: 25 August 2014 18:59
To: edk2-devel@lists.sourceforge.net<mailto:edk2-devel@lists.sourceforge.net>
Subject: [edk2] Duplicate PCDs in DSC files

It looks like the build tools will not warn you (or stop with an error) if 
there are multiple declarations of the same PCD in the DSC file. In fact, the 
same PCD could be initialized multiple times using different values and 
different types (Fixed vs. Dynamic for instance), and the build tools will 
silently pick the last instance of the PCD in the DSC File.

We just finished debugging a nasty issue caused by duplicate PCDs, and it would 
have been nice to prevent this to begin with! Looks to me like a bug in the 
tool.

Can we add the ability to break the build if there are duplicate PCD instances 
in the DSC file?




Samer El-Haj-Mahmoud
System Firmware Architect
HP Servers

el...@hp.com<mailto:el...@hp.com>
T +1.281.514.5973
C +1.512.659.1523
Hewlett-Packard Company
hp.com/go/proliant/uefi<http://hp.com/go/proliant/uefi>

[Description: Description: C:\Users\elhajmah\HpLogo.png]

--
Slashdot TV.  
Video for Nerds.  Stuff that matters.
http://tv.slashdot.org/___
edk2-devel mailing list
edk2-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/edk2-devel


Re: [edk2] Duplicate PCDs in DSC files

2014-08-26 Thread El-Haj-Mahmoud, Samer
Liming,

"But, PCD type must be set to one type in DSC file."

This is not true. The build tools are not enforcing this. You can have multiple 
values for a PCD in the DSC file, and the tools will pick the last one. Hence, 
my ask for a modification to the build tools to enforce this and break the 
build if duplicate PCDs are found in the DSC file (even if it is an optional 
tool parameter).

Thanks,
--Samer

From: Gao, Liming [mailto:liming@intel.com]
Sent: Tuesday, August 26, 2014 9:10 AM
To: edk2-devel@lists.sourceforge.net
Subject: Re: [edk2] Duplicate PCDs in DSC files

PCD value could be overridden. You can give one common value. The different 
module could have their value. But, PCD type must be set to one type in DSC 
file.

EDKII Build tool provides the option -y and -Y to dump all PCD value and type 
for each driver. -y to specify the report file name. -Y specify the report 
type. For PCD, you can type build -y log -Y PCD. Then, you can know what PCD 
value is used for your driver.

Thanks
Liming
From: Olivier Martin [mailto:olivier.mar...@arm.com]
Sent: Tuesday, August 26, 2014 7:19 PM
To: edk2-devel@lists.sourceforge.net<mailto:edk2-devel@lists.sourceforge.net>
Subject: Re: [edk2] Duplicate PCDs in DSC files

I am not sure the BaseTools has already raised a warning/error on multiple PCD 
definitions.
In our build system, it automatically appends 
'gEfiMdeModulePkgTokenSpaceGuid.PcdFirmwareVersionString' at the end of the DSC 
file to track the built binaries.
And I have not seen any issue in case PcdFirmwareVersionString was already 
defined.

From: El-Haj-Mahmoud, Samer [mailto:samer.el-haj-mahm...@hp.com]
Sent: 25 August 2014 18:59
To: edk2-devel@lists.sourceforge.net<mailto:edk2-devel@lists.sourceforge.net>
Subject: [edk2] Duplicate PCDs in DSC files

It looks like the build tools will not warn you (or stop with an error) if 
there are multiple declarations of the same PCD in the DSC file. In fact, the 
same PCD could be initialized multiple times using different values and 
different types (Fixed vs. Dynamic for instance), and the build tools will 
silently pick the last instance of the PCD in the DSC File.

We just finished debugging a nasty issue caused by duplicate PCDs, and it would 
have been nice to prevent this to begin with! Looks to me like a bug in the 
tool.

Can we add the ability to break the build if there are duplicate PCD instances 
in the DSC file?




Samer El-Haj-Mahmoud
System Firmware Architect
HP Servers

el...@hp.com<mailto:el...@hp.com>
T +1.281.514.5973
C +1.512.659.1523
Hewlett-Packard Company
hp.com/go/proliant/uefi<http://hp.com/go/proliant/uefi>

[Description: Description: C:\Users\elhajmah\HpLogo.png]

--
Slashdot TV.  
Video for Nerds.  Stuff that matters.
http://tv.slashdot.org/___
edk2-devel mailing list
edk2-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/edk2-devel


Re: [edk2] Duplicate PCDs in DSC files

2014-08-26 Thread Gao, Liming
PCD value could be overridden. You can give one common value. The different 
module could have their value. But, PCD type must be set to one type in DSC 
file.

EDKII Build tool provides the option -y and -Y to dump all PCD value and type 
for each driver. -y to specify the report file name. -Y specify the report 
type. For PCD, you can type build -y log -Y PCD. Then, you can know what PCD 
value is used for your driver.

Thanks
Liming
From: Olivier Martin [mailto:olivier.mar...@arm.com]
Sent: Tuesday, August 26, 2014 7:19 PM
To: edk2-devel@lists.sourceforge.net
Subject: Re: [edk2] Duplicate PCDs in DSC files

I am not sure the BaseTools has already raised a warning/error on multiple PCD 
definitions.
In our build system, it automatically appends 
'gEfiMdeModulePkgTokenSpaceGuid.PcdFirmwareVersionString' at the end of the DSC 
file to track the built binaries.
And I have not seen any issue in case PcdFirmwareVersionString was already 
defined.

From: El-Haj-Mahmoud, Samer [mailto:samer.el-haj-mahm...@hp.com]
Sent: 25 August 2014 18:59
To: edk2-devel@lists.sourceforge.net<mailto:edk2-devel@lists.sourceforge.net>
Subject: [edk2] Duplicate PCDs in DSC files

It looks like the build tools will not warn you (or stop with an error) if 
there are multiple declarations of the same PCD in the DSC file. In fact, the 
same PCD could be initialized multiple times using different values and 
different types (Fixed vs. Dynamic for instance), and the build tools will 
silently pick the last instance of the PCD in the DSC File.

We just finished debugging a nasty issue caused by duplicate PCDs, and it would 
have been nice to prevent this to begin with! Looks to me like a bug in the 
tool.

Can we add the ability to break the build if there are duplicate PCD instances 
in the DSC file?




Samer El-Haj-Mahmoud
System Firmware Architect
HP Servers

el...@hp.com<mailto:el...@hp.com>
T +1.281.514.5973
C +1.512.659.1523
Hewlett-Packard Company
hp.com/go/proliant/uefi<http://hp.com/go/proliant/uefi>

[Description: Description: C:\Users\elhajmah\HpLogo.png]

--
Slashdot TV.  
Video for Nerds.  Stuff that matters.
http://tv.slashdot.org/___
edk2-devel mailing list
edk2-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/edk2-devel


Re: [edk2] Duplicate PCDs in DSC files

2014-08-26 Thread Olivier Martin
I am not sure the BaseTools has already raised a warning/error on multiple
PCD definitions.

In our build system, it automatically appends
'gEfiMdeModulePkgTokenSpaceGuid.PcdFirmwareVersionString' at the end of the
DSC file to track the built binaries.

And I have not seen any issue in case PcdFirmwareVersionString was already
defined.

 

From: El-Haj-Mahmoud, Samer [mailto:samer.el-haj-mahm...@hp.com] 
Sent: 25 August 2014 18:59
To: edk2-devel@lists.sourceforge.net
Subject: [edk2] Duplicate PCDs in DSC files

 

It looks like the build tools will not warn you (or stop with an error) if
there are multiple declarations of the same PCD in the DSC file. In fact,
the same PCD could be initialized multiple times using different values and
different types (Fixed vs. Dynamic for instance), and the build tools will
silently pick the last instance of the PCD in the DSC File.

 

We just finished debugging a nasty issue caused by duplicate PCDs, and it
would have been nice to prevent this to begin with! Looks to me like a bug
in the tool.

 

Can we add the ability to break the build if there are duplicate PCD
instances in the DSC file?

 

 

 


Samer El-Haj-Mahmoud
System Firmware Architect
HP Servers 

 <mailto:el...@hp.com> el...@hp.com 
T +1.281.514.5973

C +1.512.659.1523
Hewlett-Packard Company
 <http://hp.com/go/proliant/uefi> hp.com/go/proliant/uefi

Description: Description: C:\Users\elhajmah\HpLogo.png

 
--
Slashdot TV.  
Video for Nerds.  Stuff that matters.
http://tv.slashdot.org/___
edk2-devel mailing list
edk2-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/edk2-devel


Re: [edk2] Duplicate PCDs in DSC files

2014-08-25 Thread El-Haj-Mahmoud, Samer
In this case, there should at least be a build tool option to break the build 
if duplicates are found.


From: Tim Lewis [mailto:tim.le...@insyde.com]
Sent: Monday, August 25, 2014 5:04 PM
To: edk2-devel@lists.sourceforge.net
Subject: Re: [edk2] Duplicate PCDs in DSC files

Samer -

I would say that there are tool chains the depend on the last-instance winning. 
Consider the case of #included .dsc files where the included .dsc has the 
default value/storage type and the final resolution done later in the including 
file.

Tim

From: El-Haj-Mahmoud, Samer [mailto:samer.el-haj-mahm...@hp.com]
Sent: Tuesday, August 26, 2014 1:59 AM
To: edk2-devel@lists.sourceforge.net<mailto:edk2-devel@lists.sourceforge.net>
Subject: [edk2] Duplicate PCDs in DSC files

It looks like the build tools will not warn you (or stop with an error) if 
there are multiple declarations of the same PCD in the DSC file. In fact, the 
same PCD could be initialized multiple times using different values and 
different types (Fixed vs. Dynamic for instance), and the build tools will 
silently pick the last instance of the PCD in the DSC File.

We just finished debugging a nasty issue caused by duplicate PCDs, and it would 
have been nice to prevent this to begin with! Looks to me like a bug in the 
tool.

Can we add the ability to break the build if there are duplicate PCD instances 
in the DSC file?




Samer El-Haj-Mahmoud
System Firmware Architect
HP Servers

el...@hp.com<mailto:el...@hp.com>
T +1.281.514.5973
C +1.512.659.1523
Hewlett-Packard Company
hp.com/go/proliant/uefi<http://hp.com/go/proliant/uefi>

[Description: Description: C:\Users\elhajmah\HpLogo.png]

--
Slashdot TV.  
Video for Nerds.  Stuff that matters.
http://tv.slashdot.org/___
edk2-devel mailing list
edk2-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/edk2-devel


Re: [edk2] Duplicate PCDs in DSC files

2014-08-25 Thread Tim Lewis
Samer -

I would say that there are tool chains the depend on the last-instance winning. 
Consider the case of #included .dsc files where the included .dsc has the 
default value/storage type and the final resolution done later in the including 
file.

Tim

From: El-Haj-Mahmoud, Samer [mailto:samer.el-haj-mahm...@hp.com]
Sent: Tuesday, August 26, 2014 1:59 AM
To: edk2-devel@lists.sourceforge.net
Subject: [edk2] Duplicate PCDs in DSC files

It looks like the build tools will not warn you (or stop with an error) if 
there are multiple declarations of the same PCD in the DSC file. In fact, the 
same PCD could be initialized multiple times using different values and 
different types (Fixed vs. Dynamic for instance), and the build tools will 
silently pick the last instance of the PCD in the DSC File.

We just finished debugging a nasty issue caused by duplicate PCDs, and it would 
have been nice to prevent this to begin with! Looks to me like a bug in the 
tool.

Can we add the ability to break the build if there are duplicate PCD instances 
in the DSC file?




Samer El-Haj-Mahmoud
System Firmware Architect
HP Servers

el...@hp.com<mailto:el...@hp.com>
T +1.281.514.5973
C +1.512.659.1523
Hewlett-Packard Company
hp.com/go/proliant/uefi<http://hp.com/go/proliant/uefi>

[Description: Description: C:\Users\elhajmah\HpLogo.png]

--
Slashdot TV.  
Video for Nerds.  Stuff that matters.
http://tv.slashdot.org/___
edk2-devel mailing list
edk2-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/edk2-devel


[edk2] Duplicate PCDs in DSC files

2014-08-25 Thread El-Haj-Mahmoud, Samer
It looks like the build tools will not warn you (or stop with an error) if 
there are multiple declarations of the same PCD in the DSC file. In fact, the 
same PCD could be initialized multiple times using different values and 
different types (Fixed vs. Dynamic for instance), and the build tools will 
silently pick the last instance of the PCD in the DSC File.

We just finished debugging a nasty issue caused by duplicate PCDs, and it would 
have been nice to prevent this to begin with! Looks to me like a bug in the 
tool.

Can we add the ability to break the build if there are duplicate PCD instances 
in the DSC file?




Samer El-Haj-Mahmoud
System Firmware Architect
HP Servers

el...@hp.com
T +1.281.514.5973
C +1.512.659.1523
Hewlett-Packard Company
hp.com/go/proliant/uefi

[Description: Description: C:\Users\elhajmah\HpLogo.png]

--
Slashdot TV.  
Video for Nerds.  Stuff that matters.
http://tv.slashdot.org/___
edk2-devel mailing list
edk2-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/edk2-devel