63 lines
1.4 KiB
C
63 lines
1.4 KiB
C
/* vim: tabstop=4 shiftwidth=4 noexpandtab
|
|
*
|
|
* init
|
|
*
|
|
* Provides the standard boot routines and
|
|
* calls the user session (compositor / terminal)
|
|
*/
|
|
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <unistd.h>
|
|
#include <string.h>
|
|
#include <syscall.h>
|
|
|
|
#define DEFAULT_HOSTNAME "toaru-test"
|
|
|
|
/* Set the hostname to whatever is in /etc/hostname */
|
|
void set_hostname() {
|
|
FILE * _host_file = fopen("/etc/hostname", "r");
|
|
if (!_host_file) {
|
|
/* No /etc/hostname, use the default */
|
|
syscall_sethostname(DEFAULT_HOSTNAME);
|
|
} else {
|
|
char buf[256];
|
|
fgets(buf, 255, _host_file);
|
|
if (buf[strlen(buf)-1] == '\n') {
|
|
buf[strlen(buf)-1] = '\0';
|
|
}
|
|
syscall_sethostname(buf);
|
|
setenv("HOST", buf, 1);
|
|
fclose(_host_file);
|
|
}
|
|
}
|
|
|
|
int start_options(char * args[]) {
|
|
int pid = fork();
|
|
if (!pid) {
|
|
int i = execvp(args[0], args);
|
|
exit(0);
|
|
} else {
|
|
return syscall_wait(pid);
|
|
}
|
|
}
|
|
|
|
int main(int argc, char * argv[]) {
|
|
/* Hostname */
|
|
set_hostname();
|
|
if (argc > 1) {
|
|
char * args = NULL;
|
|
if (argc > 2) {
|
|
args = argv[2];
|
|
}
|
|
if (!strcmp(argv[1],"--single")) {
|
|
return start_options((char *[]){"/bin/compositor","/bin/terminal","-Fl",args,NULL});
|
|
} else if (!strcmp(argv[1], "--single-beta")) {
|
|
return start_options((char *[]){"/bin/compositor-beta","/bin/drawlines",args,NULL});
|
|
} else if (!strcmp(argv[1], "--vga")) {
|
|
return start_options((char *[]){"/bin/vga-warning",NULL});
|
|
}
|
|
}
|
|
return start_options((char *[]){"/bin/compositor",NULL});
|
|
}
|