2020-07-26 15:38:29 -05:00
|
|
|
/**
|
|
|
|
* \file
|
|
|
|
*/
|
|
|
|
|
2020-07-26 14:39:08 -05:00
|
|
|
#ifndef INITRD_H
|
|
|
|
#define INITRD_H
|
|
|
|
|
2020-07-26 15:38:29 -05:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Gets the size of the initrd
|
|
|
|
* \return the size of the initrd
|
|
|
|
*/
|
|
|
|
long initrd_sz();
|
|
|
|
/**
|
|
|
|
* Copies the initrd to a specified area in memory
|
|
|
|
* \param initrd the address to copy the initrd to
|
|
|
|
*/
|
2020-07-26 14:39:08 -05:00
|
|
|
void initrd_get(char* initrd);
|
|
|
|
|
|
|
|
#endif
|