mirror of
https://github.com/xcat2/xNBA.git
synced 2025-01-18 21:43:14 +00:00
Rearrange struct image to reflect usage of the fields
This commit is contained in:
parent
eba3609e7f
commit
2be2f3b205
@ -23,23 +23,20 @@ struct image {
|
||||
char name[16];
|
||||
/** List of registered images */
|
||||
struct list_head list;
|
||||
/** Flags */
|
||||
unsigned int flags;
|
||||
|
||||
/** Command line to pass to image */
|
||||
char cmdline[CMDLINE_MAX];
|
||||
|
||||
/** Raw file image */
|
||||
userptr_t data;
|
||||
/** Length of raw file image */
|
||||
size_t len;
|
||||
|
||||
/** Entry point */
|
||||
physaddr_t entry;
|
||||
|
||||
/** Image type, if known */
|
||||
struct image_type *type;
|
||||
|
||||
/** Flags */
|
||||
unsigned int flags;
|
||||
/** Entry point */
|
||||
physaddr_t entry;
|
||||
};
|
||||
|
||||
/** Image is loaded */
|
||||
|
Loading…
x
Reference in New Issue
Block a user