2021-05-31 04:47:02 +03:00
|
|
|
/**
|
|
|
|
* @file kernel/generic.c
|
|
|
|
* @brief Architecture-neutral startup sequences.
|
|
|
|
*
|
|
|
|
* The generic startup sequence is broken into two parts:
|
|
|
|
* @c generic_startup should be called as soon as the platform
|
|
|
|
* has configured memory and is ready for the VFS and scheduler
|
|
|
|
* to be initialized. @c generic_main should be called after
|
|
|
|
* the platform has set up its own device drivers, loaded any
|
|
|
|
* early filesystems, and is ready to yield control to init.
|
|
|
|
*/
|
|
|
|
#include <kernel/generic.h>
|
|
|
|
#include <kernel/args.h>
|
|
|
|
#include <kernel/process.h>
|
|
|
|
#include <kernel/string.h>
|
|
|
|
#include <kernel/printf.h>
|
|
|
|
|
|
|
|
extern const char * arch_get_cmdline(void);
|
|
|
|
extern void tarfs_register_init(void);
|
|
|
|
extern void tmpfs_register_init(void);
|
|
|
|
extern void tasking_start(void);
|
|
|
|
extern void packetfs_initialize(void);
|
|
|
|
extern void zero_initialize(void);
|
|
|
|
extern void procfs_initialize(void);
|
|
|
|
extern void shm_install(void);
|
|
|
|
extern void random_initialize(void);
|
|
|
|
extern int system(const char * path, int argc, const char ** argv, const char ** envin);
|
|
|
|
extern void snd_install(void);
|
|
|
|
extern void net_install(void);
|
2021-10-19 14:29:01 +03:00
|
|
|
extern void console_initialize(void);
|
2021-05-31 04:47:02 +03:00
|
|
|
|
|
|
|
void generic_startup(void) {
|
|
|
|
args_parse(arch_get_cmdline());
|
|
|
|
initialize_process_tree();
|
|
|
|
shm_install();
|
|
|
|
vfs_install();
|
|
|
|
tarfs_register_init();
|
|
|
|
tmpfs_register_init();
|
|
|
|
map_vfs_directory("/dev");
|
2021-10-19 14:29:01 +03:00
|
|
|
console_initialize();
|
2021-05-31 04:47:02 +03:00
|
|
|
packetfs_initialize();
|
|
|
|
zero_initialize();
|
|
|
|
procfs_initialize();
|
|
|
|
random_initialize();
|
|
|
|
snd_install();
|
|
|
|
net_install();
|
|
|
|
tasking_start();
|
|
|
|
}
|
|
|
|
|
|
|
|
int generic_main(void) {
|
|
|
|
if (args_present("root")) {
|
|
|
|
const char * root_type = "tar";
|
|
|
|
if (args_present("root_type")) {
|
|
|
|
root_type = args_value("root_type");
|
|
|
|
}
|
|
|
|
vfs_mount_type(root_type,args_value("root"),"/");
|
|
|
|
}
|
|
|
|
|
|
|
|
const char * boot_arg = NULL;
|
|
|
|
|
|
|
|
if (args_present("args")) {
|
|
|
|
boot_arg = strdup(args_value("args"));
|
|
|
|
}
|
|
|
|
|
|
|
|
const char * boot_app = "/bin/init";
|
|
|
|
if (args_present("init")) {
|
|
|
|
boot_app = args_value("init");
|
|
|
|
}
|
|
|
|
|
2021-10-20 10:03:05 +03:00
|
|
|
dprintf("generic: Running %s as init process.\n", boot_app);
|
2021-10-19 14:29:01 +03:00
|
|
|
|
2021-05-31 04:47:02 +03:00
|
|
|
const char * argv[] = {
|
|
|
|
boot_app,
|
|
|
|
boot_arg,
|
|
|
|
NULL
|
|
|
|
};
|
|
|
|
int argc = 0;
|
|
|
|
while (argv[argc]) argc++;
|
|
|
|
system(argv[0], argc, argv, NULL);
|
|
|
|
|
|
|
|
printf("Failed to execute %s.\n", boot_app);
|
|
|
|
switch_task(0);
|
|
|
|
return 0;
|
|
|
|
}
|