aboutsummaryrefslogtreecommitdiff
path: root/include/apos/init.h
diff options
context:
space:
mode:
authorKimplul <kimi.h.kuparinen@gmail.com>2021-12-19 17:10:36 +0200
committerKimplul <kimi.h.kuparinen@gmail.com>2021-12-19 17:10:36 +0200
commit9966b49db468de0168c7a455dfb5b4c66c413c4d (patch)
treedf31febe5e1ae52bae68ebe1df8b4469b97e0546 /include/apos/init.h
parent8bb1e280280c2f30740defca68ea643c56a3d880 (diff)
downloadkmi-9966b49db468de0168c7a455dfb5b4c66c413c4d.tar.gz
kmi-9966b49db468de0168c7a455dfb5b4c66c413c4d.zip
Massive changes to jump to userspace
Diffstat (limited to 'include/apos/init.h')
-rw-r--r--include/apos/init.h31
1 files changed, 0 insertions, 31 deletions
diff --git a/include/apos/init.h b/include/apos/init.h
deleted file mode 100644
index 2dd8a27..0000000
--- a/include/apos/init.h
+++ /dev/null
@@ -1,31 +0,0 @@
-#ifndef APOS_INIT_H
-#define APOS_INIT_H
-
-#include <apos/pmem.h>
-#include <apos/vmem.h>
-
-struct init_data_t {
- pm_t init_base;
- pm_t init_top;
-
- pm_t initrd_base;
- pm_t initrd_top;
-
- pm_t pmap_base;
- pm_t pmap_top;
-
- pm_t fdt_base;
- pm_t fdt_top;
-
- pm_t stack_base;
- pm_t stack_top;
-
- struct vm_branch_t *kernel_vm_base;
- vm_t tmp_pte;
-
- size_t max_order;
- size_t bits[10];
- size_t page_shift;
-};
-
-#endif /* APOS_INIT_H */