From: Geoff Levand Date: Fri, 10 Aug 2018 17:29:14 +0000 (+0000) Subject: lib/efi: Log operations to debug log X-Git-Tag: v1.9.0~5 X-Git-Url: http://git.ozlabs.org/?p=petitboot;a=commitdiff_plain;h=6f157d5e4154069174c6b6268a7f13bb48a74593 lib/efi: Log operations to debug log Signed-off-by: Geoff Levand Signed-off-by: Samuel Mendoza-Jonas --- diff --git a/lib/efi/efivar.c b/lib/efi/efivar.c index 91b2507..a0c21b5 100644 --- a/lib/efi/efivar.c +++ b/lib/efi/efivar.c @@ -109,6 +109,7 @@ delete: pb_log_fn("unlink failed: (%d) %s\n", errno, strerror(errno)); goto exit; } + pb_debug_fn("Deleted: '%s'\n", name); exit: talloc_free(path); close(fd); @@ -159,6 +160,7 @@ int efi_get_variable(void *ctx, const char *guidstr, const char *name, (*efi_data)->data_size = total; (*efi_data)->data = (*efi_data)->fill; memcpy((*efi_data)->data, buf + sizeof (uint32_t), total); + pb_debug_fn("Found: '%s'='%s'\n", name, (const char *)(*efi_data)->data); rc = 0; exit: @@ -199,6 +201,7 @@ int efi_set_variable(const char *guidstr, const char *name, goto exit; } rc = 0; + pb_debug_fn("Set: '%s'='%s'\n", name, (const char *)efi_data->data); exit: talloc_free(path);