diff options
author | Simon Glass <sjg@chromium.org> | 2022-04-24 23:31:07 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2022-04-25 10:00:04 -0400 |
commit | 201417d700a2ab09f247c1be9952176970c0f6bd (patch) | |
tree | 1a9b39324cd46a4ae63c40a31fb9903c768acdd9 /MAINTAINERS | |
parent | ef5e3891f57e6fc863fabbc94b1d7da79d1940bb (diff) | |
download | u-boot-201417d700a2ab09f247c1be9952176970c0f6bd.zip u-boot-201417d700a2ab09f247c1be9952176970c0f6bd.tar.gz u-boot-201417d700a2ab09f247c1be9952176970c0f6bd.tar.bz2 |
bootstd: Add the bootdev uclass
A 'bootdev' is a device which can be used to boot an operating system.
It is a child of the media device (e.g. MMC) which handles reading files
from that device, such as a bootflow file.
Add a uclass for bootdev and the various helpers needed to make it
work. Also add a binding file, empty for now.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'MAINTAINERS')
-rw-r--r-- | MAINTAINERS | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/MAINTAINERS b/MAINTAINERS index dd099d6..78ec857 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -696,9 +696,11 @@ F: tools/binman/ BOOTDEVICE M: Simon Glass <sjg@chromium.org> S: Maintained +F: boot/bootdev*.c F: boot/bootstd.c -F: include/bootstd.h +F: include/bootdev*.h F: include/bootflow.h +F: include/bootstd.h BTRFS M: Marek Behun <marek.behun@nic.cz> |