More changes.

This commit is contained in:
Bahadir Balban
2008-03-05 01:59:31 +00:00
parent 58b833dd7f
commit 5681f3d1cb
10 changed files with 209 additions and 219 deletions

View File

@@ -1,9 +1,30 @@
/*
* Data that comes from the kernel, and other init data.
*
* Copyright (C) 2007 Bahadir Balban
*/
#ifndef __INIT_H__
#define __INIT_H__
#ifndef __MM_INIT_H__
#define __MM_INIT_H__
#include <l4/macros.h>
#include <l4/config.h>
#include <l4/types.h>
#include <l4/generic/physmem.h>
#include INC_PLAT(offsets.h)
#include INC_GLUE(memory.h)
#include INC_GLUE(memlayout.h)
#include INC_ARCH(bootdesc.h)
#include <vm_area.h>
struct initdata {
struct bootdesc *bootdesc;
struct page_bitmap page_map;
};
extern struct initdata initdata;
int request_initdata(struct initdata *i);
void initialise(void);
#endif /* __INIT_H__ */
#endif /* __MM_INIT_H__ */