mirror of
https://github.com/wiidev/usbloadergx.git
synced 2024-11-16 00:15:08 +01:00
0f17471b27
*Added sources of the custom libs to the branches *Fixed crash when switching from list layout to grid/carousel layout *Removed 1:1 copy option because its meaningless and almost the same as installing all partitions *Fixed install partition selection. This option needs a reset. Go to settings and reselect your option for this. *Fixed schinese and tchinese language modes (filename bugs. has to be schinese.lang and tchinese.lang like on SVN) *Fixed bug in sound buffer circle *Fixed incorrect behaviour of x-flip when selecting system like (thx Cyan for the patch) *Accept ios revision 65535 for Waninkokos IOSes (thx to PPSainity for pointing it out) *Merged the new theming style branch into trunk. Just as a reminder: ALL old themes will not work until the themers did port it to the new style! *Removed old theme style completely Theme example: The example file of the theme is the Default.them file. It can be found in the SVN trunk. Change in loading of themes: When selecting a theme now a list of all .them files in a folder is displayed. The image folder of that theme has to be in the same folder as the .them file. The image path is defined in the head of the .them file in the line with "Image-Folder: Example\n".
52 lines
1.3 KiB
C
52 lines
1.3 KiB
C
/*
|
|
* e2image.h --- header file describing the ext2 image format
|
|
*
|
|
* Copyright (C) 2000 Theodore Ts'o.
|
|
*
|
|
* Note: this uses the POSIX IO interfaces, unlike most of the other
|
|
* functions in this library. So sue me.
|
|
*
|
|
* %Begin-Header%
|
|
* This file may be redistributed under the terms of the GNU Library
|
|
* General Public License, version 2.
|
|
* %End-Header%
|
|
*/
|
|
|
|
|
|
struct ext2_image_hdr {
|
|
__u32 magic_number; /* This must be EXT2_ET_MAGIC_E2IMAGE */
|
|
char magic_descriptor[16]; /* "Ext2 Image 1.0", w/ null padding */
|
|
char fs_hostname[64];/* Hostname of machine of image */
|
|
char fs_netaddr[32]; /* Network address */
|
|
__u32 fs_netaddr_type;/* 0 = IPV4, 1 = IPV6, etc. */
|
|
__u32 fs_device; /* Device number of image */
|
|
char fs_device_name[64]; /* Device name */
|
|
char fs_uuid[16]; /* UUID of filesystem */
|
|
__u32 fs_blocksize; /* Block size of the filesystem */
|
|
__u32 fs_reserved[8];
|
|
|
|
__u32 image_device; /* Device number of image file */
|
|
__u32 image_inode; /* Inode number of image file */
|
|
__u32 image_time; /* Time of image creation */
|
|
__u32 image_reserved[8];
|
|
|
|
__u32 offset_super; /* Byte offset of the sb and descriptors */
|
|
__u32 offset_inode; /* Byte offset of the inode table */
|
|
__u32 offset_inodemap; /* Byte offset of the inode bitmaps */
|
|
__u32 offset_blockmap; /* Byte offset of the inode bitmaps */
|
|
__u32 offset_reserved[8];
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|