blob: 2ee145871b2569f9fdb25477496f338224d6a0e5 [file] [log] [blame]
Simon Glass31aefaf2022-04-24 23:31:13 -06001/* SPDX-License-Identifier: GPL-2.0+ */
2/*
3 * Copyright 2021 Google LLC
4 * Written by Simon Glass <sjg@chromium.org>
5 */
6
7#ifndef __distro_h
8#define __distro_h
9
10#define DISTRO_FNAME "extlinux/extlinux.conf"
11
12/**
13 * struct distro_info - useful information for distro_getfile()
14 *
15 * @dev: bootmethod device being used to boot
16 * @bflow: bootflow being booted
17 */
18struct distro_info {
19 struct udevice *dev;
20 struct bootflow *bflow;
21 struct cmd_tbl *cmdtp;
22};
23
24#endif