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

Side by Side Diff: src/platform/vboot_reference/utility/include/kernel_utility.h

Issue 2310002: Add a --subkey switch to kernel signing utility. (Closed) Base URL: ssh://git@gitrw.chromium.org/chromiumos
Patch Set: Created 10 years, 6 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 unified diff | Download patch
« no previous file with comments | « no previous file | src/platform/vboot_reference/utility/kernel_utility.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2010 The Chromium OS Authors. All rights reserved. 1 // Copyright (c) 2010 The Chromium OS Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef VBOOT_REFERENCE_KERNEL_UTILITY_H_ 5 #ifndef VBOOT_REFERENCE_KERNEL_UTILITY_H_
6 #define VBOOT_REFERENCE_KERNEL_UTILITY_H_ 6 #define VBOOT_REFERENCE_KERNEL_UTILITY_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 extern "C" { 10 extern "C" {
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
70 int kernel_version_; 70 int kernel_version_;
71 int padding_; 71 int padding_;
72 uint64_t kernel_len_; 72 uint64_t kernel_len_;
73 uint8_t* kernel_config_; 73 uint8_t* kernel_config_;
74 74
75 std::string in_file_; 75 std::string in_file_;
76 std::string out_file_; 76 std::string out_file_;
77 bool is_generate_; // Are we generating a new image? 77 bool is_generate_; // Are we generating a new image?
78 bool is_verify_; // Are we just verifying an already signed image? 78 bool is_verify_; // Are we just verifying an already signed image?
79 bool is_describe_; // Should we print out description of the image? 79 bool is_describe_; // Should we print out description of the image?
80 bool is_only_vblock_; // Show we just output the verification block? 80 bool is_only_vblock_; // Should we just output the verification block?
81 bool is_subkey_out_; // Should we just output the subkey header?
81 }; 82 };
82 83
83 } // namespace vboot_reference 84 } // namespace vboot_reference
84 85
85 #endif // VBOOT_REFERENCE_FIRMWARE_UTILITY_H_ 86 #endif // VBOOT_REFERENCE_FIRMWARE_UTILITY_H_
OLDNEW
« no previous file with comments | « no previous file | src/platform/vboot_reference/utility/kernel_utility.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698