Re: [edk2] [PATCH v2] OvmfPkg ResetSystemLib: Fix shutdown via UEFI runtime services

2013-07-15 Thread David Woodhouse
On Mon, 2013-07-15 at 11:09 -0700, Jordan Justen wrote: > When the PM base address was moved from 0x400 to 0xb000, this > code was missed. This prevented shutdown's via the UEFI system > call from working. (For example, at the EFI shell prompt: reset -s) > > We now use gUefiOvmfPkgTokenSpaceGuid.P

Re: [edk2] [PATCH v2] OvmfPkg ResetSystemLib: Fix shutdown via UEFI runtime services

2013-07-15 Thread Jordan Justen
On Mon, 2013-07-15 at 19:35 +0100, David Woodhouse wrote: > On Mon, 2013-07-15 at 11:09 -0700, Jordan Justen wrote: > > When the PM base address was moved from 0x400 to 0xb000, this > > code was missed. This prevented shutdown's via the UEFI system > > call from working. (For example, at the EFI sh

Re: [edk2] [PATCH v2] OvmfPkg ResetSystemLib: Fix shutdown via UEFI runtime services

2013-07-15 Thread Laszlo Ersek
On 07/15/13 20:09, Jordan Justen wrote: > When the PM base address was moved from 0x400 to 0xb000, this > code was missed. This prevented shutdown's via the UEFI system > call from working. (For example, at the EFI shell prompt: reset -s) > > We now use gUefiOvmfPkgTokenSpaceGuid.PcdAcpiPmBaseAddr

[edk2] [PATCH v2] OvmfPkg ResetSystemLib: Fix shutdown via UEFI runtime services

2013-07-15 Thread Jordan Justen
When the PM base address was moved from 0x400 to 0xb000, this code was missed. This prevented shutdown's via the UEFI system call from working. (For example, at the EFI shell prompt: reset -s) We now use gUefiOvmfPkgTokenSpaceGuid.PcdAcpiPmBaseAddress which is currently set at 0xb000. Contributed