summaryrefslogtreecommitdiff
path: root/src/shared/efivars.h
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2013-02-13 00:07:55 +0100
committerLennart Poettering <lennart@poettering.net>2013-02-13 00:12:58 +0100
commit9cde64ff264c432fc83be638e57d8fd6392793a6 (patch)
treee133568816bb39673cc7e8f6622d65a31f9ca13d /src/shared/efivars.h
parenta96215285a9566668a5d92c1342888da7596144b (diff)
efi: various cleanups
Diffstat (limited to 'src/shared/efivars.h')
-rw-r--r--src/shared/efivars.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/shared/efivars.h b/src/shared/efivars.h
index d54cc433b2..380e038f69 100644
--- a/src/shared/efivars.h
+++ b/src/shared/efivars.h
@@ -31,13 +31,14 @@
#define EFI_VENDOR_LOADER SD_ID128_MAKE(4a,67,b0,82,0a,4c,41,cf,b6,c7,44,0b,29,bb,8c,4f)
#define EFI_VENDOR_GLOBAL SD_ID128_MAKE(8b,e4,df,61,93,ca,11,d2,aa,0d,00,e0,98,03,2b,8c)
-bool is_efiboot(void);
+bool is_efi_boot(void);
int efi_get_variable(sd_id128_t vendor, const char *name, uint32_t *attribute, void **value, size_t *size);
-char *efi_get_variable_string(sd_id128_t vendor, const char *name);
+int efi_get_variable_string(sd_id128_t vendor, const char *name, char **p);
-int efi_get_boot_option(uint32_t nr, uint32_t *attributes, char **title, sd_id128_t *partuuid, char **path, char **data, size_t *data_size);
-int efi_get_boot_order(uint16_t **order, size_t *count);
+int efi_get_boot_option(uint16_t nr, char **title, sd_id128_t *partuuid, char **path);
+int efi_get_boot_order(uint16_t **order);
+int efi_get_boot_options(uint16_t **options);
int efi_get_boot_timestamps(const dual_timestamp *n, dual_timestamp *firmware, dual_timestamp *loader);