projects
/
yaboot.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Commit yaboot 1.3.4-pre1
[yaboot.git]
/
include
/
yaboot.h
1
#ifndef __YABOOT_H__
2
#define __YABOOT_H__
3
4
#include "file.h"
5
6
struct boot_param_t {
7
struct boot_fspec_t kernel;
8
struct boot_fspec_t rd;
9
struct boot_fspec_t sysmap;
10
11
char* args;
12
};
13
14
extern int useconf;
15
extern char bootdevice[];
16
extern char *bootpath;
17
extern int bootpartition;
18
19
#endif