imagetool.h (5847084f6bbd0778afb29f0574085d4210ea8cff) | imagetool.h (0f7c6cdc8143d6cf0577a84bf27bdaadd6229ff4) |
---|---|
1/* 2 * (C) Copyright 2013 3 * 4 * Written by Guilherme Maciel Ferreira <guilherme.maciel.ferreira@gmail.com> 5 * 6 * SPDX-License-Identifier: GPL-2.0+ 7 */ 8 --- 56 unchanged lines hidden (view full) --- 65 const char *keydir; /* Directory holding private keys */ 66 const char *keydest; /* Destination .dtb for public key */ 67 const char *comment; /* Comment to add to signature node */ 68 int require_keys; /* 1 to mark signing keys as 'required' */ 69 int file_size; /* Total size of output file */ 70 int orig_file_size; /* Original size for file before padding */ 71 bool auto_its; /* Automatically create the .its file */ 72 int fit_image_type; /* Image type to put into the FIT */ | 1/* 2 * (C) Copyright 2013 3 * 4 * Written by Guilherme Maciel Ferreira <guilherme.maciel.ferreira@gmail.com> 5 * 6 * SPDX-License-Identifier: GPL-2.0+ 7 */ 8 --- 56 unchanged lines hidden (view full) --- 65 const char *keydir; /* Directory holding private keys */ 66 const char *keydest; /* Destination .dtb for public key */ 67 const char *comment; /* Comment to add to signature node */ 68 int require_keys; /* 1 to mark signing keys as 'required' */ 69 int file_size; /* Total size of output file */ 70 int orig_file_size; /* Original size for file before padding */ 71 bool auto_its; /* Automatically create the .its file */ 72 int fit_image_type; /* Image type to put into the FIT */ |
73 char *fit_ramdisk; /* Ramdisk file to include */ |
|
73 struct content_info *content_head; /* List of files to include */ 74 struct content_info *content_tail; 75 bool external_data; /* Store data outside the FIT */ 76 bool quiet; /* Don't output text in normal operation */ 77 unsigned int external_offset; /* Add padding to external data */ 78}; 79 80/* --- 224 unchanged lines hidden --- | 74 struct content_info *content_head; /* List of files to include */ 75 struct content_info *content_tail; 76 bool external_data; /* Store data outside the FIT */ 77 bool quiet; /* Don't output text in normal operation */ 78 unsigned int external_offset; /* Add padding to external data */ 79}; 80 81/* --- 224 unchanged lines hidden --- |