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

Side by Side Diff: set.h

Issue 6579034: Add the device type/parameters support for cbootimage tool. (Closed) Base URL: http://git.chromium.org/git/cbootimage.git@master
Patch Set: Created 9 years, 10 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 | Annotate | Revision Log
« no previous file with comments | « parse.c ('k') | set.c » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /** 1 /**
2 * Copyright (c) 2011 NVIDIA Corporation. All rights reserved. 2 * Copyright (c) 2011 NVIDIA Corporation. All rights reserved.
3 * 3 *
4 * See file CREDITS for list of people who contributed to this 4 * See file CREDITS for list of people who contributed to this
5 * project. 5 * project.
6 * 6 *
7 * This program is free software; you can redistribute it and/or 7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License as 8 * modify it under the terms of the GNU General Public License as
9 * published by the Free Software Foundation; either version 2 of 9 * published by the Free Software Foundation; either version 2 of
10 * the License, or (at your option) any later version. 10 * the License, or (at your option) any later version.
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
64 char *uname, 64 char *uname,
65 int index); 65 int index);
66 66
67 int 67 int
68 set_other_field(build_image_context *context, 68 set_other_field(build_image_context *context,
69 char *other_str, 69 char *other_str,
70 int other, 70 int other,
71 int index); 71 int index);
72 72
73 int 73 int
74 set_sdmmc_param(build_image_context *context,
75 u_int32_t index,
76 parse_token token,
77 u_int32_t value);
78
79 int
80 set_spiflash_param(build_image_context *context,
81 u_int32_t index,
82 parse_token token,
83 u_int32_t value);
84
85 int
74 read_from_image(char *filename, 86 read_from_image(char *filename,
75 u_int32_t page_size, 87 u_int32_t page_size,
76 u_int8_t **Image, 88 u_int8_t **Image,
77 u_int32_t *storage_size, 89 u_int32_t *storage_size,
78 u_int32_t *actual_size, 90 u_int32_t *actual_size,
79 file_type f_type); 91 file_type f_type);
80 92
81 #endif /* #ifndef INCLUDED_SET_H */ 93 #endif /* #ifndef INCLUDED_SET_H */
OLDNEW
« no previous file with comments | « parse.c ('k') | set.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698