boot.h revision 7b4d7cc08283e5485dcfa49ffdf1915de1d5e81b
/*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
#pragma once
/***
This file is part of systemd.
Copyright 2013 Kay Sievers
under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation; either version 2.1 of the License, or
(at your option) any later version.
systemd is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with systemd; If not, see <http://www.gnu.org/licenses/>.
***/
#include "sd-id128.h"
/*
* Firmware and boot manager information to be filled in
* by the platform.
*
* This is partly EFI specific, if you add things, keep this
* as generic as possible to be able to re-use it on other
* platforms.
*/
struct boot_info_entry {
char *title;
char *path;
char *data;
};
struct boot_info {
char *fw_type;
char *fw_info;
struct boot_info_entry *fw_entries;
char *loader;
char *loader_image_path;
struct boot_info_entry *loader_entries;
char *loader_options_added;
};