From 8b52d7698e4a9a5abaf730c7da1c4f865cb78f8e Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Wed, 29 Apr 2020 23:26:51 +0200 Subject: Working framebuffer from userspace... Well, it doesn't actually work. I disabled several security measures to get this working and I'll try to fix these soon. --- src/userspace/programs/init.c | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) (limited to 'src/userspace/programs/init.c') diff --git a/src/userspace/programs/init.c b/src/userspace/programs/init.c index a669249..3c1d51f 100644 --- a/src/userspace/programs/init.c +++ b/src/userspace/programs/init.c @@ -5,14 +5,9 @@ void main() { - u32 *buf = malloc(4096); - for (int i = 0; i < 4; i++) - buf[i] = 42; - syscall_halt(); - - //printf("Initializing userspace...\n"); - //gui_init(); - //syscall_exec("/bin/sh"); + printf("Initializing userspace...\n"); + gui_init(); + syscall_exec("/bin/sh"); while (1) { }; -- cgit v1.2.3