repo.or.cz
/
linux-2.6.9-moxart.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
initial commit with v2.6.9
[linux-2.6.9-moxart.git]
/
include
/
asm-mips
/
lasat
/
head.h
blob
f5589f31a197b8ea535c81e0bc1c1e3607523fb9
1
/*
2
* Image header stuff
3
*/
4
#ifndef _HEAD_H
5
#define _HEAD_H
6
7
#define LASAT_K_MAGIC0_VAL 0xfedeabba
8
#define LASAT_K_MAGIC1_VAL 0x00bedead
9
10
#ifndef _LANGUAGE_ASSEMBLY
11
#include <linux/types.h>
12
struct
bootloader_header
{
13
u32 magic
[
2
];
14
u32 version
;
15
u32 image_start
;
16
u32 image_size
;
17
u32 kernel_start
;
18
u32 kernel_entry
;
19
};
20
#endif
21
22
#endif
/* _HEAD_H */