Chameleon

Chameleon Svn Source Tree

Root/branches/rewrite/i386/boot2/mboot.h

Source at commit 1166 created 13 years 10 days ago.
By meklort, Fixed recent Makefile changes. Please do not use /Users/evan/SourceCode/tmp/chameleon/trunk or VPATH. the *only* time you should use /Users/evan/SourceCode/tmp/chameleon/trunk is when setting the SRCROOT variable. Also note that very soon make pkg is going to be removed. The pkg build script in trunk is very out of date. Instead please use the package maker at http://forge.voodooprojects.org/p/chameleonApplications/. Once this is ready for trunk it will be merged.
1/* File added by David F. Elliott <dfe@cox.net> on 2007/06/27 */
2#include "multiboot.h"
3
4/*
5The following DWORD tells the loader what features we require of it.
6bit 0 set: Align modules on 4KB. We have no modules, we may not need this.
7bit 1 set: Provide info about memory. We probably don't need this either
8bit 2 : We might want this. If so we need to tell the loader to stick
9 us in text mode. We currently assume that the loader will put
10 us in text mode if we lack this because that is what GRUB does.
11bit 16 set: This is not ELF, use the multiboot_header fields.
12 We definitely need this flag.
13*/
14/* #define MULTIBOOT_HEADER_FLAGS 0x00010003 */
15
16#define MULTIBOOT_HEADER_FLAGS \
17 (MULTIBOOT_HEADER_HAS_ADDR|MULTIBOOT_HEADER_WANT_MEMORY|MULTIBOOT_HEADER_MODS_ALIGNED)
18
19#ifndef __ASSEMBLER__
20/* Put any desired prototypes or other C stuff here. */
21#endif
22

Archive Download this file

Revision: 1166