mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-25 06:00:43 +00:00
79f663515a
We use the terms 'distro' to mean extlinux but they are not really the same. 'Distro' could refer to any method of booting a distribution, whereas extlinux is a particular method. Also we sometimes use syslinux, but it is better to use the same term in all cases. Rename distro to syslinux and also update bootstd uses of syslinux to use extlinux instead. Signed-off-by: Simon Glass <sjg@chromium.org>
31 lines
739 B
Text
31 lines
739 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,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";
|
|
};
|
|
};
|