You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

67 lines
1.5 KiB
C

/* See the end of this file for copyright, license, and warranty information. */
#include <ardix/io.h>
#include <ardix/kent.h>
#include <ardix/kevent.h>
#include <ardix/sched.h>
#include <config.h>
#include <stdbool.h>
#include <stddef.h>
#include <stdint.h>
#include <stdio.h>
#include <unistd.h>
extern int init_main(void); /* init/main.c */
/**
* Core init routine.
*
* This is invoked from the startup code (usually) located in
* arch/<architecture>/startup.c.
*/
int main(void)
{
int err = kent_root_init();
if (err != 0)
return err;
kevents_init();
err = sched_init();
if (err != 0)
return err;
err = devices_init();
if (err != 0)
return err;
err = io_init();
if (err != 0)
return err;
/* we should have a serial console now */
printf("Ardix version " ARDIX_VERSION_STR "\n");
printf("This is non-violent software, and there is NO WARRANTY.\n");
printf("See <https://git.fef.moe/fef/ardix> for details.\n\n");
pid_t pid = exec(init_main);
waitpid(pid, &err, 0);
printf("initd exited with status %d, system halted\n", err);
while (1);
}
/*
* This file is part of Ardix.
* Copyright (c) 2020, 2021 Felix Kopp <owo@fef.moe>.
*
* Ardix is non-violent software: you may only use, redistribute,
* and/or modify it under the terms of the CNPLv6+ as found in
* the LICENSE file in the source code root directory or at
* <https://git.pixie.town/thufie/CNPL>.
*
* Ardix comes with ABSOLUTELY NO WARRANTY, to the extent
* permitted by applicable law. See the CNPLv6+ for details.
*/