aboutsummaryrefslogtreecommitdiff
path: root/src/userspace/programs
diff options
context:
space:
mode:
authorMarvin Borner2020-04-29 23:26:51 +0200
committerMarvin Borner2020-04-29 23:26:51 +0200
commit8b52d7698e4a9a5abaf730c7da1c4f865cb78f8e (patch)
tree873f2ae99b369f4db809fe1cd2684ae0e60c6144 /src/userspace/programs
parent0f54f0de1004c6e9a455c295dc76879ac37a408f (diff)
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.
Diffstat (limited to 'src/userspace/programs')
-rw-r--r--src/userspace/programs/init.c11
1 files changed, 3 insertions, 8 deletions
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) {
};