blob: d7a92775570522430c1f29bff4df10d574f92663 [file] [log] [blame] [raw]
#ifndef __YABOOT_H__
#define __YABOOT_H__
#include "file.h"
struct boot_param_t {
struct boot_fspec_t kernel;
struct boot_fspec_t rd;
struct boot_fspec_t sysmap;
struct boot_fspec_t splash;
char* args;
};
extern int useconf;
extern char bootdevice[];
extern char *bootpath;
extern int bootpartition;
#endif