mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-12 16:07:30 +00:00
e7b2ce191e
Add documentation for this feature, including the commands and full devicetree bindings. Signed-off-by: Simon Glass <sjg@chromium.org>
31 lines
751 B
Text
31 lines
751 B
Text
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,distro-syslinux" - distro boot from a block device
|
|
"u-boot,distro-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";
|
|
|
|
syslinux {
|
|
compatible = "u-boot,distro-syslinux";
|
|
};
|
|
|
|
efi {
|
|
compatible = "u-boot,distro-efi";
|
|
};
|
|
};
|