/usr/include/efivar/efiboot-creator.h is in libefiboot-dev 30-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 | /*
* libefiboot - library for the manipulation of EFI boot variables
* Copyright 2012-2015 Red Hat, Inc.
* Copyright (C) 2001 Dell Computer Corporation <Matt_Domsch@dell.com>
*
* This library is free software; you can redistribute it and/or
* modify it 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.
*
* This library 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 this library; if not, see
* <http://www.gnu.org/licenses/>.
*
*/
#ifndef _EFIBOOT_CREATOR_H
#define _EFIBOOT_CREATOR_H
#define EFIBOOT_ABBREV_NONE 0x00000001
#define EFIBOOT_ABBREV_HD 0x00000002
#define EFIBOOT_ABBREV_FILE 0x00000004
#define EFIBOOT_ABBREV_EDD10 0x00000008
#define EFIBOOT_OPTIONS_IGNORE_FS_ERROR 0x00000010
#define EFIBOOT_OPTIONS_WRITE_SIGNATURE 0x00000020
#define EFIBOOT_OPTIONS_IGNORE_PMBR_ERR 0x00000040
extern ssize_t efi_generate_file_device_path(uint8_t *buf, ssize_t size,
const char * const filepath,
uint32_t options, ...)
__attribute__((__nonnull__ (3)));
extern ssize_t efi_generate_file_device_path_from_esp(uint8_t *buf,
ssize_t size,
const char *devpath,
int partition,
const char *relpath,
uint32_t options, ...)
__attribute__((__nonnull__ (3, 5)))
__attribute__((__visibility__ ("default")));
extern ssize_t efi_generate_ipv4_device_path(uint8_t *buf, ssize_t size,
const char * const ifname,
const char * const local_addr,
const char * const remote_addr,
const char * const gateway_addr,
const char * const netmask,
uint16_t local_port,
uint16_t remote_port,
uint16_t protocol,
uint8_t addr_origin)
__attribute__((__nonnull__ (3,4,5,6,7)))
__attribute__((__visibility__ ("default")));
#endif /* _EFIBOOT_CREATOR_H */
|