Files
u-boot/include/extlinux.h
Simon Glass 70d37cbab9 pxe: Drop the cmdline parameter
Now that PXE can operate without the command line, drop the parameter
throughout the code.

Signed-off-by: Simon Glass <sjg@chromium.org>
2024-12-19 05:55:32 -07:00

24 lines
453 B
C

/* SPDX-License-Identifier: GPL-2.0+ */
/*
* Copyright 2021 Google LLC
* Written by Simon Glass <sjg@chromium.org>
*/
#ifndef __extlinux_h
#define __extlinux_h
#define EXTLINUX_FNAME "extlinux/extlinux.conf"
/**
* struct extlinux_info - useful information for extlinux_getfile()
*
* @dev: bootmethod device being used to boot
* @bflow: bootflow being booted
*/
struct extlinux_info {
struct udevice *dev;
struct bootflow *bflow;
};
#endif