aboutsummaryrefslogtreecommitdiff
path: root/apps/init.c
diff options
context:
space:
mode:
authorMarvin Borner2021-02-10 20:28:16 +0100
committerMarvin Borner2021-02-10 20:28:16 +0100
commite7fb1f97a5f95bcfd1d924b345f98bc0b496f5c0 (patch)
tree70984e3433c5de919d2be59c0ad633156213e30b /apps/init.c
parentedc570a3552a7fdaaf89962e5374d98c2b3dfaa0 (diff)
Print to streams instead of serial console
Diffstat (limited to 'apps/init.c')
-rw-r--r--apps/init.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/apps/init.c b/apps/init.c
index 3cb4527..bb9a556 100644
--- a/apps/init.c
+++ b/apps/init.c
@@ -9,8 +9,7 @@
int main(int argc, char **argv)
{
(void)argc;
- /* printf("ARGC: %d\n", argc); */
- /* printf("[%s loaded]\n", argv[0]); */
+ log("%s loaded\n", argv[0]);
int wm = exec("/bin/wm", "wm", argv[1], NULL);
int exec = exec("/bin/exec", "test", NULL);