summaryrefslogtreecommitdiff
path: root/doc/device-tree-bindings/bootstd.txt
blob: 1f1b9cba601a65d7589cd4ba6b5a4abbdb4c9689 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
U-Boot standard boot device (bootstd)
=====================================

This is the controlling device for U-Boot standard boot, providing a way to
boot operating systems in a way that can be controlled by distros.

Required properties:

compatible: "u-boot,boot-std"

Optional properties:

filename-prefixes:
   List of strings, each a directory to search for bootflow files

bootdev-order:
   List of bootdevs to check for bootflows, each a bootdev label (the media
   uclass followed by the numeric sequence number of the media device)


Example:

	bootstd {
		compatible = "u-boot,boot-std";

		filename-prefixes = "/", "/boot/";
		bootdev-order = "mmc2", "mmc1";

		extlinux {
			compatible = "u-boot,extlinux";
		};

		efi {
			compatible = "u-boot,distro-efi";
		};
	};