2012-01-30 22:10:53 +04:00
|
|
|
/* vim: tabstop=4 shiftwidth=4 noexpandtab
|
|
|
|
*
|
|
|
|
* Initial Startup
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdio.h>
|
2012-01-30 22:13:11 +04:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <string.h>
|
2012-01-30 22:10:53 +04:00
|
|
|
#include <syscall.h>
|
|
|
|
|
|
|
|
DEFN_SYSCALL1(sethostname, 31, char *);
|
|
|
|
|
|
|
|
#define DEFAULT_HOSTNAME "toaru-test"
|
|
|
|
#define FORK_FOR_TERMINAL 0
|
|
|
|
|
|
|
|
/* 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);
|
2012-01-30 22:13:11 +04:00
|
|
|
if (buf[strlen(buf)-1] == '\n') {
|
|
|
|
buf[strlen(buf)-1] = '\0';
|
|
|
|
}
|
2012-01-30 22:10:53 +04:00
|
|
|
syscall_sethostname(buf);
|
|
|
|
fclose(_host_file);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void start_terminal() {
|
|
|
|
#if FORK_FOR_TERMINAL
|
|
|
|
int pid = fork();
|
|
|
|
if (!pid) {
|
|
|
|
#endif
|
|
|
|
char * tokens[] = {
|
2012-02-05 08:29:46 +04:00
|
|
|
"/bin/terminal",
|
2012-01-30 22:10:53 +04:00
|
|
|
NULL
|
|
|
|
};
|
|
|
|
int i = execve(tokens[0], tokens, NULL);
|
|
|
|
exit(0);
|
|
|
|
#if FORK_FOR_TEMRINAL
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
void main(int argc, char * argv[]) {
|
|
|
|
/* Hostname */
|
|
|
|
set_hostname();
|
|
|
|
/* Terminal */
|
|
|
|
start_terminal();
|
|
|
|
}
|