mirror of
https://github.com/ventoy/Ventoy.git
synced 2025-04-29 22:57:54 -04:00
In the case of an error grub_initrd_load() uses argv[] to print the filename that caused the error. It is also possible to obtain the filename from the file handles and there is no need to duplicate that information in argv[], so let's drop it. Signed-off-by: Nikita Ermakov <arei@altlinux.org> Signed-off-by: Ard Biesheuvel <ardb@kernel.org> Reviewed-by: Daniel Kiper <daniel.kiper@oracle.com> Backport-commit: also for mips64 Signed-off-by: Wentao Guan <guanwentao@uniontech.com>
25 lines
523 B
C
25 lines
523 B
C
#include <grub/file.h>
|
|
|
|
struct grub_linux_initrd_component;
|
|
|
|
struct grub_linux_initrd_context
|
|
{
|
|
int nfiles;
|
|
struct grub_linux_initrd_component *components;
|
|
grub_size_t size;
|
|
};
|
|
|
|
grub_err_t
|
|
grub_initrd_init (int argc, char *argv[],
|
|
struct grub_linux_initrd_context *ctx);
|
|
|
|
grub_size_t
|
|
grub_get_initrd_size (struct grub_linux_initrd_context *ctx);
|
|
|
|
void
|
|
grub_initrd_close (struct grub_linux_initrd_context *initrd_ctx);
|
|
|
|
grub_err_t
|
|
grub_initrd_load (struct grub_linux_initrd_context *initrd_ctx,
|
|
void *target);
|