You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
465 B
25 lines
465 B
/* SPDX-License-Identifier: GPL-2.0+ */
|
|
/*
|
|
* Copyright 2021 Google LLC
|
|
* Written by Simon Glass <sjg@chromium.org>
|
|
*/
|
|
|
|
#ifndef __distro_h
|
|
#define __distro_h
|
|
|
|
#define DISTRO_FNAME "extlinux/extlinux.conf"
|
|
|
|
/**
|
|
* struct distro_info - useful information for distro_getfile()
|
|
*
|
|
* @dev: bootmethod device being used to boot
|
|
* @bflow: bootflow being booted
|
|
*/
|
|
struct distro_info {
|
|
struct udevice *dev;
|
|
struct bootflow *bflow;
|
|
struct cmd_tbl *cmdtp;
|
|
};
|
|
|
|
#endif
|