Merge tag 'efi-2025-04-rc6' of https://source.denx.de/u-boot/custodians/u-boot-efi
Pull request efi-2025-04-rc6 CI: * https://source.denx.de/u-boot/custodians/u-boot-efi/-/pipelines/25491 Documentation: * correct references to overlay-fdt-boot.txt * build: docker: Fix code highlighting syntax * build: docker: Use code-block for syntax highlighting * Fix typo bootfloe to bootflow UEFI: * Correct the size of the AcpiReclaimMemory region for ACPI tables when using QFW
This commit is contained in:
@@ -160,7 +160,7 @@ kernel <path> - if this label is chosen, use tftp to retrieve the kernel
|
|||||||
It will passed to bootm with that address.
|
It will passed to bootm with that address.
|
||||||
(see: doc/uImage.FIT/command_syntax_extensions.txt)
|
(see: doc/uImage.FIT/command_syntax_extensions.txt)
|
||||||
It useful for overlay selection in pxe file
|
It useful for overlay selection in pxe file
|
||||||
(see: doc/uImage.FIT/overlay-fdt-boot.txt)
|
(see: doc/usage/fit/overlay-fdt-boot.rst).
|
||||||
|
|
||||||
fdtoverlays <path> [...] - if this label is chosen, use tftp to retrieve the DT
|
fdtoverlays <path> [...] - if this label is chosen, use tftp to retrieve the DT
|
||||||
overlay(s) at <path>. it will be temporarily stored at the
|
overlay(s) at <path>. it will be temporarily stored at the
|
||||||
|
10
doc/build/docker.rst
vendored
10
doc/build/docker.rst
vendored
@@ -12,7 +12,9 @@ You will need a multi-platform container, otherwise this error is shown::
|
|||||||
ERROR: Multi-platform build is not supported for the docker driver.
|
ERROR: Multi-platform build is not supported for the docker driver.
|
||||||
Switch to a different driver, or turn on the containerd image store, and try again.
|
Switch to a different driver, or turn on the containerd image store, and try again.
|
||||||
|
|
||||||
You can add a simple one with::
|
You can add a simple one with:
|
||||||
|
|
||||||
|
.. code-block:: bash
|
||||||
|
|
||||||
sudo docker buildx create --name multiarch --driver docker-container --use
|
sudo docker buildx create --name multiarch --driver docker-container --use
|
||||||
|
|
||||||
@@ -20,7 +22,9 @@ This will result in a builder that will use QEMU for the non-native
|
|||||||
architectures request in a build. While both amd64 and arm64 happen in
|
architectures request in a build. While both amd64 and arm64 happen in
|
||||||
parallel, the non-native part will take considerably longer as it must use QEMU
|
parallel, the non-native part will take considerably longer as it must use QEMU
|
||||||
to emulate the foreign code. An alternative, if you have accesss to reasonably
|
to emulate the foreign code. An alternative, if you have accesss to reasonably
|
||||||
fast amd64 (i.e. 64-bit x86) and arm64 machines is::
|
fast amd64 (i.e. 64-bit x86) and arm64 machines is:
|
||||||
|
|
||||||
|
.. code-block:: bash
|
||||||
|
|
||||||
sudo docker buildx create --name multiarch-multinode --node localNode --bootstrap --use
|
sudo docker buildx create --name multiarch-multinode --node localNode --bootstrap --use
|
||||||
sudo docker buildx create --name multiarch-multinode --append --node remoteNode --bootstrap ssh://user@host
|
sudo docker buildx create --name multiarch-multinode --append --node remoteNode --bootstrap ssh://user@host
|
||||||
@@ -28,7 +32,7 @@ fast amd64 (i.e. 64-bit x86) and arm64 machines is::
|
|||||||
And this will result in a builder named multiarch-multinode that will build
|
And this will result in a builder named multiarch-multinode that will build
|
||||||
each platform natively on each node.
|
each platform natively on each node.
|
||||||
|
|
||||||
To build the image yourself::
|
To build the image yourself:
|
||||||
|
|
||||||
.. code-block:: bash
|
.. code-block:: bash
|
||||||
|
|
||||||
|
@@ -18,7 +18,7 @@ Synopsis
|
|||||||
bootflow read
|
bootflow read
|
||||||
bootflow boot
|
bootflow boot
|
||||||
bootflow cmdline [set|get|clear|delete|auto] <param> [<value>]
|
bootflow cmdline [set|get|clear|delete|auto] <param> [<value>]
|
||||||
bootfloe menu [-t]
|
bootflow menu [-t]
|
||||||
|
|
||||||
Description
|
Description
|
||||||
-----------
|
-----------
|
||||||
|
@@ -76,8 +76,8 @@ There are two ways to apply overlays in U-Boot.
|
|||||||
* Manually load and apply overlays
|
* Manually load and apply overlays
|
||||||
|
|
||||||
The remainder of this document will discuss using overlays via the manual
|
The remainder of this document will discuss using overlays via the manual
|
||||||
approach. For information on using overlays as part of a FIT image please see:
|
approach. For information on using overlays as part of a FIT image please see
|
||||||
doc/uImage.FIT/overlay-fdt-boot.txt
|
:ref:`fit_configuration_using_overlays`.
|
||||||
|
|
||||||
Manually Loading and Applying Overlays
|
Manually Loading and Applying Overlays
|
||||||
--------------------------------------
|
--------------------------------------
|
||||||
|
@@ -111,6 +111,8 @@ Where config is one of::
|
|||||||
|
|
||||||
This selects the DTB to use when booting.
|
This selects the DTB to use when booting.
|
||||||
|
|
||||||
|
.. _fit_configuration_using_overlays:
|
||||||
|
|
||||||
Configuration using overlays
|
Configuration using overlays
|
||||||
----------------------------
|
----------------------------
|
||||||
|
|
||||||
|
@@ -305,7 +305,7 @@ static int evt_write_acpi_tables(void)
|
|||||||
/* Generate ACPI tables */
|
/* Generate ACPI tables */
|
||||||
end = write_acpi_tables(addr);
|
end = write_acpi_tables(addr);
|
||||||
gd->arch.table_start = addr;
|
gd->arch.table_start = addr;
|
||||||
gd->arch.table_end = addr;
|
gd->arch.table_end = end;
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user