├── .gitignore ├── .gitmodules ├── Dockerfile ├── LICENSE.txt ├── Makefile ├── README.md ├── bin ├── Makefile ├── cat │ ├── .gitignore │ ├── Makefile │ └── cat.c ├── chmod │ ├── .gitignore │ ├── Makefile │ └── chmod.c ├── chown │ ├── .gitignore │ ├── Makefile │ └── chown.c ├── cp │ ├── .gitignore │ ├── Makefile │ └── cp.c ├── date │ ├── .gitignore │ ├── Makefile │ └── date.c ├── dmesg │ ├── .gitignore │ ├── Makefile │ └── dmesg.c ├── echo │ ├── .gitignore │ ├── Makefile │ └── echo.c ├── expr │ ├── .gitignore │ ├── Makefile │ └── expr.c ├── kill │ ├── .gitignore │ ├── Makefile │ └── kill.c ├── ls │ ├── .gitignore │ ├── Makefile │ └── ls.c ├── mkdir │ ├── .gitignore │ ├── Makefile │ └── mkdir.c ├── ps │ ├── .gitignore │ ├── Makefile │ └── ps.c ├── pwd │ ├── .gitignore │ ├── Makefile │ └── pwd.c ├── rm │ ├── .gitignore │ ├── Makefile │ └── rm.c ├── rmdir │ ├── .gitignore │ ├── Makefile │ └── rmdir.c ├── sh │ ├── .gitignore │ ├── Makefile │ ├── parser.c │ ├── parser.h │ ├── sh.c │ ├── test.sh │ ├── tokenizer.c │ └── tokenizer.h ├── sha1 │ ├── .gitignore │ ├── Makefile │ ├── sha1.c │ ├── sha1.h │ └── sha1_impl.c └── test │ ├── .gitignore │ ├── Makefile │ └── test.c ├── etc ├── Makefile ├── group ├── motd ├── passwd ├── shadow └── shrc ├── ports ├── Makefile ├── README.md ├── config.mk ├── kilo │ └── Makefile └── lua │ └── Makefile ├── sbin ├── Makefile ├── doit │ ├── .gitignore │ ├── Makefile │ └── doit.c ├── mount │ ├── .gitignore │ ├── Makefile │ └── mount.c ├── newfs │ ├── Makefile │ └── newfs.c └── newtty │ ├── .gitignore │ ├── Makefile │ └── newtty.c ├── sys ├── Makefile ├── config.mk ├── dev │ ├── kmsg.c │ ├── pseudo.c │ └── pty.c ├── ds │ ├── dict.c │ ├── dict.h │ ├── fifo.c │ ├── fifo.h │ ├── list.c │ ├── list.h │ ├── membuf.c │ └── membuf.h ├── fs │ ├── devfs.c │ ├── ext2.c │ ├── tarfs.c │ └── tmpfs.c ├── i686 │ ├── Makefile │ ├── config.mk │ ├── dev │ │ ├── dev_init.c │ │ ├── kbd.c │ │ ├── lfb.c │ │ ├── lfb_font.h │ │ ├── mouse.c │ │ ├── rtc.c │ │ ├── serial_tty.c │ │ ├── vga_textscreen.c │ │ ├── vga_textscreen_font.h │ │ ├── virtio.c │ │ ├── virtio.h │ │ └── virtio_blk.c │ ├── include │ │ └── machine │ │ │ ├── device.h │ │ │ ├── elf32.h │ │ │ ├── interrupt.h │ │ │ ├── multiboot.h │ │ │ ├── pci.h │ │ │ ├── portio.h │ │ │ ├── reg.h │ │ │ ├── vm.h │ │ │ └── vm_private.h │ ├── kern │ │ ├── boot.asm │ │ ├── clone.c │ │ ├── context_switch.asm │ │ ├── crit.c │ │ ├── exec.c │ │ ├── fork.c │ │ ├── gdt.asm │ │ ├── halt.c │ │ ├── interrupt.c │ │ ├── interrupt_handler.asm │ │ ├── pci.c │ │ ├── preinit.c │ │ ├── sched.c │ │ ├── signal.c │ │ ├── stacktrace.c │ │ ├── syscall_dispatch.c │ │ ├── traps.c │ │ ├── usermode.asm │ │ └── vm.c │ └── linker.ld ├── kern │ ├── cdev.c │ ├── clock.c │ ├── device_file.c │ ├── extract_tar.c │ ├── fifo.c │ ├── init.c │ ├── interrupt.c │ ├── ksym.c │ ├── malloc.c │ ├── mem_syscalls.c │ ├── misc_syscalls.c │ ├── pipe.c │ ├── pool.c │ ├── printf.c │ ├── proc.c │ ├── proc_desc.c │ ├── proc_syscalls.c │ ├── proc_sysctl.c │ ├── pty_syscalls.c │ ├── shm.c │ ├── signal.c │ ├── socket.c │ ├── socket_syscalls.c │ ├── sysctl.c │ ├── vfs.c │ ├── vfs_syscalls.c │ ├── vm.c │ ├── vnode.c │ ├── wait_queue.c │ └── world.c ├── libk │ ├── mutex.c │ └── string.c ├── net │ └── un.c └── sys │ ├── cdev.h │ ├── device.h │ ├── devno.h │ ├── dirent.h │ ├── errno.h │ ├── fcntl.h │ ├── file.h │ ├── interrupt.h │ ├── ioctl.h │ ├── limits.h │ ├── malloc.h │ ├── mount.h │ ├── mutex.h │ ├── pipe.h │ ├── pool.h │ ├── proc.h │ ├── procdesc.h │ ├── sched.h │ ├── shm.h │ ├── signal.h │ ├── socket.h │ ├── stat.h │ ├── string.h │ ├── syscall.h │ ├── sysctl.h │ ├── systm.h │ ├── termios.h │ ├── time.h │ ├── timer.h │ ├── types.h │ ├── un.h │ ├── unistd.h │ ├── utsname.h │ ├── vm.h │ ├── vnode.h │ ├── wait.h │ └── world.h ├── usr.bin ├── Makefile ├── chroot │ ├── .gitignore │ ├── Makefile │ └── chroot.c ├── env │ ├── .gitignore │ ├── Makefile │ └── env.c ├── fbctl │ ├── .gitignore │ ├── Makefile │ └── fbctl.c ├── grep │ ├── .gitignore │ ├── Makefile │ └── grep.c ├── id │ ├── .gitignore │ ├── Makefile │ └── id.c ├── kstat │ ├── .gitignore │ ├── Makefile │ └── kstat.c ├── login │ ├── .gitignore │ ├── Makefile │ └── login.c ├── mkfifo │ ├── .gitignore │ ├── Makefile │ └── mkfifo.c ├── mknod │ ├── .gitignore │ ├── Makefile │ └── mknod.c ├── pfiles │ ├── Makefile │ └── pfiles.c ├── pmaps │ ├── Makefile │ └── pmaps.c ├── sleep │ ├── .gitignore │ ├── Makefile │ └── sleep.c ├── uname │ ├── .gitignore │ ├── Makefile │ └── uname.c ├── unlink │ ├── .gitignore │ ├── Makefile │ └── unlink.c ├── w │ ├── .gitignore │ ├── Makefile │ └── w.c └── which │ ├── .gitignore │ ├── Makefile │ └── which.c ├── usr.games ├── Makefile ├── cowsay │ ├── .gitignore │ ├── Makefile │ └── cowsay.c └── fortune │ ├── .gitignore │ ├── Makefile │ ├── fortune.c │ └── fortunes.txt ├── usr.lib ├── Makefile ├── libauth │ ├── Makefile │ ├── auth.c │ ├── authlib.h │ ├── sha1.c │ └── sha1.h ├── libcollections │ ├── Makefile │ ├── dict.c │ ├── dict.h │ ├── list.c │ └── list.h ├── libini │ ├── Makefile │ ├── ini.c │ └── libini.h ├── libinput │ ├── Makefile │ ├── inmux.c │ ├── inmux.h │ ├── kbd.c │ ├── kbd.h │ ├── mouse.c │ └── mouse.h ├── libmemgfx │ ├── Makefile │ ├── canvas.c │ ├── canvas.h │ ├── display.c │ ├── display.h │ ├── font.h │ ├── sfn.h │ ├── ssfn2.c │ ├── ssfn_impl.h │ ├── targa.c │ └── utils.h ├── libthread │ ├── Makefile │ ├── cond.c │ ├── spinlock.c │ ├── syscalls.c │ ├── thread.c │ └── thread.h ├── libvt │ ├── Makefile │ ├── libvt.c │ └── libvt.h ├── libxtc │ ├── Makefile │ ├── libxtc.h │ ├── xtc_client.c │ └── xtcprotocol.h └── newlib │ ├── .gitignore │ ├── Makefile │ ├── crt │ ├── crt0.asm │ ├── crti.asm │ └── crtn.asm │ ├── include │ ├── machine │ │ └── _types.h │ └── sys │ │ ├── dirent.h │ │ ├── ioctl.h │ │ ├── kernlink.h │ │ ├── mman.h │ │ ├── shadow.h │ │ ├── signal.h │ │ ├── socket.h │ │ ├── syscalls.h │ │ ├── sysctl.h │ │ ├── sysmacros.h │ │ ├── termios.h │ │ ├── un.h │ │ ├── utmp.h │ │ └── utsname.h │ ├── libc │ ├── Makefile.am │ ├── configure.in │ ├── crt0.asm │ ├── dirent.c │ ├── getline.c │ ├── group.c │ ├── libgen.c │ ├── passwd.c │ ├── premain.c │ ├── shadow.c │ ├── signal.c │ ├── syscalls.c │ └── termios.c │ └── newlib.patch ├── usr.libexec ├── Makefile └── systerm │ ├── .gitignore │ ├── Makefile │ ├── keyboard.c │ ├── keymap.h │ ├── systerm.c │ ├── systerm.multiuser.service │ └── systerm.singleuser.service └── usr.share ├── Makefile ├── fonts └── Vera.sfn └── terminal ├── 3024.dark ├── classic ├── embers.dark ├── gotham ├── ocean.dark ├── ocean.light ├── solarized.dark ├── solarized.light └── x-erosion /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/.gitmodules -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/README.md -------------------------------------------------------------------------------- /bin/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/bin/Makefile -------------------------------------------------------------------------------- /bin/cat/.gitignore: -------------------------------------------------------------------------------- 1 | cat 2 | -------------------------------------------------------------------------------- /bin/cat/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/bin/cat/Makefile -------------------------------------------------------------------------------- /bin/cat/cat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/bin/cat/cat.c -------------------------------------------------------------------------------- /bin/chmod/.gitignore: -------------------------------------------------------------------------------- 1 | chmod 2 | -------------------------------------------------------------------------------- /bin/chmod/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/bin/chmod/Makefile -------------------------------------------------------------------------------- /bin/chmod/chmod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/bin/chmod/chmod.c -------------------------------------------------------------------------------- /bin/chown/.gitignore: -------------------------------------------------------------------------------- 1 | chown 2 | -------------------------------------------------------------------------------- /bin/chown/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/bin/chown/Makefile -------------------------------------------------------------------------------- /bin/chown/chown.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/bin/chown/chown.c -------------------------------------------------------------------------------- /bin/cp/.gitignore: -------------------------------------------------------------------------------- 1 | cp 2 | -------------------------------------------------------------------------------- /bin/cp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/bin/cp/Makefile -------------------------------------------------------------------------------- /bin/cp/cp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/bin/cp/cp.c -------------------------------------------------------------------------------- /bin/date/.gitignore: -------------------------------------------------------------------------------- 1 | date 2 | -------------------------------------------------------------------------------- /bin/date/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/bin/date/Makefile -------------------------------------------------------------------------------- /bin/date/date.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/bin/date/date.c -------------------------------------------------------------------------------- /bin/dmesg/.gitignore: -------------------------------------------------------------------------------- 1 | dmesg 2 | -------------------------------------------------------------------------------- /bin/dmesg/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/bin/dmesg/Makefile -------------------------------------------------------------------------------- /bin/dmesg/dmesg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/bin/dmesg/dmesg.c -------------------------------------------------------------------------------- /bin/echo/.gitignore: -------------------------------------------------------------------------------- 1 | echo 2 | -------------------------------------------------------------------------------- /bin/echo/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/bin/echo/Makefile -------------------------------------------------------------------------------- /bin/echo/echo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/bin/echo/echo.c -------------------------------------------------------------------------------- /bin/expr/.gitignore: -------------------------------------------------------------------------------- 1 | expr 2 | -------------------------------------------------------------------------------- /bin/expr/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/bin/expr/Makefile -------------------------------------------------------------------------------- /bin/expr/expr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/bin/expr/expr.c -------------------------------------------------------------------------------- /bin/kill/.gitignore: -------------------------------------------------------------------------------- 1 | kill 2 | -------------------------------------------------------------------------------- /bin/kill/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/bin/kill/Makefile -------------------------------------------------------------------------------- /bin/kill/kill.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/bin/kill/kill.c -------------------------------------------------------------------------------- /bin/ls/.gitignore: -------------------------------------------------------------------------------- 1 | ls 2 | -------------------------------------------------------------------------------- /bin/ls/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/bin/ls/Makefile -------------------------------------------------------------------------------- /bin/ls/ls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/bin/ls/ls.c -------------------------------------------------------------------------------- /bin/mkdir/.gitignore: -------------------------------------------------------------------------------- 1 | mkdir 2 | -------------------------------------------------------------------------------- /bin/mkdir/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/bin/mkdir/Makefile -------------------------------------------------------------------------------- /bin/mkdir/mkdir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/bin/mkdir/mkdir.c -------------------------------------------------------------------------------- /bin/ps/.gitignore: -------------------------------------------------------------------------------- 1 | ps 2 | -------------------------------------------------------------------------------- /bin/ps/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/bin/ps/Makefile -------------------------------------------------------------------------------- /bin/ps/ps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/bin/ps/ps.c -------------------------------------------------------------------------------- /bin/pwd/.gitignore: -------------------------------------------------------------------------------- 1 | pwd 2 | -------------------------------------------------------------------------------- /bin/pwd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/bin/pwd/Makefile -------------------------------------------------------------------------------- /bin/pwd/pwd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/bin/pwd/pwd.c -------------------------------------------------------------------------------- /bin/rm/.gitignore: -------------------------------------------------------------------------------- 1 | rm 2 | -------------------------------------------------------------------------------- /bin/rm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/bin/rm/Makefile -------------------------------------------------------------------------------- /bin/rm/rm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/bin/rm/rm.c -------------------------------------------------------------------------------- /bin/rmdir/.gitignore: -------------------------------------------------------------------------------- 1 | rmdir 2 | -------------------------------------------------------------------------------- /bin/rmdir/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/bin/rmdir/Makefile -------------------------------------------------------------------------------- /bin/rmdir/rmdir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/bin/rmdir/rmdir.c -------------------------------------------------------------------------------- /bin/sh/.gitignore: -------------------------------------------------------------------------------- 1 | sh 2 | -------------------------------------------------------------------------------- /bin/sh/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/bin/sh/Makefile -------------------------------------------------------------------------------- /bin/sh/parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/bin/sh/parser.c -------------------------------------------------------------------------------- /bin/sh/parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/bin/sh/parser.h -------------------------------------------------------------------------------- /bin/sh/sh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/bin/sh/sh.c -------------------------------------------------------------------------------- /bin/sh/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/bin/sh/test.sh -------------------------------------------------------------------------------- /bin/sh/tokenizer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/bin/sh/tokenizer.c -------------------------------------------------------------------------------- /bin/sh/tokenizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/bin/sh/tokenizer.h -------------------------------------------------------------------------------- /bin/sha1/.gitignore: -------------------------------------------------------------------------------- 1 | sha1 2 | -------------------------------------------------------------------------------- /bin/sha1/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/bin/sha1/Makefile -------------------------------------------------------------------------------- /bin/sha1/sha1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/bin/sha1/sha1.c -------------------------------------------------------------------------------- /bin/sha1/sha1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/bin/sha1/sha1.h -------------------------------------------------------------------------------- /bin/sha1/sha1_impl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/bin/sha1/sha1_impl.c -------------------------------------------------------------------------------- /bin/test/.gitignore: -------------------------------------------------------------------------------- 1 | test 2 | -------------------------------------------------------------------------------- /bin/test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/bin/test/Makefile -------------------------------------------------------------------------------- /bin/test/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/bin/test/test.c -------------------------------------------------------------------------------- /etc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/etc/Makefile -------------------------------------------------------------------------------- /etc/group: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/etc/group -------------------------------------------------------------------------------- /etc/motd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/etc/motd -------------------------------------------------------------------------------- /etc/passwd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/etc/passwd -------------------------------------------------------------------------------- /etc/shadow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/etc/shadow -------------------------------------------------------------------------------- /etc/shrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/etc/shrc -------------------------------------------------------------------------------- /ports/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/ports/Makefile -------------------------------------------------------------------------------- /ports/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/ports/README.md -------------------------------------------------------------------------------- /ports/config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/ports/config.mk -------------------------------------------------------------------------------- /ports/kilo/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/ports/kilo/Makefile -------------------------------------------------------------------------------- /ports/lua/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/ports/lua/Makefile -------------------------------------------------------------------------------- /sbin/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/sbin/Makefile -------------------------------------------------------------------------------- /sbin/doit/.gitignore: -------------------------------------------------------------------------------- 1 | doit 2 | -------------------------------------------------------------------------------- /sbin/doit/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/sbin/doit/Makefile -------------------------------------------------------------------------------- /sbin/doit/doit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/sbin/doit/doit.c -------------------------------------------------------------------------------- /sbin/mount/.gitignore: -------------------------------------------------------------------------------- 1 | mount 2 | -------------------------------------------------------------------------------- /sbin/mount/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/sbin/mount/Makefile -------------------------------------------------------------------------------- /sbin/mount/mount.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/sbin/mount/mount.c -------------------------------------------------------------------------------- /sbin/newfs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/sbin/newfs/Makefile -------------------------------------------------------------------------------- /sbin/newfs/newfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/sbin/newfs/newfs.c -------------------------------------------------------------------------------- /sbin/newtty/.gitignore: -------------------------------------------------------------------------------- 1 | newtty 2 | -------------------------------------------------------------------------------- /sbin/newtty/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/sbin/newtty/Makefile -------------------------------------------------------------------------------- /sbin/newtty/newtty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/sbin/newtty/newtty.c -------------------------------------------------------------------------------- /sys/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/sys/Makefile -------------------------------------------------------------------------------- /sys/config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/sys/config.mk -------------------------------------------------------------------------------- /sys/dev/kmsg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/sys/dev/kmsg.c -------------------------------------------------------------------------------- /sys/dev/pseudo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/sys/dev/pseudo.c -------------------------------------------------------------------------------- /sys/dev/pty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/sys/dev/pty.c -------------------------------------------------------------------------------- /sys/ds/dict.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/sys/ds/dict.c -------------------------------------------------------------------------------- /sys/ds/dict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/sys/ds/dict.h -------------------------------------------------------------------------------- /sys/ds/fifo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/sys/ds/fifo.c -------------------------------------------------------------------------------- /sys/ds/fifo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/sys/ds/fifo.h -------------------------------------------------------------------------------- /sys/ds/list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/sys/ds/list.c -------------------------------------------------------------------------------- /sys/ds/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/sys/ds/list.h -------------------------------------------------------------------------------- /sys/ds/membuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/sys/ds/membuf.c -------------------------------------------------------------------------------- /sys/ds/membuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/sys/ds/membuf.h -------------------------------------------------------------------------------- /sys/fs/devfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/sys/fs/devfs.c -------------------------------------------------------------------------------- /sys/fs/ext2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/sys/fs/ext2.c -------------------------------------------------------------------------------- /sys/fs/tarfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/sys/fs/tarfs.c -------------------------------------------------------------------------------- /sys/fs/tmpfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/sys/fs/tmpfs.c -------------------------------------------------------------------------------- /sys/i686/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/sys/i686/Makefile -------------------------------------------------------------------------------- /sys/i686/config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/sys/i686/config.mk -------------------------------------------------------------------------------- /sys/i686/dev/dev_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/sys/i686/dev/dev_init.c -------------------------------------------------------------------------------- /sys/i686/dev/kbd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/sys/i686/dev/kbd.c -------------------------------------------------------------------------------- /sys/i686/dev/lfb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/sys/i686/dev/lfb.c -------------------------------------------------------------------------------- /sys/i686/dev/lfb_font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/sys/i686/dev/lfb_font.h -------------------------------------------------------------------------------- /sys/i686/dev/mouse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/sys/i686/dev/mouse.c -------------------------------------------------------------------------------- /sys/i686/dev/rtc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/sys/i686/dev/rtc.c -------------------------------------------------------------------------------- /sys/i686/dev/serial_tty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/sys/i686/dev/serial_tty.c -------------------------------------------------------------------------------- /sys/i686/dev/vga_textscreen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/sys/i686/dev/vga_textscreen.c -------------------------------------------------------------------------------- /sys/i686/dev/vga_textscreen_font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/sys/i686/dev/vga_textscreen_font.h -------------------------------------------------------------------------------- /sys/i686/dev/virtio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/sys/i686/dev/virtio.c -------------------------------------------------------------------------------- /sys/i686/dev/virtio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/sys/i686/dev/virtio.h -------------------------------------------------------------------------------- /sys/i686/dev/virtio_blk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/sys/i686/dev/virtio_blk.c -------------------------------------------------------------------------------- /sys/i686/include/machine/device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/sys/i686/include/machine/device.h -------------------------------------------------------------------------------- /sys/i686/include/machine/elf32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/sys/i686/include/machine/elf32.h -------------------------------------------------------------------------------- /sys/i686/include/machine/interrupt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/sys/i686/include/machine/interrupt.h -------------------------------------------------------------------------------- /sys/i686/include/machine/multiboot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/sys/i686/include/machine/multiboot.h -------------------------------------------------------------------------------- /sys/i686/include/machine/pci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/sys/i686/include/machine/pci.h -------------------------------------------------------------------------------- /sys/i686/include/machine/portio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/sys/i686/include/machine/portio.h -------------------------------------------------------------------------------- /sys/i686/include/machine/reg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/sys/i686/include/machine/reg.h -------------------------------------------------------------------------------- /sys/i686/include/machine/vm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/sys/i686/include/machine/vm.h -------------------------------------------------------------------------------- /sys/i686/include/machine/vm_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/sys/i686/include/machine/vm_private.h -------------------------------------------------------------------------------- /sys/i686/kern/boot.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/sys/i686/kern/boot.asm -------------------------------------------------------------------------------- /sys/i686/kern/clone.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/sys/i686/kern/clone.c -------------------------------------------------------------------------------- /sys/i686/kern/context_switch.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/sys/i686/kern/context_switch.asm -------------------------------------------------------------------------------- /sys/i686/kern/crit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/sys/i686/kern/crit.c -------------------------------------------------------------------------------- /sys/i686/kern/exec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/sys/i686/kern/exec.c -------------------------------------------------------------------------------- /sys/i686/kern/fork.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/sys/i686/kern/fork.c -------------------------------------------------------------------------------- /sys/i686/kern/gdt.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/sys/i686/kern/gdt.asm -------------------------------------------------------------------------------- /sys/i686/kern/halt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/sys/i686/kern/halt.c -------------------------------------------------------------------------------- /sys/i686/kern/interrupt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/sys/i686/kern/interrupt.c -------------------------------------------------------------------------------- /sys/i686/kern/interrupt_handler.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/sys/i686/kern/interrupt_handler.asm -------------------------------------------------------------------------------- /sys/i686/kern/pci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/sys/i686/kern/pci.c -------------------------------------------------------------------------------- /sys/i686/kern/preinit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/sys/i686/kern/preinit.c -------------------------------------------------------------------------------- /sys/i686/kern/sched.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/sys/i686/kern/sched.c -------------------------------------------------------------------------------- /sys/i686/kern/signal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/sys/i686/kern/signal.c -------------------------------------------------------------------------------- /sys/i686/kern/stacktrace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/sys/i686/kern/stacktrace.c -------------------------------------------------------------------------------- /sys/i686/kern/syscall_dispatch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/sys/i686/kern/syscall_dispatch.c -------------------------------------------------------------------------------- /sys/i686/kern/traps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/sys/i686/kern/traps.c -------------------------------------------------------------------------------- /sys/i686/kern/usermode.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/sys/i686/kern/usermode.asm -------------------------------------------------------------------------------- /sys/i686/kern/vm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/sys/i686/kern/vm.c -------------------------------------------------------------------------------- /sys/i686/linker.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/sys/i686/linker.ld -------------------------------------------------------------------------------- /sys/kern/cdev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/sys/kern/cdev.c -------------------------------------------------------------------------------- /sys/kern/clock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/sys/kern/clock.c -------------------------------------------------------------------------------- /sys/kern/device_file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/sys/kern/device_file.c -------------------------------------------------------------------------------- /sys/kern/extract_tar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/sys/kern/extract_tar.c -------------------------------------------------------------------------------- /sys/kern/fifo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/sys/kern/fifo.c -------------------------------------------------------------------------------- /sys/kern/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/sys/kern/init.c -------------------------------------------------------------------------------- /sys/kern/interrupt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/sys/kern/interrupt.c -------------------------------------------------------------------------------- /sys/kern/ksym.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/sys/kern/ksym.c -------------------------------------------------------------------------------- /sys/kern/malloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/sys/kern/malloc.c -------------------------------------------------------------------------------- /sys/kern/mem_syscalls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/sys/kern/mem_syscalls.c -------------------------------------------------------------------------------- /sys/kern/misc_syscalls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/sys/kern/misc_syscalls.c -------------------------------------------------------------------------------- /sys/kern/pipe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/sys/kern/pipe.c -------------------------------------------------------------------------------- /sys/kern/pool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/sys/kern/pool.c -------------------------------------------------------------------------------- /sys/kern/printf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/sys/kern/printf.c -------------------------------------------------------------------------------- /sys/kern/proc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/sys/kern/proc.c -------------------------------------------------------------------------------- /sys/kern/proc_desc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/sys/kern/proc_desc.c -------------------------------------------------------------------------------- /sys/kern/proc_syscalls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/sys/kern/proc_syscalls.c -------------------------------------------------------------------------------- /sys/kern/proc_sysctl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/sys/kern/proc_sysctl.c -------------------------------------------------------------------------------- /sys/kern/pty_syscalls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/sys/kern/pty_syscalls.c -------------------------------------------------------------------------------- /sys/kern/shm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/sys/kern/shm.c -------------------------------------------------------------------------------- /sys/kern/signal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/sys/kern/signal.c -------------------------------------------------------------------------------- /sys/kern/socket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/sys/kern/socket.c -------------------------------------------------------------------------------- /sys/kern/socket_syscalls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/sys/kern/socket_syscalls.c -------------------------------------------------------------------------------- /sys/kern/sysctl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/sys/kern/sysctl.c -------------------------------------------------------------------------------- /sys/kern/vfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/sys/kern/vfs.c -------------------------------------------------------------------------------- /sys/kern/vfs_syscalls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/sys/kern/vfs_syscalls.c -------------------------------------------------------------------------------- /sys/kern/vm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/sys/kern/vm.c -------------------------------------------------------------------------------- /sys/kern/vnode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/sys/kern/vnode.c -------------------------------------------------------------------------------- /sys/kern/wait_queue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/sys/kern/wait_queue.c -------------------------------------------------------------------------------- /sys/kern/world.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/sys/kern/world.c -------------------------------------------------------------------------------- /sys/libk/mutex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/sys/libk/mutex.c -------------------------------------------------------------------------------- /sys/libk/string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/sys/libk/string.c -------------------------------------------------------------------------------- /sys/net/un.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/sys/net/un.c -------------------------------------------------------------------------------- /sys/sys/cdev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/sys/sys/cdev.h -------------------------------------------------------------------------------- /sys/sys/device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/sys/sys/device.h -------------------------------------------------------------------------------- /sys/sys/devno.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/sys/sys/devno.h -------------------------------------------------------------------------------- /sys/sys/dirent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/sys/sys/dirent.h -------------------------------------------------------------------------------- /sys/sys/errno.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/sys/sys/errno.h -------------------------------------------------------------------------------- /sys/sys/fcntl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/sys/sys/fcntl.h -------------------------------------------------------------------------------- /sys/sys/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/sys/sys/file.h -------------------------------------------------------------------------------- /sys/sys/interrupt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/sys/sys/interrupt.h -------------------------------------------------------------------------------- /sys/sys/ioctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/sys/sys/ioctl.h -------------------------------------------------------------------------------- /sys/sys/limits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/sys/sys/limits.h -------------------------------------------------------------------------------- /sys/sys/malloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/sys/sys/malloc.h -------------------------------------------------------------------------------- /sys/sys/mount.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/sys/sys/mount.h -------------------------------------------------------------------------------- /sys/sys/mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/sys/sys/mutex.h -------------------------------------------------------------------------------- /sys/sys/pipe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/sys/sys/pipe.h -------------------------------------------------------------------------------- /sys/sys/pool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/sys/sys/pool.h -------------------------------------------------------------------------------- /sys/sys/proc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/sys/sys/proc.h -------------------------------------------------------------------------------- /sys/sys/procdesc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/sys/sys/procdesc.h -------------------------------------------------------------------------------- /sys/sys/sched.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/sys/sys/sched.h -------------------------------------------------------------------------------- /sys/sys/shm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/sys/sys/shm.h -------------------------------------------------------------------------------- /sys/sys/signal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/sys/sys/signal.h -------------------------------------------------------------------------------- /sys/sys/socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/sys/sys/socket.h -------------------------------------------------------------------------------- /sys/sys/stat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/sys/sys/stat.h -------------------------------------------------------------------------------- /sys/sys/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/sys/sys/string.h -------------------------------------------------------------------------------- /sys/sys/syscall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/sys/sys/syscall.h -------------------------------------------------------------------------------- /sys/sys/sysctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/sys/sys/sysctl.h -------------------------------------------------------------------------------- /sys/sys/systm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/sys/sys/systm.h -------------------------------------------------------------------------------- /sys/sys/termios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/sys/sys/termios.h -------------------------------------------------------------------------------- /sys/sys/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/sys/sys/time.h -------------------------------------------------------------------------------- /sys/sys/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/sys/sys/timer.h -------------------------------------------------------------------------------- /sys/sys/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/sys/sys/types.h -------------------------------------------------------------------------------- /sys/sys/un.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/sys/sys/un.h -------------------------------------------------------------------------------- /sys/sys/unistd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/sys/sys/unistd.h -------------------------------------------------------------------------------- /sys/sys/utsname.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/sys/sys/utsname.h -------------------------------------------------------------------------------- /sys/sys/vm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/sys/sys/vm.h -------------------------------------------------------------------------------- /sys/sys/vnode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/sys/sys/vnode.h -------------------------------------------------------------------------------- /sys/sys/wait.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/sys/sys/wait.h -------------------------------------------------------------------------------- /sys/sys/world.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/sys/sys/world.h -------------------------------------------------------------------------------- /usr.bin/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/usr.bin/Makefile -------------------------------------------------------------------------------- /usr.bin/chroot/.gitignore: -------------------------------------------------------------------------------- 1 | chroot 2 | -------------------------------------------------------------------------------- /usr.bin/chroot/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/usr.bin/chroot/Makefile -------------------------------------------------------------------------------- /usr.bin/chroot/chroot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/usr.bin/chroot/chroot.c -------------------------------------------------------------------------------- /usr.bin/env/.gitignore: -------------------------------------------------------------------------------- 1 | env 2 | -------------------------------------------------------------------------------- /usr.bin/env/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/usr.bin/env/Makefile -------------------------------------------------------------------------------- /usr.bin/env/env.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/usr.bin/env/env.c -------------------------------------------------------------------------------- /usr.bin/fbctl/.gitignore: -------------------------------------------------------------------------------- 1 | fbctl 2 | -------------------------------------------------------------------------------- /usr.bin/fbctl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/usr.bin/fbctl/Makefile -------------------------------------------------------------------------------- /usr.bin/fbctl/fbctl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/usr.bin/fbctl/fbctl.c -------------------------------------------------------------------------------- /usr.bin/grep/.gitignore: -------------------------------------------------------------------------------- 1 | grep 2 | -------------------------------------------------------------------------------- /usr.bin/grep/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/usr.bin/grep/Makefile -------------------------------------------------------------------------------- /usr.bin/grep/grep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/usr.bin/grep/grep.c -------------------------------------------------------------------------------- /usr.bin/id/.gitignore: -------------------------------------------------------------------------------- 1 | id 2 | -------------------------------------------------------------------------------- /usr.bin/id/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/usr.bin/id/Makefile -------------------------------------------------------------------------------- /usr.bin/id/id.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/usr.bin/id/id.c -------------------------------------------------------------------------------- /usr.bin/kstat/.gitignore: -------------------------------------------------------------------------------- 1 | kstat 2 | -------------------------------------------------------------------------------- /usr.bin/kstat/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/usr.bin/kstat/Makefile -------------------------------------------------------------------------------- /usr.bin/kstat/kstat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/usr.bin/kstat/kstat.c -------------------------------------------------------------------------------- /usr.bin/login/.gitignore: -------------------------------------------------------------------------------- 1 | login 2 | -------------------------------------------------------------------------------- /usr.bin/login/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/usr.bin/login/Makefile -------------------------------------------------------------------------------- /usr.bin/login/login.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/usr.bin/login/login.c -------------------------------------------------------------------------------- /usr.bin/mkfifo/.gitignore: -------------------------------------------------------------------------------- 1 | mkfifo 2 | -------------------------------------------------------------------------------- /usr.bin/mkfifo/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/usr.bin/mkfifo/Makefile -------------------------------------------------------------------------------- /usr.bin/mkfifo/mkfifo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/usr.bin/mkfifo/mkfifo.c -------------------------------------------------------------------------------- /usr.bin/mknod/.gitignore: -------------------------------------------------------------------------------- 1 | mknod 2 | -------------------------------------------------------------------------------- /usr.bin/mknod/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/usr.bin/mknod/Makefile -------------------------------------------------------------------------------- /usr.bin/mknod/mknod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/usr.bin/mknod/mknod.c -------------------------------------------------------------------------------- /usr.bin/pfiles/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/usr.bin/pfiles/Makefile -------------------------------------------------------------------------------- /usr.bin/pfiles/pfiles.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/usr.bin/pfiles/pfiles.c -------------------------------------------------------------------------------- /usr.bin/pmaps/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/usr.bin/pmaps/Makefile -------------------------------------------------------------------------------- /usr.bin/pmaps/pmaps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/usr.bin/pmaps/pmaps.c -------------------------------------------------------------------------------- /usr.bin/sleep/.gitignore: -------------------------------------------------------------------------------- 1 | sleep 2 | -------------------------------------------------------------------------------- /usr.bin/sleep/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/usr.bin/sleep/Makefile -------------------------------------------------------------------------------- /usr.bin/sleep/sleep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/usr.bin/sleep/sleep.c -------------------------------------------------------------------------------- /usr.bin/uname/.gitignore: -------------------------------------------------------------------------------- 1 | uname 2 | -------------------------------------------------------------------------------- /usr.bin/uname/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/usr.bin/uname/Makefile -------------------------------------------------------------------------------- /usr.bin/uname/uname.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/usr.bin/uname/uname.c -------------------------------------------------------------------------------- /usr.bin/unlink/.gitignore: -------------------------------------------------------------------------------- 1 | unlink 2 | -------------------------------------------------------------------------------- /usr.bin/unlink/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/usr.bin/unlink/Makefile -------------------------------------------------------------------------------- /usr.bin/unlink/unlink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/usr.bin/unlink/unlink.c -------------------------------------------------------------------------------- /usr.bin/w/.gitignore: -------------------------------------------------------------------------------- 1 | w 2 | -------------------------------------------------------------------------------- /usr.bin/w/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/usr.bin/w/Makefile -------------------------------------------------------------------------------- /usr.bin/w/w.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/usr.bin/w/w.c -------------------------------------------------------------------------------- /usr.bin/which/.gitignore: -------------------------------------------------------------------------------- 1 | which 2 | -------------------------------------------------------------------------------- /usr.bin/which/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/usr.bin/which/Makefile -------------------------------------------------------------------------------- /usr.bin/which/which.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/usr.bin/which/which.c -------------------------------------------------------------------------------- /usr.games/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/usr.games/Makefile -------------------------------------------------------------------------------- /usr.games/cowsay/.gitignore: -------------------------------------------------------------------------------- 1 | cowsay 2 | -------------------------------------------------------------------------------- /usr.games/cowsay/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/usr.games/cowsay/Makefile -------------------------------------------------------------------------------- /usr.games/cowsay/cowsay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/usr.games/cowsay/cowsay.c -------------------------------------------------------------------------------- /usr.games/fortune/.gitignore: -------------------------------------------------------------------------------- 1 | fortune 2 | -------------------------------------------------------------------------------- /usr.games/fortune/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/usr.games/fortune/Makefile -------------------------------------------------------------------------------- /usr.games/fortune/fortune.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/usr.games/fortune/fortune.c -------------------------------------------------------------------------------- /usr.games/fortune/fortunes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/usr.games/fortune/fortunes.txt -------------------------------------------------------------------------------- /usr.lib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/usr.lib/Makefile -------------------------------------------------------------------------------- /usr.lib/libauth/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/usr.lib/libauth/Makefile -------------------------------------------------------------------------------- /usr.lib/libauth/auth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/usr.lib/libauth/auth.c -------------------------------------------------------------------------------- /usr.lib/libauth/authlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/usr.lib/libauth/authlib.h -------------------------------------------------------------------------------- /usr.lib/libauth/sha1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/usr.lib/libauth/sha1.c -------------------------------------------------------------------------------- /usr.lib/libauth/sha1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/usr.lib/libauth/sha1.h -------------------------------------------------------------------------------- /usr.lib/libcollections/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/usr.lib/libcollections/Makefile -------------------------------------------------------------------------------- /usr.lib/libcollections/dict.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/usr.lib/libcollections/dict.c -------------------------------------------------------------------------------- /usr.lib/libcollections/dict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/usr.lib/libcollections/dict.h -------------------------------------------------------------------------------- /usr.lib/libcollections/list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/usr.lib/libcollections/list.c -------------------------------------------------------------------------------- /usr.lib/libcollections/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/usr.lib/libcollections/list.h -------------------------------------------------------------------------------- /usr.lib/libini/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/usr.lib/libini/Makefile -------------------------------------------------------------------------------- /usr.lib/libini/ini.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/usr.lib/libini/ini.c -------------------------------------------------------------------------------- /usr.lib/libini/libini.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/usr.lib/libini/libini.h -------------------------------------------------------------------------------- /usr.lib/libinput/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/usr.lib/libinput/Makefile -------------------------------------------------------------------------------- /usr.lib/libinput/inmux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/usr.lib/libinput/inmux.c -------------------------------------------------------------------------------- /usr.lib/libinput/inmux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/usr.lib/libinput/inmux.h -------------------------------------------------------------------------------- /usr.lib/libinput/kbd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/usr.lib/libinput/kbd.c -------------------------------------------------------------------------------- /usr.lib/libinput/kbd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/usr.lib/libinput/kbd.h -------------------------------------------------------------------------------- /usr.lib/libinput/mouse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/usr.lib/libinput/mouse.c -------------------------------------------------------------------------------- /usr.lib/libinput/mouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/usr.lib/libinput/mouse.h -------------------------------------------------------------------------------- /usr.lib/libmemgfx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/usr.lib/libmemgfx/Makefile -------------------------------------------------------------------------------- /usr.lib/libmemgfx/canvas.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/usr.lib/libmemgfx/canvas.c -------------------------------------------------------------------------------- /usr.lib/libmemgfx/canvas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/usr.lib/libmemgfx/canvas.h -------------------------------------------------------------------------------- /usr.lib/libmemgfx/display.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/usr.lib/libmemgfx/display.c -------------------------------------------------------------------------------- /usr.lib/libmemgfx/display.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/usr.lib/libmemgfx/display.h -------------------------------------------------------------------------------- /usr.lib/libmemgfx/font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/usr.lib/libmemgfx/font.h -------------------------------------------------------------------------------- /usr.lib/libmemgfx/sfn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/usr.lib/libmemgfx/sfn.h -------------------------------------------------------------------------------- /usr.lib/libmemgfx/ssfn2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/usr.lib/libmemgfx/ssfn2.c -------------------------------------------------------------------------------- /usr.lib/libmemgfx/ssfn_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/usr.lib/libmemgfx/ssfn_impl.h -------------------------------------------------------------------------------- /usr.lib/libmemgfx/targa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/usr.lib/libmemgfx/targa.c -------------------------------------------------------------------------------- /usr.lib/libmemgfx/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/usr.lib/libmemgfx/utils.h -------------------------------------------------------------------------------- /usr.lib/libthread/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/usr.lib/libthread/Makefile -------------------------------------------------------------------------------- /usr.lib/libthread/cond.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/usr.lib/libthread/cond.c -------------------------------------------------------------------------------- /usr.lib/libthread/spinlock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/usr.lib/libthread/spinlock.c -------------------------------------------------------------------------------- /usr.lib/libthread/syscalls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/usr.lib/libthread/syscalls.c -------------------------------------------------------------------------------- /usr.lib/libthread/thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/usr.lib/libthread/thread.c -------------------------------------------------------------------------------- /usr.lib/libthread/thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/usr.lib/libthread/thread.h -------------------------------------------------------------------------------- /usr.lib/libvt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/usr.lib/libvt/Makefile -------------------------------------------------------------------------------- /usr.lib/libvt/libvt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/usr.lib/libvt/libvt.c -------------------------------------------------------------------------------- /usr.lib/libvt/libvt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/usr.lib/libvt/libvt.h -------------------------------------------------------------------------------- /usr.lib/libxtc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/usr.lib/libxtc/Makefile -------------------------------------------------------------------------------- /usr.lib/libxtc/libxtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/usr.lib/libxtc/libxtc.h -------------------------------------------------------------------------------- /usr.lib/libxtc/xtc_client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/usr.lib/libxtc/xtc_client.c -------------------------------------------------------------------------------- /usr.lib/libxtc/xtcprotocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/usr.lib/libxtc/xtcprotocol.h -------------------------------------------------------------------------------- /usr.lib/newlib/.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | newlib-* 3 | -------------------------------------------------------------------------------- /usr.lib/newlib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/usr.lib/newlib/Makefile -------------------------------------------------------------------------------- /usr.lib/newlib/crt/crt0.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/usr.lib/newlib/crt/crt0.asm -------------------------------------------------------------------------------- /usr.lib/newlib/crt/crti.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/usr.lib/newlib/crt/crti.asm -------------------------------------------------------------------------------- /usr.lib/newlib/crt/crtn.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/usr.lib/newlib/crt/crtn.asm -------------------------------------------------------------------------------- /usr.lib/newlib/include/machine/_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/usr.lib/newlib/include/machine/_types.h -------------------------------------------------------------------------------- /usr.lib/newlib/include/sys/dirent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/usr.lib/newlib/include/sys/dirent.h -------------------------------------------------------------------------------- /usr.lib/newlib/include/sys/ioctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/usr.lib/newlib/include/sys/ioctl.h -------------------------------------------------------------------------------- /usr.lib/newlib/include/sys/kernlink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/usr.lib/newlib/include/sys/kernlink.h -------------------------------------------------------------------------------- /usr.lib/newlib/include/sys/mman.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/usr.lib/newlib/include/sys/mman.h -------------------------------------------------------------------------------- /usr.lib/newlib/include/sys/shadow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/usr.lib/newlib/include/sys/shadow.h -------------------------------------------------------------------------------- /usr.lib/newlib/include/sys/signal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/usr.lib/newlib/include/sys/signal.h -------------------------------------------------------------------------------- /usr.lib/newlib/include/sys/socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/usr.lib/newlib/include/sys/socket.h -------------------------------------------------------------------------------- /usr.lib/newlib/include/sys/syscalls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/usr.lib/newlib/include/sys/syscalls.h -------------------------------------------------------------------------------- /usr.lib/newlib/include/sys/sysctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/usr.lib/newlib/include/sys/sysctl.h -------------------------------------------------------------------------------- /usr.lib/newlib/include/sys/sysmacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/usr.lib/newlib/include/sys/sysmacros.h -------------------------------------------------------------------------------- /usr.lib/newlib/include/sys/termios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/usr.lib/newlib/include/sys/termios.h -------------------------------------------------------------------------------- /usr.lib/newlib/include/sys/un.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/usr.lib/newlib/include/sys/un.h -------------------------------------------------------------------------------- /usr.lib/newlib/include/sys/utmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/usr.lib/newlib/include/sys/utmp.h -------------------------------------------------------------------------------- /usr.lib/newlib/include/sys/utsname.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/usr.lib/newlib/include/sys/utsname.h -------------------------------------------------------------------------------- /usr.lib/newlib/libc/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/usr.lib/newlib/libc/Makefile.am -------------------------------------------------------------------------------- /usr.lib/newlib/libc/configure.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/usr.lib/newlib/libc/configure.in -------------------------------------------------------------------------------- /usr.lib/newlib/libc/crt0.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/usr.lib/newlib/libc/crt0.asm -------------------------------------------------------------------------------- /usr.lib/newlib/libc/dirent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/usr.lib/newlib/libc/dirent.c -------------------------------------------------------------------------------- /usr.lib/newlib/libc/getline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/usr.lib/newlib/libc/getline.c -------------------------------------------------------------------------------- /usr.lib/newlib/libc/group.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/usr.lib/newlib/libc/group.c -------------------------------------------------------------------------------- /usr.lib/newlib/libc/libgen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/usr.lib/newlib/libc/libgen.c -------------------------------------------------------------------------------- /usr.lib/newlib/libc/passwd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/usr.lib/newlib/libc/passwd.c -------------------------------------------------------------------------------- /usr.lib/newlib/libc/premain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/usr.lib/newlib/libc/premain.c -------------------------------------------------------------------------------- /usr.lib/newlib/libc/shadow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/usr.lib/newlib/libc/shadow.c -------------------------------------------------------------------------------- /usr.lib/newlib/libc/signal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/usr.lib/newlib/libc/signal.c -------------------------------------------------------------------------------- /usr.lib/newlib/libc/syscalls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/usr.lib/newlib/libc/syscalls.c -------------------------------------------------------------------------------- /usr.lib/newlib/libc/termios.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/usr.lib/newlib/libc/termios.c -------------------------------------------------------------------------------- /usr.lib/newlib/newlib.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/usr.lib/newlib/newlib.patch -------------------------------------------------------------------------------- /usr.libexec/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/usr.libexec/Makefile -------------------------------------------------------------------------------- /usr.libexec/systerm/.gitignore: -------------------------------------------------------------------------------- 1 | systerm 2 | -------------------------------------------------------------------------------- /usr.libexec/systerm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/usr.libexec/systerm/Makefile -------------------------------------------------------------------------------- /usr.libexec/systerm/keyboard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/usr.libexec/systerm/keyboard.c -------------------------------------------------------------------------------- /usr.libexec/systerm/keymap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/usr.libexec/systerm/keymap.h -------------------------------------------------------------------------------- /usr.libexec/systerm/systerm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/usr.libexec/systerm/systerm.c -------------------------------------------------------------------------------- /usr.libexec/systerm/systerm.multiuser.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/usr.libexec/systerm/systerm.multiuser.service -------------------------------------------------------------------------------- /usr.libexec/systerm/systerm.singleuser.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/usr.libexec/systerm/systerm.singleuser.service -------------------------------------------------------------------------------- /usr.share/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/usr.share/Makefile -------------------------------------------------------------------------------- /usr.share/fonts/Vera.sfn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/usr.share/fonts/Vera.sfn -------------------------------------------------------------------------------- /usr.share/terminal/3024.dark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/usr.share/terminal/3024.dark -------------------------------------------------------------------------------- /usr.share/terminal/classic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/usr.share/terminal/classic -------------------------------------------------------------------------------- /usr.share/terminal/embers.dark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/usr.share/terminal/embers.dark -------------------------------------------------------------------------------- /usr.share/terminal/gotham: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/usr.share/terminal/gotham -------------------------------------------------------------------------------- /usr.share/terminal/ocean.dark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/usr.share/terminal/ocean.dark -------------------------------------------------------------------------------- /usr.share/terminal/ocean.light: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/usr.share/terminal/ocean.light -------------------------------------------------------------------------------- /usr.share/terminal/solarized.dark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/usr.share/terminal/solarized.dark -------------------------------------------------------------------------------- /usr.share/terminal/solarized.light: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/usr.share/terminal/solarized.light -------------------------------------------------------------------------------- /usr.share/terminal/x-erosion: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phath0m/osdev/HEAD/usr.share/terminal/x-erosion --------------------------------------------------------------------------------