Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

x86/boot/Documentation: Fix htmldocs build warning due to malformed table in boot.rst

Sphinx reports htmldocs warnings:

Documentation/arch/x86/boot.rst:437: ERROR: Malformed table.
Text in column margin in table line 2.

The table header defined the first column width as 2 characters ("=="),
which is too narrow for entries like "0x10" and "0x13". This caused the
text to spill into the margin, triggering a docutils parsing failure.

Fix it by extending the first column of assigned boot loader ID to 4
characters ("====") to fit the widest entries.

Fixes: 1c3377bee212 ("x86/boot/Documentation: Prefix hexadecimal literals with 0x")
Tested-by: Randy Dunlap <rdunlap@infradead.org>
Signed-off-by: Swaraj Gaikwad <swarajgaikwad1925@gmail.com>
Signed-off-by: Ingo Molnar <mingo@kernel.org>
Reviewed-by: Randy Dunlap <rdunlap@infradead.org>
Reviewed-by: Bagas Sanjaya <bagasdotme@gmail.com>
Link: https://patch.msgid.link/20251210092814.9986-1-swarajgaikwad1925@gmail.com

authored by

Swaraj Gaikwad and committed by
Ingo Molnar
5288176a cb015814

+2 -2
+2 -2
Documentation/arch/x86/boot.rst
··· 433 433 434 434 Assigned boot loader IDs: 435 435 436 - == ======================================= 436 + ==== ======================================= 437 437 0x0 LILO 438 438 (0x00 reserved for pre-2.00 bootloader) 439 439 0x1 Loadlin ··· 456 456 <http://sebastian-plotz.blogspot.de> 457 457 0x12 OVMF UEFI virtualization stack 458 458 0x13 barebox 459 - == ======================================= 459 + ==== ======================================= 460 460 461 461 Please contact <hpa@zytor.com> if you need a bootloader ID value assigned. 462 462