summaryrefslogtreecommitdiff
AgeCommit message (Expand)Author
2025-10-15kern/amd64: i8042: Add option to poll keyboardIan Moffett
2025-10-15kern/amd64: proc: Don't dequeue procs in idle loopIan Moffett
2025-10-15kern: init: Initialize scheduler before modulesIan Moffett
2025-10-15kern/amd64: proc: md_proc_yield -> md_proc_idleIan Moffett
2025-10-15kern/amd64: Introduce kernel threadsIan Moffett
2025-10-15build: Move 'login' to system binariesIan Moffett
2025-10-15cmd: Add initial 'login' programIan Moffett
2025-10-15data: Add initial user credsIan Moffett
2025-10-15libc: stdio: Add puts() functionIan Moffett
2025-10-15libc: string: Add memcmp() functionIan Moffett
2025-10-15libc: unistd: Add close system call interfaceIan Moffett
2025-10-15kern: filedesc: Add close() system callIan Moffett
2025-10-15kern: vfs: Add reclaim callback to vnodeIan Moffett
2025-10-15kern: omar: Make OMAR reads offset awareIan Moffett
2025-10-15kern: vfs: Make vnode r/w operations offset awareIan Moffett
2025-10-15libc: unistd: Add read system call interfaceIan Moffett
2025-10-15kern: Add SYS_read system call for file I/OIan Moffett
2025-10-15kern: omar: Implement VFS read vopIan Moffett
2025-10-15kern: namei: Return vnode before exiting functionIan Moffett
2025-10-15kern: namei: Return -NOENT at function endIan Moffett
2025-10-15kern: vfs: Add vnode operation for readsIan Moffett
2025-10-15kern: omar: Set vnode ops per looked up nodeIan Moffett
2025-10-15kern: filedesc: Don't stop searching without fdIan Moffett
2025-10-15kern: filedesc: Remove outdated commentIan Moffett
2025-10-15kern: vfs: Add NULL check for write vopIan Moffett
2025-10-14cmd: Add 'lsdisk' utilityIan Moffett
2025-10-14kern: dms: Add DMS QUERY opcode for devinfoIan Moffett
2025-10-14libc: Add DMS I/O syscall interfaceIan Moffett
2025-10-14kern: dms: Add initial DMS engine sourcesIan Moffett
2025-10-14kern: ahci: Implement DMS read interfaceIan Moffett
2025-10-14kern: dms: Make DMS block size awareIan Moffett
2025-10-14kern: ahci: Don't hardcode block sizesIan Moffett
2025-10-14kern: ahci: Register SATA drives to DMSIan Moffett
2025-10-14kern: Add initial DMS frameworkIan Moffett
2025-10-14kern: ahci: Correct buffer order during ahci r/wIan Moffett
2025-10-14kern: ahci: Implement r/w of SATA drivesIan Moffett
2025-10-14libc: Add __libc_init as well as cmdline argumentsIan Moffett
2025-10-14kern: proc: Check argc after checking envblkIan Moffett
2025-10-14cmd: hush: Ignore input if buffer is emptyIan Moffett
2025-10-13kern: ahci: Add cmdslot allocation + identifyIan Moffett
2025-10-13kern: ahci: Allocate raw physical memoryIan Moffett
2025-10-13kern: proc: Add NULL check for envblkIan Moffett
2025-10-13kern: os: Remove extra newlineIan Moffett
2025-10-13kern/amd64: Init LAPIC before PCI bus driverIan Moffett
2025-10-13cmd: Add initial 'fetch' commandIan Moffett
2025-10-13cmd: hush: Wait for commands to finishIan Moffett
2025-10-13libc: Add SYS_wait syscall interfaceIan Moffett
2025-10-13kern: proc: Add initial waitpid() syscallIan Moffett
2025-10-13kern: proc: Implement process sleeping and wakingIan Moffett
2025-10-13kern: proc: Use seperate queue link for lookupsIan Moffett