1234567891011121314151617181920212223242526272829 |
- #ifndef _INITRD_H
- #define _INITRD_H
-
-
-
- FILE_LICENCE ( GPL2_OR_LATER );
-
- #include <ipxe/uaccess.h>
-
-
- #define INITRD_ALIGN 4
-
-
- #define INITRD_MIN_FREE_LEN ( 512 * 1024 )
-
- extern void initrd_reshuffle ( userptr_t bottom );
- extern int initrd_reshuffle_check ( size_t len, userptr_t bottom );
-
- #endif
|