2020-02-11 17:48:39 +01:00
|
|
|
#=----------------------------------------------------------------------------=#
|
|
|
|
# GNU GPL OS/K #
|
|
|
|
# #
|
|
|
|
# Desc: #
|
|
|
|
# #
|
|
|
|
# #
|
|
|
|
# Copyright © 2018-2020 The OS/K Team #
|
|
|
|
# #
|
|
|
|
# This file is part of OS/K. #
|
|
|
|
# #
|
|
|
|
# OS/K is free software: you can redistribute it and/or modify #
|
|
|
|
# it under the terms of the GNU General Public License as published by #
|
|
|
|
# the Free Software Foundation, either version 3 of the License, or #
|
|
|
|
# any later version. #
|
|
|
|
# #
|
|
|
|
# OS/K is distributed in the hope that it will be useful, #
|
|
|
|
# but WITHOUT ANY WARRANTY# without even the implied warranty of #
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
|
|
|
|
# GNU General Public License for more details. #
|
|
|
|
# #
|
|
|
|
# You should have received a copy of the GNU General Public License #
|
|
|
|
# along with OS/K. If not, see <https://www.gnu.org/licenses/>. #
|
|
|
|
#=----------------------------------------------------------------------------=#
|
|
|
|
|
|
|
|
|
|
|
|
.
|
|
|
|
├── boot
|
|
|
|
│ ├── grub
|
2020-02-19 22:33:05 +01:00
|
|
|
│ │ └── grub.cfg
|
2020-02-11 17:48:39 +01:00
|
|
|
│ ├── loader
|
|
|
|
│ │ ├── cpu
|
|
|
|
│ │ │ ├── cpu32.inc
|
|
|
|
│ │ │ └── cpu.inc
|
|
|
|
│ │ ├── io
|
|
|
|
│ │ │ └── terminal.inc
|
|
|
|
│ │ ├── mem
|
|
|
|
│ │ │ ├── management.inc
|
|
|
|
│ │ │ └── structures.inc
|
|
|
|
│ │ ├── multiboot
|
|
|
|
│ │ │ ├── check.inc
|
|
|
|
│ │ │ └── header.inc
|
|
|
|
│ │ └── loader.asm
|
|
|
|
│ └── folder.desc
|
|
|
|
├── build
|
|
|
|
│ ├── create_disk.sh
|
|
|
|
│ ├── install-os-k.sh
|
|
|
|
│ └── kernel.ld
|
|
|
|
├── include
|
2020-02-19 22:19:58 +01:00
|
|
|
│ ├── drivers
|
2020-02-11 17:48:39 +01:00
|
|
|
│ │ ├── ata.h
|
2020-02-19 22:33:05 +01:00
|
|
|
│ │ └── rtl8139.h
|
2020-02-19 22:19:58 +01:00
|
|
|
│ ├── kernel
|
|
|
|
│ │ ├── ex
|
|
|
|
│ │ │ ├── lock.h
|
|
|
|
│ │ │ └── malloc.h
|
|
|
|
│ │ ├── init
|
|
|
|
│ │ │ ├── boot.h
|
|
|
|
│ │ │ └── mboot.h
|
|
|
|
│ │ ├── io
|
|
|
|
│ │ │ ├── acpi.h
|
|
|
|
│ │ │ ├── cursor.h
|
|
|
|
│ │ │ ├── keyb.h
|
|
|
|
│ │ │ ├── pci.h
|
|
|
|
│ │ │ ├── spkr.h
|
|
|
|
│ │ │ └── vga.h
|
|
|
|
│ │ ├── ke
|
|
|
|
│ │ │ ├── cpuid.h
|
|
|
|
│ │ │ ├── idt.h
|
|
|
|
│ │ │ ├── proc.h
|
|
|
|
│ │ │ ├── sched.h
|
|
|
|
│ │ │ ├── spinlock.h
|
|
|
|
│ │ │ └── time.h
|
|
|
|
│ │ ├── mm
|
|
|
|
│ │ │ ├── gdt.h
|
|
|
|
│ │ │ ├── heap.h
|
|
|
|
│ │ │ ├── malloc.h
|
|
|
|
│ │ │ ├── map.h
|
|
|
|
│ │ │ ├── paging.h
|
|
|
|
│ │ │ └── palloc.h
|
|
|
|
│ │ ├── po
|
|
|
|
│ │ │ └── shtdwn.h
|
|
|
|
│ │ └── sh
|
|
|
|
│ │ ├── argv.h
|
|
|
|
│ │ └── shell.h
|
2020-02-11 17:48:39 +01:00
|
|
|
│ ├── asm.h
|
|
|
|
│ ├── errno.h
|
|
|
|
│ ├── kernel.h
|
2020-02-19 22:19:58 +01:00
|
|
|
│ ├── libbuf.h
|
2020-02-11 17:48:39 +01:00
|
|
|
│ ├── libc.h
|
2020-02-19 22:19:58 +01:00
|
|
|
│ ├── liblist.h
|
2020-02-11 17:48:39 +01:00
|
|
|
│ └── vers.h
|
|
|
|
├── kaleid
|
2020-02-19 22:19:58 +01:00
|
|
|
│ ├── drivers
|
|
|
|
│ │ ├── ata.asm
|
2020-02-19 22:33:05 +01:00
|
|
|
│ │ ├── ata.c
|
|
|
|
│ │ └── rtl8139.c
|
2020-02-11 17:48:39 +01:00
|
|
|
│ ├── kernel
|
|
|
|
│ │ ├── init
|
|
|
|
│ │ │ ├── info.c
|
|
|
|
│ │ │ ├── init.c
|
|
|
|
│ │ │ ├── ssp.c
|
|
|
|
│ │ │ └── table.c
|
|
|
|
│ │ ├── io
|
|
|
|
│ │ │ ├── acpi.c
|
|
|
|
│ │ │ ├── cursor.c
|
|
|
|
│ │ │ ├── keyb.c
|
|
|
|
│ │ │ ├── pci.c
|
|
|
|
│ │ │ ├── scan.c
|
|
|
|
│ │ │ ├── spkr.c
|
|
|
|
│ │ │ └── vga.c
|
|
|
|
│ │ ├── ke
|
|
|
|
│ │ │ ├── cpuf.asm
|
|
|
|
│ │ │ ├── cpuf.inc
|
|
|
|
│ │ │ ├── cpuid.c
|
|
|
|
│ │ │ ├── idt.c
|
|
|
|
│ │ │ ├── isr.asm
|
|
|
|
│ │ │ ├── log.c
|
|
|
|
│ │ │ ├── panic.c
|
|
|
|
│ │ │ ├── pit.c
|
|
|
|
│ │ │ └── rtc.c
|
|
|
|
│ │ ├── mm
|
|
|
|
│ │ │ ├── gdt.asm
|
|
|
|
│ │ │ ├── gdt.c
|
|
|
|
│ │ │ ├── heap.c
|
|
|
|
│ │ │ ├── malloc.c
|
|
|
|
│ │ │ ├── map.c
|
|
|
|
│ │ │ ├── paging.asm
|
|
|
|
│ │ │ ├── paging.c
|
|
|
|
│ │ │ └── palloc.c
|
|
|
|
│ │ ├── po
|
|
|
|
│ │ │ └── shtdwn.c
|
|
|
|
│ │ ├── ps
|
|
|
|
│ │ │ └── sched.c
|
|
|
|
│ │ └── sh
|
|
|
|
│ │ ├── argv.c
|
|
|
|
│ │ ├── musage.c
|
|
|
|
│ │ ├── shcmds.c
|
|
|
|
│ │ ├── shell.c
|
|
|
|
│ │ ├── shell.h
|
|
|
|
│ │ └── testcmds.c
|
|
|
|
│ ├── libbuf
|
|
|
|
│ │ ├── bclose.c
|
|
|
|
│ │ ├── bflush.c
|
|
|
|
│ │ ├── bgetc.c
|
|
|
|
│ │ ├── bmisc.c
|
|
|
|
│ │ ├── bopen.c
|
|
|
|
│ │ ├── bprint.c
|
|
|
|
│ │ ├── bputc.c
|
|
|
|
│ │ ├── bread.c
|
|
|
|
│ │ ├── bscan.c
|
|
|
|
│ │ ├── bscroll.c
|
|
|
|
│ │ └── bwrite.c
|
|
|
|
│ └── libc
|
|
|
|
│ ├── atoi.c
|
|
|
|
│ ├── ctype.c
|
|
|
|
│ ├── errno.c
|
|
|
|
│ ├── itoa.c
|
|
|
|
│ ├── mem.c
|
|
|
|
│ ├── rand.c
|
|
|
|
│ ├── sprintf.c
|
|
|
|
│ ├── string.c
|
|
|
|
│ └── strtol.c
|
|
|
|
├── AUTHORS
|
|
|
|
├── ChangeLog
|
|
|
|
├── COPYING
|
|
|
|
├── Makefile
|
|
|
|
├── ProjectTree
|
|
|
|
└── README.md
|
|
|
|
|
2020-02-19 22:33:05 +01:00
|
|
|
30 directories, 112 files
|