| OLD | NEW |
| 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 // Constants describing the kernel blob content. | 5 // Constants describing the kernel blob content. |
| 6 | 6 |
| 7 #ifndef VBOOT_REFERENCE_KERNEL_BLOB_H_ | 7 #ifndef VBOOT_REFERENCE_KERNEL_BLOB_H_ |
| 8 #define VBOOT_REFERENCE_KERNEL_BLOB_H_ | 8 #define VBOOT_REFERENCE_KERNEL_BLOB_H_ |
| 9 | 9 |
| 10 | 10 |
| (...skipping 30 matching lines...) Expand all Loading... |
| 41 uint8_t pad3[0x218 - 0x211]; | 41 uint8_t pad3[0x218 - 0x211]; |
| 42 uint32_t ramdisk_image; // 218 | 42 uint32_t ramdisk_image; // 218 |
| 43 uint32_t ramdisk_size; // 21c | 43 uint32_t ramdisk_size; // 21c |
| 44 uint8_t pad4[0x228 - 0x220]; | 44 uint8_t pad4[0x228 - 0x220]; |
| 45 uint32_t cmd_line_ptr; // 228 | 45 uint32_t cmd_line_ptr; // 228 |
| 46 uint8_t pad5[0x0cd0 - 0x22c]; | 46 uint8_t pad5[0x0cd0 - 0x22c]; |
| 47 } __attribute__ ((packed)); | 47 } __attribute__ ((packed)); |
| 48 | 48 |
| 49 | 49 |
| 50 #endif // VBOOT_REFERENCE_KERNEL_BLOB_H_ | 50 #endif // VBOOT_REFERENCE_KERNEL_BLOB_H_ |
| OLD | NEW |