Skip to content

Commit 6deddf7

Browse files
committed
Add missing ramdisk property and tidy up
The configuration node is missing a ramdisk property. Add this and tidy up a few nearby problems: - missing semicolons - missing text for 'script' Signed-off-by: Simon Glass <[email protected]>
1 parent c749139 commit 6deddf7

File tree

1 file changed

+10
-6
lines changed

1 file changed

+10
-6
lines changed

source/chapter2-source-file-format.rst

+10-6
Original file line numberDiff line numberDiff line change
@@ -555,12 +555,13 @@ Configuration nodes
555555
Each configuration has the following structure::
556556

557557
o config-1
558-
|- description = "configuration description"
559-
|- kernel = "kernel sub-node unit name"
560-
|- fdt = "fdt sub-node unit-name" [, "fdt overlay sub-node unit-name", ...]
561-
|- loadables = "loadables sub-node unit-name"
562-
|- script = "
563-
|- compatible = "vendor,board-style device tree compatible string"
558+
|- description = "configuration description";
559+
|- kernel = "kernel sub-node unit name";
560+
|- fdt = "fdt sub-node unit-name" [, "fdt overlay sub-node unit-name", ...];
561+
|- ramdisk = "ramdisk sub-node unit-name";
562+
|- loadables = "loadables sub-node unit-name" [, ...];
563+
|- script = "script sub-node unit-name";
564+
|- compatible = "vendor,board-style device tree compatible string";
564565
o signature-1 {...}
565566

566567
Mandatory properties
@@ -594,6 +595,9 @@ loadables
594595
and may optionally invoke additional post-processing steps on this binary
595596
based on its component image node type.
596597

598+
ramdisk
599+
Unit name of the corresponding ramdisk to be loaded at the given location.
600+
597601
script
598602
The image to use when loading a :index:`U-Boot` script (for use with the
599603
source command).

0 commit comments

Comments
 (0)