repo.or.cz
/
cris-mirror.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge tag 'for_linus' of git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost
[cris-mirror.git]
/
arch
/
mips
/
include
/
asm
/
lasat
/
head.h
blob
20b0ecedd4b50df7555673a19190e5ae2c717852
1
/* SPDX-License-Identifier: GPL-2.0 */
2
/*
3
* Image header stuff
4
*/
5
#ifndef _HEAD_H
6
#define _HEAD_H
7
8
#define LASAT_K_MAGIC0_VAL 0xfedeabba
9
#define LASAT_K_MAGIC1_VAL 0x00bedead
10
11
#ifndef _LANGUAGE_ASSEMBLY
12
#include <linux/types.h>
13
struct
bootloader_header
{
14
u32 magic
[
2
];
15
u32 version
;
16
u32 image_start
;
17
u32 image_size
;
18
u32 kernel_start
;
19
u32 kernel_entry
;
20
};
21
#endif
22
23
#endif
/* _HEAD_H */