We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Current entrypoint prototype is as below: PayloadEntry ( IN UINTN BootloaderParameter, IN UINTN FdBase )
Spec defines the entry point prototype should be: 1st parameter: HobList 2nd parameter: ImageBase of payload entry
Currently the Payload entry locates the HOB from a pointer stored in stack: (*(UINTN *)(UINTN)(PcdGet32(PcdPayloadStackTop) - 2 * sizeof(UINT64))).
It should directly assume the BootloaderParameter as the HOB base.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Current entrypoint prototype is as below:
PayloadEntry (
IN UINTN BootloaderParameter,
IN UINTN FdBase
)
Spec defines the entry point prototype should be:
1st parameter: HobList
2nd parameter: ImageBase of payload entry
Currently the Payload entry locates the HOB from a pointer stored in stack:
(*(UINTN *)(UINTN)(PcdGet32(PcdPayloadStackTop) - 2 * sizeof(UINT64))).
It should directly assume the BootloaderParameter as the HOB base.
The text was updated successfully, but these errors were encountered: