forked from Piraterna/aurix
did some stuff, will probably refactor later
This commit is contained in:
parent
10ee4fcbd9
commit
bc4ec556e2
46 changed files with 1013 additions and 35635 deletions
|
@ -17,9 +17,13 @@
|
|||
/* SOFTWARE. */
|
||||
/*********************************************************************************/
|
||||
|
||||
#include <config/config.h>
|
||||
#include <loader/loader.h>
|
||||
#include <proto/aurix.h>
|
||||
#include <uart/uart.h>
|
||||
#include <vfs/vfs.h>
|
||||
#include <ui/ui.h>
|
||||
#include <axboot.h>
|
||||
#include <print.h>
|
||||
|
||||
void axboot_init()
|
||||
|
@ -32,5 +36,20 @@ void axboot_init()
|
|||
while (1);
|
||||
}
|
||||
|
||||
ui_init();
|
||||
//config_init();
|
||||
|
||||
//ui_init();
|
||||
|
||||
//debug("axboot_init(): Returned from main menu, something went wrong. Halting!");
|
||||
//UNREACHABLE();
|
||||
|
||||
// just boot aurixos for now
|
||||
struct axboot_entry axos = {
|
||||
.name = "AurixOS",
|
||||
.description = "",
|
||||
.image_path = "\\System\\axkrnl",
|
||||
.protocol = PROTO_AURIX
|
||||
};
|
||||
loader_load(&axos);
|
||||
UNREACHABLE();
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue