aboutsummaryrefslogtreecommitdiff
path: root/apps/init.c
diff options
context:
space:
mode:
authorMarvin Borner2020-08-21 20:39:48 +0200
committerMarvin Borner2020-08-21 20:39:48 +0200
commitf700ba6668dbdb91a03b2c5aa387eb4cabae8fcd (patch)
treeb04a80efabb09c9da9726332ccd22cb5a325fe39 /apps/init.c
parent1339d96cea2c647991c178587008d6fc40772a78 (diff)
Some things here and some things there
Diffstat (limited to 'apps/init.c')
-rw-r--r--apps/init.c13
1 files changed, 8 insertions, 5 deletions
diff --git a/apps/init.c b/apps/init.c
index de87798..64fbde3 100644
--- a/apps/init.c
+++ b/apps/init.c
@@ -8,11 +8,14 @@
#include <sys.h>
#include <vesa.h>
-void main(struct vbe *vbe)
+int main(int argc, char **argv)
{
- print("Init loaded.\n");
- int a = exec("/wm", vbe);
+ (void)argc;
- if (a)
- exit();
+ printf("ARGC: %d\n", argc);
+ printf("ARGV: %x\n", argv);
+ printf("%s loaded.\n", argv[0]);
+
+ exec("/wm", "wm", argv[1], NULL);
+ return 0;
}