summaryrefslogtreecommitdiff
path: root/doc/device-tree-bindings/bootmeth.txt
blob: 127b09cd1b207f1e78f9eadfaa7bd97ee9bd5884 (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
U-Boot standard boot methods (bootmeth)
======================================

This provides methods (called bootmeths) for locating bootflows on a boot
device (bootdev). These are normally created as children of the bootstd device.

Required properties:

compatible:
   "u-boot,extlinux" - distro boot from a block device
   "u-boot,extlinux-pxe" - distro boot from a network device
   "u-boot,distro-efi" - EFI boot from an .efi file
   "u-boot,efi-bootmgr" - EFI boot using boot manager (bootmgr)


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";
		};
	};