Re: [edk2-devel] Help needed in building UEFI qcow2 images

2019-06-07 Thread Pavan Kumar Aravapalli
Gerd,

I understand that you are mentioning about  systemd image don't use shim, Where 
can we get consolidated information about supporting matrix. Please provide me 
useful link if any available.

Regards,
Pavan.

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

View/Reply Online (#42021): https://edk2.groups.io/g/devel/message/42021
Mute This Topic: https://groups.io/mt/31718606/21656
Group Owner: devel+ow...@edk2.groups.io
Unsubscribe: https://edk2.groups.io/g/devel/unsub  [arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-



Re: [edk2-devel] Help needed in building UEFI qcow2 images

2019-06-06 Thread Laszlo Ersek
Hi Pavan,

On 06/05/19 20:19, Pavan Kumar Aravapalli wrote:
> Laszlo,
> 
> Finally...! I am successfully able to boot guest vm in secure mode, attached 
> the screenshot for the same. Secure boot works fine with out enforcing keys 
> from UefiShell.iso, As suggested i have used the image 
> fedora-29-efi-grub2-x86_64.qcow2.xz. However i have learnt many new things 
> from these conversations. A big 'Thanks to you' for your support and 
> resolving my questionaries.
> 
> Though I am yet to learn many things about 'UEFI' and it's different 
> specification this will be good motivation for me to proceed with further.

Cool, thanks for reporting back :)

Laszlo

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

View/Reply Online (#41983): https://edk2.groups.io/g/devel/message/41983
Mute This Topic: https://groups.io/mt/31718606/21656
Group Owner: devel+ow...@edk2.groups.io
Unsubscribe: https://edk2.groups.io/g/devel/unsub  [arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-



Re: [edk2-devel] Help needed in building UEFI qcow2 images

2019-06-05 Thread Gerd Hoffmann
  Hi,

> However: you're using a systemd-related UEFI boot loader, and I have
> no clue whether it implements the above-referenced "fallback"
> behavior. For now, I would suggest trying the shim+grub2 variant, and
> even Fedora 29 rather than Fedora 28:
> "fedora-29-efi-grub2-x86_64.qcow2.xz".

I can boot the images just fine with empty vars.

Just noticed that the systemd image has a lowercase efi directory, so
the fallback bootloader path is "efi/BOOT/BOOTX64.EFI" not
"EFI/BOOT/BOOTX64.EFI".  Possibly that is the root cause for the
problem.  In theory it should not, FAT is case-insensitive after all,
but who knows ...

> ... I guess it's also possible that the UEFI boot loader in the disk
> image that you've tried isn't properly signed, against the
> certificates enrolled in "/usr/share/OVMF/OVMF_VARS.secboot.fd". If
> that's the case, the OVMF debug log will show it.

Oh, in secure boot mode.  The systemd images don't use shim, so that
most likely isn't going to fly due to bootloader being unsigned.  The
grub2 variants should work.  Never actually tested that though.  

cheers,
  Gerd


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

View/Reply Online (#41927): https://edk2.groups.io/g/devel/message/41927
Mute This Topic: https://groups.io/mt/31718606/21656
Group Owner: devel+ow...@edk2.groups.io
Unsubscribe: https://edk2.groups.io/g/devel/unsub  [arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-



Re: [edk2-devel] Help needed in building UEFI qcow2 images

2019-06-04 Thread Laszlo Ersek
Pavan,

On 06/03/19 21:21, Pavan Kumar Aravapalli wrote:

> * We have CentOS flavoured qcow2 image which is used to boot Guest
>   VM's in Apache CloudStack. We are trying to enable these CentOS
>   qcow2 images with UEFI support.

I told you weeks ago to take this question to the CentOS mailing list.

https://edk2.groups.io/g/devel/message/40531

Have you done that?

Also, what prevents you from installing a CentOS guest in UEFI mode from
scratch, and using the resultant disk image as a template?

Anyway, I guess I'm going to send them a separate message, and CC you.


> * I have been struggling to secure boot Guest VM using UEFI.  I have
>   enclosed my secure boot domain dumpxml [secure-vm.xml]with this mail
>   too. When i try to boot with this xml i am  ended up with an
>   Exception. I have attached the error screen shot too .

You are using Gerd's "OVMF_CODE-pure-efi.fd" firmware binary. That
binary is not built with -D SECURE_BOOT_ENABLE. Therefore the Secure
Boot related standard UEFI variables are not available (the Secure Boot
feature is missing altogether). That's the reason EnrollDefaultKeys.efi
fails to find the SetupMode variable.


You've mentioned that your host environment is CentOS 7.6. Here's what
you should do:

- Install the latest OVMF package available in that CentOS release. (I
  think it should be
  "OVMF-20180508-3.gitee3198e672e2.el7_6.1.noarch.rpm" at the moment.)

- You already have "qemu-kvm-ev" installed, good.

- If your libvirt domain currently has a variable store file under
  "/var/lib/libvirt/qemu/nvram/", then delete that file (the domain
  should be powered off first).

- Edit your domain XML as follows (only relevant elements quoted):

  

  hvm
  /usr/share/OVMF/OVMF_CODE.secboot.fd
  


  


  /usr/libexec/qemu-kvm

  

- When you next launch this domain, the domain's private varstore file
  (under "/var/lib/libvirt/qemu/nvram/") will be re-created from the
  template specified ("/usr/share/OVMF/OVMF_VARS.secboot.fd"). The
  Secure Boot operational mode will be enabled at once, and you will not
  have to run EnrollDefaultKeys.efi manually.

Hope this helps,
Laszlo

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

View/Reply Online (#41858): https://edk2.groups.io/g/devel/message/41858
Mute This Topic: https://groups.io/mt/31718606/21656
Group Owner: devel+ow...@edk2.groups.io
Unsubscribe: https://edk2.groups.io/g/devel/unsub  [arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-



Re: [edk2-devel] Help needed in building UEFI qcow2 images

2019-05-23 Thread Laszlo Ersek
On 05/22/19 21:10, Andrew Fish via Groups.Io wrote:
> Laszlo,
> 
> Sorry I got the attachment too. It was just scrolled off the screen after the 
> boiler plate. 
> 
> 
> Groups.io  Links:
> You receive all messages sent to this group.
> 
> View/Reply Online (#41228)  | | 
> Mute This Topic  | New Topic 
> 
> 
> Your Subscription  | Contact 
> Group Owner  | Unsubscribe 
>  [af...@apple.com 
> ]
> 
> 
> Sorry for the waste of time.

No, I think this is justified (mild) criticism on that large banner at
the end of reflected messages. I noticed the attachment immediately only
because my MUA (ThunderBird) displays such outside of the scrollable
email body, in two places actually (in the "threaded subjects" pane at
the top, and in the attachment pane at the bottom). I'd prefer if the
whole "-=-=-=-=-=-=-=-=-=-=-=-" footer disappeared from reflected
messages, and groups.io just implemented message-id-based search.

(There were two other aggravating factors: the original "DISCLAIMER" at
the end of the original posting, retained in the context, and
top-posting in the response to the original email.)

To be honest -- where I'm completely lost on occasion is "modern"
websites. From the recent past: the "hamburger icon" on StackOverflow,
which users have to click in order to pull up the Log Out option, takes
the cake. There are even StackOverflow threads about logging out of
StackOverflow, I kid you not:

https://meta.stackoverflow.com/questions/294881/how-does-one-logout-from-stack-overflow

https://meta.stackoverflow.com/questions/254109/how-can-i-log-out-from-stack-overflow

Thanks,
Laszlo

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

View/Reply Online (#41278): https://edk2.groups.io/g/devel/message/41278
Mute This Topic: https://groups.io/mt/31718606/21656
Group Owner: devel+ow...@edk2.groups.io
Unsubscribe: https://edk2.groups.io/g/devel/unsub  [arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-



Re: [edk2-devel] Help needed in building UEFI qcow2 images

2019-05-22 Thread Laszlo Ersek
On 05/22/19 17:58, Andrew Fish via Groups.Io wrote:
> Tom,
> 
> Looks like the mailing list stripped your attachment. 

I got the attachment OK, and I also see it in both mail archives:

https://edk2.groups.io/g/devel/message/41228

ed4cfca6710b43f78ea5d6d05a87b676@ukex01.SolarFlarecom.com">http://mid.mail-archive.com/ed4cfca6710b43f78ea5d6d05a87b676@ukex01.SolarFlarecom.com

Thanks,
Laszlo

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

View/Reply Online (#41240): https://edk2.groups.io/g/devel/message/41240
Mute This Topic: https://groups.io/mt/31718606/21656
Group Owner: devel+ow...@edk2.groups.io
Unsubscribe: https://edk2.groups.io/g/devel/unsub  [arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-



Re: [edk2-devel] Help needed in building UEFI qcow2 images

2019-05-22 Thread Andrew Fish via Groups.Io
It should work Stephano is going to take a look. 

Thanks,

Andrew Fish

> On May 22, 2019, at 9:57 AM, Tomas Pilar (tpilar)  
> wrote:
> 
> Thanks Andrew,
> 
> I thought that groups.io is supposed to allow attachments?
> 
> Anyway snippet below:
> 
> 
> 
> 
>   Qemu Test
>   6a92c8c3-c6b4-4b57-a164-0a9917eeaf19
>   2097152
>   2097152
>   2
>   
> /machine
>   
>   
> hvm
> 
>  type='pflash'>/tmp/ovmf-test/OVMF_CODE.fd
>  template='/tmp/ovmf-test/OVMF_VARS.fd'>/tmp/ovmf-test/OVMF_VARS2.fd
>   
>   
> 
> 
>   
>   
> 
> 
> 
>   
>   preserve
>   restart
>   preserve
>   
> 
> 
>   
>   
> /usr/libexec/qemu-kvm
> 
>   
> 
> 
>   
> [ADDRESS]
>   
> 
> 
>   
>   
>   
> 
> 
>   
>   
>   
> 
> 
>   
> 
> 
>   
> 
> 
>   
>   
> 
> 
>primary='yes'/>
>   
>function='0x0'/>
> 
> 
>   /dev/urandom
>   
>function='0x0'/>
> 
>   
> 
> 
> --
> 
> On 22/05/2019 16:58, Andrew Fish via Groups.Io wrote:
>> Tom,
>> 
>> Looks like the mailing list stripped your attachment. 
>> 
>> Thanks,
>> 
>> Andrew Fish
>> 
>>> On May 22, 2019, at 4:19 AM, Tomas Pilar (tpilar) >> <mailto:tpi...@solarflare.com>> wrote:
>>> 
>>> Hi Pavan,
>>>
>>> I am currently playing around with setting up a OVMF based test framework 
>>> myself. You likely need to tell qemu to use OVMF as it’s firmware. I attach 
>>> my current working libvirt XML file for creating UEFI VMs (diskless) – note 
>>> the  and the  elements within the  element.
>>>
>>> You want to add a disk sourced from the qcow image and that should work.
>>>
>>> Cheers,
>>> Tom
>>>
>>> From: devel@edk2.groups.io <mailto:devel@edk2.groups.io> 
>>> mailto:devel@edk2.groups.io>> On Behalf Of Pavan 
>>> Kumar Aravapalli
>>> Sent: 22 May 2019 12:02
>>> To: Devel EDK2 mailto:devel@edk2.groups.io>>
>>> Subject: [edk2-devel] Help needed in building UEFI qcow2 images
>>>
>>> Hi, 
>>> 
>>>
>>> 
>>> [re-posting the question]
>>> 
>>>
>>> 
>>> I am looking for information/documentation which helps me in enabling UEFI 
>>> boot to the existing (KVM)VM template. I am trying for CentOS 6.5(64-bit) 
>>> no GUI 64-bit (KVM) template. 
>>> 
>>>
>>> 
>>>
>>> 
>>> I found some images available over https://www.kraxel.org/repos/images/ 
>>> <https://urldefense.proofpoint.com/v2/url?u=https-3A__www.kraxel.org_repos_images_=DwMFAw=euGZstcaTDllvimEN8b7jXrwqOf-v5A_CdpgnVfiiMM=SzAVyxtJHZm7PriTfxFyvkqqZ_OgUqnNtgjrlf7jVU4=txzCgRJWkEmPJeuUxTWCEaTYpYEUWr6BmgcbVIpvuI0=VNfaavLgc8f7brJsIT2rTlp9QzZRyNUOTsp7rqTHK6E=>
>>>  with fedora os, but I am looking for uefi enabled Cent OS template. It 
>>> would be helpfull if any documentation or steps provided for the same.
>>> 
>>>
>>>
>>> 
>>> Regards, 
>>> 
>>> Pavan.
>>> 
>>> DISCLAIMER
>>> ==
>>> This e-mail may contain privileged and confidential information which is 
>>> the property of Accelerite, a Persistent Systems business. It is intended 
>>> only for the use of the individual or entity to which it is addressed. If 
>>> you are not the intended recipient, you are not authorized to read, retain, 
>>> copy, print, distribute or use this message. If you have received this 
>>> communication in error, please notify the sender and delete all copies of 
>>> this message. Accelerite, a Persistent Systems business does not accept any 
>>> liability for virus infected mails.
>>> 
>> 
>> 
> 


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

View/Reply Online (#41237): https://edk2.groups.io/g/devel/message/41237
Mute This Topic: https://groups.io/mt/31718606/21656
Group Owner: devel+ow...@edk2.groups.io
Unsubscribe: https://edk2.groups.io/g/devel/unsub  [arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-



Re: [edk2-devel] Help needed in building UEFI qcow2 images

2019-05-22 Thread Tomas Pilar (tpilar)

  
  
Thanks Andrew,
  
  I thought that groups.io is supposed to allow attachments?
  
  Anyway snippet below:
  
  
  
  
    Qemu Test
    6a92c8c3-c6b4-4b57-a164-0a9917eeaf19
    2097152
    2097152
    2
    
      /machine
    
    
      hvm
      
      /tmp/ovmf-test/OVMF_CODE.fd
      /tmp/ovmf-test/OVMF_VARS2.fd
    
    
      
      
    
    
      
      
      
    
    preserve
    restart
    preserve
    
      
      
    
    
      /usr/libexec/qemu-kvm
      
    
      
      
    
      [ADDRESS]
    
      
      
    
    
    
      
      
    
    
    
      
      
    
      
      
    
      
      
    
    
      
      
    
    
    
      
      
    /dev/urandom
    
    
      
    
  
  
--

On 22/05/2019 16:58, Andrew Fish via
  Groups.Io wrote:


  
  Tom,
  
  
  Looks like the mailing list stripped your
attachment. 
  
  
  Thanks,
  
  
  Andrew Fish

  
On May 22, 2019, at 4:19 AM, Tomas Pilar
  (tpilar) <tpi...@solarflare.com>
  wrote:


  
Hi Pavan,
 
I am currently playing around with setting
up a OVMF based test framework myself. You likely
need to tell qemu to use OVMF as it’s firmware. I
attach my current working libvirt XML file for
creating UEFI VMs (diskless) – note the
 and the  elements within
the  element.
 
You want to add a disk sourced from the
qcow image and that should work.
 
Cheers,
Tom
 

  
From: devel@edk2.groups.io <devel@edk2.groups.io> On Behalf Of Pavan
Kumar Aravapalli
Sent: 22 May
2019 12:02
To: Devel
EDK2 <devel@edk2.groups.io>
    Subject: [edk2-devel]
        Help needed in building UEFI qcow2 images
  

 

  Hi, 
   
  [re-posting
  the question]
   
  I
  am looking for information/documentation which
  helps me in enabling UEFI boot to the existing
  (KVM)VM template. I am trying for CentOS
  6.5(64-bit) no GUI 64-bit (KVM) template. 
   
   
  I
  found some images available over https://www.kraxel.org/repos/images/ with
  fedora os, but I am looking for uefi enabled Cent
  OS template. It would be helpfull if any
  documentation or steps provided for the same.
   
   
  Regards, 
  Pavan.

DISCLAIMER
  ==
  This e-mail may contain privileged and confidential
  information which is the property of Accelerite, a
  Persistent Systems business. It is intended only for
  the use of the individual or entity to which it is
  addressed. If you are not the intended recipient, you
  are not authorized to read, retain, copy, print,
  distribute or use this message. If you have received
  this communication in error, please notify the sender
  and delete all copies of this message. Accelerite, a
  Persistent Systems business does not accept any
  liability for virus infected mails.
  
  
  


  



  


_._,_._,_

Groups.io Links:

You receive all messages sent to this group.




View/Reply Online (#41235) |





|



Mute This Topic


| New Topic





Your Subscription |
Contact Group Owner |

Unsubscribe

 [arch...@mail-archive.com]
_._,_._,_



Re: [edk2-devel] Help needed in building UEFI qcow2 images

2019-05-22 Thread Andrew Fish via Groups.Io
Tom,

Looks like the mailing list stripped your attachment. 

Thanks,

Andrew Fish

> On May 22, 2019, at 4:19 AM, Tomas Pilar (tpilar)  
> wrote:
> 
> Hi Pavan,
>
> I am currently playing around with setting up a OVMF based test framework 
> myself. You likely need to tell qemu to use OVMF as it’s firmware. I attach 
> my current working libvirt XML file for creating UEFI VMs (diskless) – note 
> the  and the  elements within the  element.
>
> You want to add a disk sourced from the qcow image and that should work.
>
> Cheers,
> Tom
>
> From: devel@edk2.groups.io <mailto:devel@edk2.groups.io> 
> mailto:devel@edk2.groups.io>> On Behalf Of Pavan Kumar 
> Aravapalli
> Sent: 22 May 2019 12:02
> To: Devel EDK2 mailto:devel@edk2.groups.io>>
> Subject: [edk2-devel] Help needed in building UEFI qcow2 images
>
> Hi, 
> 
>
> 
> [re-posting the question]
> 
>
> 
> I am looking for information/documentation which helps me in enabling UEFI 
> boot to the existing (KVM)VM template. I am trying for CentOS 6.5(64-bit) no 
> GUI 64-bit (KVM) template. 
> 
>
> 
>
> 
> I found some images available over https://www.kraxel.org/repos/images/ 
> <https://urldefense.proofpoint.com/v2/url?u=https-3A__www.kraxel.org_repos_images_=DwMFAw=euGZstcaTDllvimEN8b7jXrwqOf-v5A_CdpgnVfiiMM=SzAVyxtJHZm7PriTfxFyvkqqZ_OgUqnNtgjrlf7jVU4=txzCgRJWkEmPJeuUxTWCEaTYpYEUWr6BmgcbVIpvuI0=VNfaavLgc8f7brJsIT2rTlp9QzZRyNUOTsp7rqTHK6E=>
>  with fedora os, but I am looking for uefi enabled Cent OS template. It would 
> be helpfull if any documentation or steps provided for the same.
> 
>
>
> 
> Regards, 
> 
> Pavan.
> 
> DISCLAIMER
> ==
> This e-mail may contain privileged and confidential information which is the 
> property of Accelerite, a Persistent Systems business. It is intended only 
> for the use of the individual or entity to which it is addressed. If you are 
> not the intended recipient, you are not authorized to read, retain, copy, 
> print, distribute or use this message. If you have received this 
> communication in error, please notify the sender and delete all copies of 
> this message. Accelerite, a Persistent Systems business does not accept any 
> liability for virus infected mails.
> 
> 


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

View/Reply Online (#41234): https://edk2.groups.io/g/devel/message/41234
Mute This Topic: https://groups.io/mt/31718606/21656
Group Owner: devel+ow...@edk2.groups.io
Unsubscribe: https://edk2.groups.io/g/devel/unsub  [arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-



Re: [edk2-devel] Help needed in building UEFI qcow2 images

2019-05-22 Thread Tomas Pilar (tpilar)
Hi Pavan,

I am currently playing around with setting up a OVMF based test framework 
myself. You likely need to tell qemu to use OVMF as it's firmware. I attach my 
current working libvirt XML file for creating UEFI VMs (diskless) - note the 
 and the  elements within the  element.

You want to add a disk sourced from the qcow image and that should work.

Cheers,
Tom

From: devel@edk2.groups.io  On Behalf Of Pavan Kumar 
Aravapalli
Sent: 22 May 2019 12:02
To: Devel EDK2 
Subject: [edk2-devel] Help needed in building UEFI qcow2 images


Hi,



[re-posting the question]



I am looking for information/documentation which helps me in enabling UEFI boot 
to the existing (KVM)VM template. I am trying for CentOS 6.5(64-bit) no GUI 
64-bit (KVM) template.





I found some images available over 
https://www.kraxel.org/repos/images/<https://urldefense.proofpoint.com/v2/url?u=https-3A__www.kraxel.org_repos_images_=DwMFAw=euGZstcaTDllvimEN8b7jXrwqOf-v5A_CdpgnVfiiMM=SzAVyxtJHZm7PriTfxFyvkqqZ_OgUqnNtgjrlf7jVU4=txzCgRJWkEmPJeuUxTWCEaTYpYEUWr6BmgcbVIpvuI0=VNfaavLgc8f7brJsIT2rTlp9QzZRyNUOTsp7rqTHK6E=>
 with fedora os, but I am looking for uefi enabled Cent OS template. It would 
be helpfull if any documentation or steps provided for the same.




Regards,

Pavan.
DISCLAIMER
==
This e-mail may contain privileged and confidential information which is the 
property of Accelerite, a Persistent Systems business. It is intended only for 
the use of the individual or entity to which it is addressed. If you are not 
the intended recipient, you are not authorized to read, retain, copy, print, 
distribute or use this message. If you have received this communication in 
error, please notify the sender and delete all copies of this message. 
Accelerite, a Persistent Systems business does not accept any liability for 
virus infected mails.


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

View/Reply Online (#41228): https://edk2.groups.io/g/devel/message/41228
Mute This Topic: https://groups.io/mt/31718606/21656
Group Owner: devel+ow...@edk2.groups.io
Unsubscribe: https://edk2.groups.io/g/devel/unsub  [arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-


  Qemu Test
  6a92c8c3-c6b4-4b57-a164-0a9917eeaf19
  2097152
  2097152
  2
  
/machine
  
  
hvm

/tmp/ovmf-test/OVMF_CODE.fd
/tmp/ovmf-test/OVMF_VARS2.fd
  
  


  
  
Skylake-Server-IBRS


  
  



  
  preserve
  restart
  preserve
  


  
  
/usr/libexec/qemu-kvm

  


  
[ADDRESS]
  


  
  
  


  
  
  


  


  


  
  


  
  
  


  /dev/urandom
  
  

  
  
+107:+107
+107:+107
  




[edk2-devel] Help needed in building UEFI qcow2 images

2019-05-22 Thread Pavan Kumar Aravapalli
Hi,


[re-posting the question]


I am looking for information/documentation which helps me in enabling UEFI boot 
to the existing (KVM)VM template. I am trying for CentOS 6.5(64-bit) no GUI 
64-bit (KVM) template.



I found some images available over https://www.kraxel.org/repos/images/ with 
fedora os, but I am looking for uefi enabled Cent OS template. It would be 
helpfull if any documentation or steps provided for the same.



Regards,

Pavan.
DISCLAIMER
==
This e-mail may contain privileged and confidential information which is the 
property of Accelerite, a Persistent Systems business. It is intended only for 
the use of the individual or entity to which it is addressed. If you are not 
the intended recipient, you are not authorized to read, retain, copy, print, 
distribute or use this message. If you have received this communication in 
error, please notify the sender and delete all copies of this message. 
Accelerite, a Persistent Systems business does not accept any liability for 
virus infected mails.

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

View/Reply Online (#41226): https://edk2.groups.io/g/devel/message/41226
Mute This Topic: https://groups.io/mt/31718606/21656
Group Owner: devel+ow...@edk2.groups.io
Unsubscribe: https://edk2.groups.io/g/devel/unsub  [arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-