]> Git Repo - J-u-boot.git/blame - doc/device-tree-bindings/bootstd.txt
doc: regulator: Add regulator-force-boot-off binding
[J-u-boot.git] / doc / device-tree-bindings / bootstd.txt
CommitLineData
ef5e3891
SG
1U-Boot standard boot device (bootstd)
2=====================================
3
4This is the controlling device for U-Boot standard boot, providing a way to
5boot operating systems in a way that can be controlled by distros.
6
7Required properties:
8
9compatible: "u-boot,boot-std"
10
11Optional properties:
12
13filename-prefixes:
14 List of strings, each a directory to search for bootflow files
15
16bootdev-order:
17 List of bootdevs to check for bootflows, each a bootdev label (the media
18 uclass followed by the numeric sequence number of the media device)
19
20
21Example:
22
23 bootstd {
24 compatible = "u-boot,boot-std";
25
26 filename-prefixes = "/", "/boot/";
27 bootdev-order = "mmc2", "mmc1";
e7b2ce19
SG
28
29 syslinux {
30 compatible = "u-boot,distro-syslinux";
31 };
32
33 efi {
34 compatible = "u-boot,distro-efi";
35 };
ef5e3891 36 };
This page took 0.027 seconds and 4 git commands to generate.