Second Extended Filesystem (ext2) and other improvements (#33)
[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