436d6012a3
-Move libdriver to lib/ -Install all boot image services on filesystem to aid restartability
14 lines
164 B
C
14 lines
164 B
C
/*
|
|
Ramdisk that is part of the image
|
|
*/
|
|
|
|
#include <stddef.h>
|
|
|
|
#include "local.h"
|
|
|
|
unsigned char imgrd[]=
|
|
{
|
|
#include "image.c"
|
|
};
|
|
|
|
size_t imgrd_size= sizeof(imgrd);
|