Age | Commit message (Expand) | Author |
2022-07-24 | user: put the testelf in a sensible location in the tree | dzwdz |
2022-07-24 | user: change the directory structure to prepare for multiple binaries | dzwdz |
2022-07-23 | compile everything except user_bootstrap as PIC | dzwdz |
2022-07-23 | kernel: switch processes after execbuf_syscall | dzwdz |
2022-07-23 | user_bootstrap: pass the initrd in an argument to init's main | dzwdz |
2022-07-23 | init: compile as an elf | dzwdz |
2022-07-23 | create a bootstrap ELF loader, that'll load init | dzwdz |
2022-07-21 | fix type-related compiler warnings | dzwdz |
2022-07-20 | user/elf: free memory not belonging to the elf when jumping to it | dzwdz |
2022-07-20 | syscall/execbuf: EXECBUF_JMP | dzwdz |
2022-07-18 | syscalls: implement execbuf | dzwdz |
2022-07-18 | user/elf: find free space for PIEs | dzwdz |
2022-07-18 | user: basic elf relocations, PIE support | dzwdz |
2022-07-18 | user: a super primitive ELF loader | dzwdz |
2022-07-17 | amd64: ensure all addresses are canonical | dzwdz |
2022-07-17 | kernel/virt_cpy: error struct, better error handling | dzwdz |
2022-07-17 | amd64: remove dead code, combine shared code | dzwdz |
2022-07-16 | amd64: all tests pass | dzwdz |
2022-07-16 | amd64: back at the shell! | dzwdz |
2022-07-16 | amd64: init can print to the terminal now | dzwdz |
2022-07-16 | amd64: seemingly working syscalls (SYSCALL/SYSRET) | dzwdz |
2022-07-16 | amd64: just enough paging support to map init | dzwdz |
2022-07-16 | amd64: barely boot into kernel code | dzwdz |
2022-07-15 | i686: stop using pushal/popal in sysenter/sysexit | dzwdz |
2022-07-15 | i386/isr: don't use pushal; push registers manually | dzwdz |
2022-07-14 | user/shell/cat: support reading from stdin until eof | dzwdz |
2022-07-14 | user: basic terminal driver with line editing | dzwdz |
2022-07-14 | kernel/driver/serial: allow writes even with pending reads | dzwdz |
2022-07-12 | user/tmpfs: basic read/write | dzwdz |
2022-07-12 | remove the incorrect OPEN_CREATE guards in fs drivers | dzwdz |
2022-07-12 | user/shell: stdout redirection | dzwdz |
2022-07-12 | user/shell: parse redirection syntax | dzwdz |
2022-07-11 | user: add shorthand close() and fork() wrappers for those syscalls | dzwdz |
2022-07-11 | user: reorganize the userland sources | dzwdz |
2022-07-11 | init: file_reopen, keep stdin/stdout on their standard fds | dzwdz |
2022-07-11 | init/stdlib: a more posix-y file api | dzwdz |
2022-07-10 | init/tests: semaphore pipe-based test | dzwdz |
2022-07-10 | syscalls: implement dup | dzwdz |
2022-07-10 | init/lib: implement "evil semaphores" | dzwdz |
2022-07-10 | kernel: implement killing processes stuck on pipes | dzwdz |
2022-07-09 | kernel/pipes: process queueing | dzwdz |
2022-07-09 | init/test: mostly clean up the existing tests | dzwdz |
2022-07-09 | syscalls/pipe: turn into a POSIX-style api with separate rw ends | dzwdz |
2022-07-08 | kernel/proc: remove the type argument from process_handle_get | dzwdz |
2022-07-08 | kernel/syscalls: fix the SYSCALL_RETURN macro for returning pointers | dzwdz |
2022-07-08 | kernel/fsroot: use req_preprocess to calculate offsets everywhere | dzwdz |
2022-07-08 | init/fs: remove fs_respond_delegate, clean up | dzwdz |
2022-07-08 | syscall/fs_respond: get the file id from the buf argument | dzwdz |
2022-07-07 | kernel: add the vfsreq_finish_short shorthand function | dzwdz |
2022-07-07 | kernel/vfs: delegate support in _syscall_fs_respond! | dzwdz |