aboutsummaryrefslogtreecommitdiff
AgeCommit message (Expand)Author
2024-05-20kernel: tty: Remove useless commentIan Moffett
2024-05-20kernel: tty: Improve hook naming consistencyIan Moffett
2024-05-19kernel: tty: Improve comment in tty_dev_read()Ian Moffett
2024-05-19kernel: tty: Define TTY open hookIan Moffett
2024-05-19kernel: dev: Define stub open hooksIan Moffett
2024-05-19kernel: vfs: Add support for open hookIan Moffett
2024-05-19kernel: vfs: Cleanup sys/vfs.hIan Moffett
2024-05-19libc: Add SYS_reboot defineIan Moffett
2024-05-19kernel: Add reboot() and reboot syscallIan Moffett
2024-05-19libc: termios: Add missing `op` argIan Moffett
2024-05-19libc: vsnprintf: Add '%d' supportIan Moffett
2024-05-19libc: Add auxv_entry()Ian Moffett
2024-05-19libc: Add termios.h with basic functionsIan Moffett
2024-05-19kernel: tty: Implement tty_ioctl()Ian Moffett
2024-05-19build: Export sys/tty.hIan Moffett
2024-05-19kernel: sched: Align 'tdq_lock' on cache line sizeIan Moffett
2024-05-18kernel: tty: Handle input processing betterIan Moffett
2024-05-18kernel: vcons: Move vcons_process_output() callIan Moffett
2024-05-18kernel: tty: Add tty_putstr()Ian Moffett
2024-05-18kernel: tty: Handle ICANONIan Moffett
2024-05-18kernel: syslog: Remove useless variableIan Moffett
2024-05-18kernel: termios: Add ICANON flagIan Moffett
2024-05-17kernel: tty: Append to ring before length checkIan Moffett
2024-05-17libc: Add printf()Ian Moffett
2024-05-17libc: Add initial vsnprintf() codeIan Moffett
2024-05-17docs: man: Create kconf(1)Ian Moffett
2024-05-17build: kconf: Ignore kconf binaryIan Moffett
2024-05-17build: kconf: Remove useless fileIan Moffett
2024-05-17kernel/amd64: machdep: Beep based on kernel configIan Moffett
2024-05-17build: Introduce kconf for kernel configurationIan Moffett
2024-05-16kernel: panic: Call intr_mask() firstIan Moffett
2024-05-16kernel: sched: Move loader code away from schedIan Moffett
2024-05-15kernel/amd64: machdep: Cleanup processor_init()Ian Moffett
2024-05-14kernel/amd64: Fix early panic triple faultIan Moffett
2024-05-14kernel/amd64: machdep: Reorganize functionsIan Moffett
2024-05-14kernel: init: Cleanup whitespaceIan Moffett
2024-05-14kernel: machdep: Add machine_panic() + panic beepIan Moffett
2024-05-14kernel: isa: Add pcspkr supportIan Moffett
2024-05-14kernel: i8254: Add channel 2 port defineIan Moffett
2024-05-14kernel: tty: Add tty_attach()Ian Moffett
2024-05-14kernel: vsnprintf: Use int instead of int64_tIan Moffett
2024-05-14kernel: devfs: Add cdev_read()Ian Moffett
2024-05-12kernel/amd64: i8042: Prevent blinking capslock LEDIan Moffett
2024-05-12kernel/amd64: isa: Add i8042 driverIan Moffett
2024-05-12kernel: tty: Add initial TTY codeIan Moffett
2024-05-12kernel: vcons: Support ASCII_BS for backspaceIan Moffett
2024-05-12kernel: vcons: Don't touch termiosIan Moffett
2024-05-07kernel: nvme: Use PCI_BAR_MEMBASE() to fetch baseIan Moffett
2024-05-07kernel: pci: Add macros for fetching BAR baseIan Moffett
2024-05-07libc: stdlib: POSIX-compliant randomnessAptRock327