]>
Commit | Line | Data |
---|---|---|
31aefaf8 SG |
1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
2 | /* | |
3 | * Copyright 2021 Google LLC | |
4 | * Written by Simon Glass <[email protected]> | |
5 | */ | |
6 | ||
79f66351 SG |
7 | #ifndef __extlinux_h |
8 | #define __extlinux_h | |
31aefaf8 | 9 | |
79f66351 | 10 | #define EXTLINUX_FNAME "extlinux/extlinux.conf" |
31aefaf8 SG |
11 | |
12 | /** | |
79f66351 | 13 | * struct extlinux_info - useful information for extlinux_getfile() |
31aefaf8 SG |
14 | * |
15 | * @dev: bootmethod device being used to boot | |
16 | * @bflow: bootflow being booted | |
17 | */ | |
79f66351 | 18 | struct extlinux_info { |
31aefaf8 SG |
19 | struct udevice *dev; |
20 | struct bootflow *bflow; | |
21 | struct cmd_tbl *cmdtp; | |
22 | }; | |
23 | ||
24 | #endif |