blob: 99d60b789bce73ff338b862b5be3fd3dd147e90d [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;
char* args;
};
extern int useconf;
extern char bootdevice[];
extern char *bootpath;
extern int bootpartition;
#endif