Changeset 1787e527 in mainline for boot/arch/ppc32/loader/main.h
- Timestamp:
- 2009-11-16T21:22:54Z (15 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 5ebdf94
- Parents:
- fcbd1be (diff), 9c70ed6 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
boot/arch/ppc32/loader/main.h
rfcbd1be r1787e527 30 30 #define BOOT_ppc32_MAIN_H_ 31 31 32 #include "ofw.h" 32 #include <ofw.h> 33 #include <ofw_tree.h> 34 #include <balloc.h> 35 #include <types.h> 33 36 34 #define TASKMAP_MAX_RECORDS 3237 #define TASKMAP_MAX_RECORDS 32 35 38 36 39 /** Size of buffer for storing task name in task_t. */ 37 #define BOOTINFO_TASK_NAME_BUFLEN 3240 #define BOOTINFO_TASK_NAME_BUFLEN 32 38 41 39 /** Struct holding information about single loaded task. */40 42 typedef struct { 41 /** Address where the task was placed. */42 43 void *addr; 43 /** Size of the task's binary. */ 44 unsigned int size; 45 /** Task name. */ 44 uint32_t size; 46 45 char name[BOOTINFO_TASK_NAME_BUFLEN]; 47 46 } task_t; 48 47 49 48 typedef struct { 50 u nsigned int count;49 uint32_t count; 51 50 task_t tasks[TASKMAP_MAX_RECORDS]; 52 51 } taskmap_t; … … 55 54 memmap_t memmap; 56 55 taskmap_t taskmap; 57 screen_t screen;58 macio_t macio;56 ballocs_t ballocs; 57 ofw_tree_node_t *ofw_root; 59 58 } bootinfo_t; 60 59 … … 62 61 extern void bootstrap(void); 63 62 64 extern memmap_t memmap;65 66 63 #endif
Note:
See TracChangeset
for help on using the changeset viewer.