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

Side by Side Diff: set.h

Issue 6611009: Add the nand device support for cbootimage tool. (Closed) Base URL: http://git.chromium.org/git/cbootimage.git@master
Patch Set: Created 9 years, 9 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
« data_layout.c ('K') | « 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_nand_param(build_image_context *context,
75 u_int32_t index,
76 parse_token token,
77 u_int32_t value);
78
79 int
74 set_sdmmc_param(build_image_context *context, 80 set_sdmmc_param(build_image_context *context,
75 u_int32_t index, 81 u_int32_t index,
76 parse_token token, 82 parse_token token,
77 u_int32_t value); 83 u_int32_t value);
78 84
79 int 85 int
80 set_spiflash_param(build_image_context *context, 86 set_spiflash_param(build_image_context *context,
81 u_int32_t index, 87 u_int32_t index,
82 parse_token token, 88 parse_token token,
83 u_int32_t value); 89 u_int32_t value);
84 90
85 int 91 int
86 read_from_image(char *filename, 92 read_from_image(char *filename,
87 u_int32_t page_size, 93 u_int32_t page_size,
88 u_int8_t **Image, 94 u_int8_t **Image,
89 u_int32_t *storage_size, 95 u_int32_t *storage_size,
90 u_int32_t *actual_size, 96 u_int32_t *actual_size,
91 file_type f_type); 97 file_type f_type);
92 98
93 #endif /* #ifndef INCLUDED_SET_H */ 99 #endif /* #ifndef INCLUDED_SET_H */
OLDNEW
« data_layout.c ('K') | « parse.c ('k') | set.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698