Data structure and interface for manipulating and handing firmware images for verified boot.

Review URL: http://codereview.chromium.org/564020
This commit is contained in:
Gaurav Shah
2010-02-12 15:54:37 -08:00
parent 1a055adf7b
commit 431b98886e
10 changed files with 872 additions and 41 deletions

23
utils/firmware_utility.c Normal file
View File

@@ -0,0 +1,23 @@
/* Copyright (c) 2010 The Chromium OS Authors. All rights reserved.
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*
* Utility for manipulating verified boot firmware images.
*/
#include <fcntl.h>
#include <stdio.h>
#include <stdlib.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <unistd.h>
#include "firmware_image.h"
#include "rsa_utility.h"
#include "sha_utility.h"
#include "utility.h"
int main(int argc, char* argv[]) {
/* TODO(gauravsh): TO BE IMPLEMENTED. */
return 0;
}