git://scm.lunaixsky.com
/
lunaix-os.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Code-base clean-up and refactoring (#47)
[lunaix-os.git]
/
lunaix-os
/
arch
/
x86
/
includes
/
sys
/
boot
/
multiboot.h
1
#ifndef LUNAIX_MULTIBOOT_H
2
#define LUNAIX_MULTIBOOT_H 1
3
4
#ifdef CONFIG_X86_BL_MB
5
# include "mb.h"
6
# define MULTIBOOT_MAGIC 0x1BADB002
7
#elif CONFIG_X86_BL_MB2
8
# include "mb2.h"
9
# define MULTIBOOT_MAGIC 0xe85250d6
10
#else
11
#error "Multiboot interfacing is not enabled"
12
#endif
13
14
#endif