Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(359)

Unified Diff: src/platform/vboot_reference/vkernel/include/kernel_image.h

Issue 1752013: Vboot Reference: Make kernel signing utility more flexible. (Closed)
Patch Set: review fixes Created 10 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: src/platform/vboot_reference/vkernel/include/kernel_image.h
diff --git a/src/platform/vboot_reference/vkernel/include/kernel_image.h b/src/platform/vboot_reference/vkernel/include/kernel_image.h
index 0ea8adb39e125532b78d309755fd21060a1e7152..3fcdcf8bc55f54bd9feeb527447aad7438409bde 100644
--- a/src/platform/vboot_reference/vkernel/include/kernel_image.h
+++ b/src/platform/vboot_reference/vkernel/include/kernel_image.h
@@ -55,11 +55,13 @@ uint8_t* GetKernelConfigBlob(const KernelImage* image);
uint8_t* GetKernelBlob(const KernelImage* image, uint64_t* blob_len);
/* Write kernel data from [image] to a file named [input_file].
+ * If [is_only_vblock] is non-zero, only the verification block is output.
*
* Return 1 on success, 0 on error.
*/
int WriteKernelImage(const char* input_file,
- const KernelImage* image);
+ const KernelImage* image,
+ int is_only_vblock);
/* Pretty print the contents of [image]. Only headers and metadata information
* is printed.
« no previous file with comments | « src/platform/vboot_reference/utility/kernel_utility.cc ('k') | src/platform/vboot_reference/vkernel/kernel_image.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698