Skip to content

Commit 07b7259

Browse files
committed
Pull request efi-2025-10-rc6 CI: * https://source.denx.de/u-boot/custodians/u-boot-efi/-/pipelines/27745 Docs: * Correct encodings for spl memory layout diagrams * Suggest usage of KDOC_WERROR when building documentation * Replace references to README.fdt-control * Clarify precedence of environment locations * Add documentation for the TI am335x_evm board * Remove README.commands.itest * Add a note about asking for feedback in the development process UEFI: * Cleanup UEFI Variables Kconfig menu
2 parents 9b45d57 + a0fe8ce commit 07b7259

15 files changed

Lines changed: 729 additions & 56 deletions

File tree

.gitattributes

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,3 @@
66
*.ttf binary
77
*.gz binary
88
*.png binary
9-
*.svg binary

doc/README.commands.itest

Lines changed: 0 additions & 16 deletions
This file was deleted.

doc/arch/nios2.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Please refer to the link for Linux port and toolchains:
1313
http://rocketboards.org/foswiki/view/Documentation/NiosIILinuxUserManual
1414

1515
The Nios II port of u-boot is controlled by device tree. Please check
16-
out doc/README.fdt-control.
16+
out :doc:`/develop/devicetree/control`.
1717

1818
To add a new board/configuration (eg, mysystem) to u-boot, you will need
1919
three files.

doc/board/ti/am335x_evm.rst

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -354,6 +354,16 @@ first.
354354
Falcon Mode: FAT SD cards
355355
-------------------------
356356

357+
Compile with additional changes in config variables in menuconfig:
358+
359+
::
360+
361+
CONFIG_SPL_LEGACY_IMAGE_FORMAT=y # to support non-FIT images
362+
CONFIG_LEGACY_IMAGE_FORMAT=y # if commented then SPL Legacy support stops
363+
# CONFIG_SPL_ENV_IS_NOWHERE is not set
364+
CONFIG_SPL_ENV_IS_IN_FAT=y
365+
366+
357367
In this case the additional file is written to the filesystem. In this
358368
example we assume that the uImage and device tree to be used are already on
359369
the FAT filesystem (only the uImage MUST be for this to function

doc/build/documentation.rst

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,9 @@ the following dependencies are needed to build the documentation:
1616

1717
* texinfo (if building the `Infodoc documentation`_)
1818

19+
When submitting patches for documentation always build with KDOC_WERROR=1 to
20+
treat warnings as errors.
21+
1922
HTML documentation
2023
------------------
2124

doc/develop/devicetree/control.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -282,7 +282,7 @@ U-Boot can be divided into three phases: TPL, SPL and U-Boot proper.
282282

283283
The full devicetree is available to U-Boot proper, but normally only a subset
284284
(or none at all) is available to TPL and SPL. See 'Pre-Relocation Support' and
285-
'SPL Support' in doc/driver-model/design.rst for more details.
285+
'SPL Support' in :doc:`/develop/driver-model/design` for more details.
286286

287287

288288
Using several DTBs in the SPL (SPL_MULTI_DTB_FIT Kconfig option)

doc/develop/driver-model/ethernet.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ own ethernet device driver. Here we will describe a new pseudo 'APE' driver.
88

99
Most existing drivers do already - and new network driver MUST - use the
1010
U-Boot core driver model. Generic information about this can be found in
11-
doc/driver-model/design.rst, this document will thus focus on the network
11+
:doc:`/develop/driver-model/design`, this document will thus focus on the network
1212
specific code parts.
1313
Some drivers are still using the old Ethernet interface, differences between
1414
the two and hints about porting will be handled at the end.

doc/develop/pics/spl_after_reloc.svg

Lines changed: 293 additions & 4 deletions
Loading

doc/develop/pics/spl_before_reloc.svg

Lines changed: 386 additions & 0 deletions
Loading

doc/develop/process.rst

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,9 @@ comments). Even a "I have no time now, will look into it later"
139139
message is better than nothing. Also, if there are remarks to a
140140
patch, these should leave no doubt if they were just comments and the
141141
patch will be accepted anyway, or if the patch should be
142-
reworked/resubmitted, or if it was rejected.
142+
reworked/resubmitted, or if it was rejected. However, if a submitter
143+
feels it has been too long since posting their patch and not received
144+
any feedback, it is OK to follow-up and ask.
143145

144146
Review Process, Git Tags
145147
------------------------

0 commit comments

Comments
 (0)