1234567891011121314151617181920212223242526 |
- #ifndef RELOCATE_H
- #define RELOCATE_H
-
-
- #ifndef KEEP_IT_REAL
-
- #include <gpxe/tables.h>
-
-
- struct post_reloc_fn {
- void ( *post_reloc ) ( void );
- };
-
-
- #define POST_RELOC_LIBRM 00
-
-
- #define POST_RELOC_FN( order, post_reloc_func ) \
- struct post_reloc_fn PREFIX_OBJECT(post_reloc_fn__) \
- __table ( post_reloc_fn, order ) = { \
- .post_reloc = post_reloc_func, \
- };
-
- #endif
-
- #endif
|