Fix old artifact of conversion from .docx to .rst. There was a plain text reference to an appendix section that should have been converted to a reStructuredText :ref: tag. Fixed in this patch.
Signed-off-by: Grant Likely grant.likely@arm.com --- source/appendix-a-uefi-features.rst | 2 ++ source/chapter2-uefi.rst | 3 ++- 2 files changed, 4 insertions(+), 1 deletion(-)
diff --git a/source/appendix-a-uefi-features.rst b/source/appendix-a-uefi-features.rst index a03f441..8777edd 100644 --- a/source/appendix-a-uefi-features.rst +++ b/source/appendix-a-uefi-features.rst @@ -56,6 +56,8 @@ EFI_SET_MEM 7.5 EFI_CREATE_EVENT_EX 7.5 ========================================== ======
+.. _appendix-uefi-required-runtime: + Required Runtime Services *************************
diff --git a/source/chapter2-uefi.rst b/source/chapter2-uefi.rst index 493cc9c..1c7f419 100644 --- a/source/chapter2-uefi.rst +++ b/source/chapter2-uefi.rst @@ -112,7 +112,8 @@ UEFI Runtime Services exist after the call to ExitBootServices() and are designed to provide a limited set of persistent services to the platform Operating System or hypervisor.
-The Runtime Services that are listed in Appendix B must be provided. +The Runtime Services that are listed in :ref:`appendix-uefi-required-runtime` +must be provided.
Runtime Exception Level -----------------------