Skip to content
This repository has been archived by the owner on Nov 26, 2024. It is now read-only.

Commit

Permalink
Update submodules
Browse files Browse the repository at this point in the history
  • Loading branch information
EnderIce2 committed Feb 28, 2024
1 parent 5260c35 commit e8a0792
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Drivers
Submodule Drivers updated 1 files
+478 −8 storage/ahci/ahci.cpp
8 changes: 8 additions & 0 deletions Fennix Kernel.code-workspace
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,7 @@
"AROS",
"ARRAYSZ",
"auxv",
"BABABA",
"BADRAM",
"BGRT",
"bimi",
Expand All @@ -94,6 +95,7 @@
"bootdev",
"Bootloader",
"brontobyte",
"CACACA",
"calloc",
"Cardbus",
"CCCCCCCPU",
Expand All @@ -103,6 +105,7 @@
"clac",
"CLOUDABI",
"CMCI",
"CMOS",
"cntvct",
"COMNULL",
"copydoc",
Expand All @@ -112,6 +115,7 @@
"CSTAR",
"CTLS",
"cutlim",
"DADADA",
"daif",
"daifclr",
"daifset",
Expand Down Expand Up @@ -161,6 +165,7 @@
"FENIXOS",
"FENNIX",
"FFAA",
"FFAAAA",
"FFSMBIOS",
"FFXSR",
"filestatus",
Expand All @@ -182,6 +187,7 @@
"hwaddress",
"ICRHI",
"ICRLO",
"IDIV",
"idtd",
"infloop",
"inportb",
Expand All @@ -195,6 +201,7 @@
"ioapicirq",
"IOCTLFS",
"IPCID",
"IRET",
"iretq",
"isdelim",
"ishld",
Expand Down Expand Up @@ -368,6 +375,7 @@
"Symbios",
"SYMENT",
"SYSENTER",
"sysret",
"sysretq",
"Tamsyn",
"targp",
Expand Down
2 changes: 1 addition & 1 deletion Kernel
Submodule Kernel updated 84 files
+1 −1 arch/amd64/bootstrap/limine/limine.c
+12 −12 arch/amd64/bootstrap/multiboot/Paging/mb_64bit_map.cpp
+1 −3 arch/amd64/cpu/apic.cpp
+2 −2 arch/amd64/cpu/gdt.cpp
+282 −242 arch/amd64/cpu/idt.cpp
+2 −2 arch/amd64/cpu/smp.cpp
+0 −2 arch/i386/cpu/apic.cpp
+2 −2 arch/i386/cpu/gdt.cpp
+2 −2 arch/i386/cpu/smp.cpp
+64 −67 core/cpu.cpp
+0 −348 core/crash/crash_details.cpp
+0 −1,443 core/crash/crash_handler.cpp
+0 −291 core/crash/kb_drv.cpp
+0 −42 core/crash/screens/console.cpp
+0 −265 core/crash/screens/details.cpp
+0 −390 core/crash/screens/main.cpp
+0 −78 core/crash/screens/stack_frame.cpp
+0 −99 core/crash/screens/tasks.cpp
+0 −175 core/crash/stack_frame.cpp
+0 −225 core/crash/user_handler.cpp
+2 −3 core/driver/api.cpp
+1 −1 core/driver/driver.cpp
+8 −0 core/dsdt.cpp
+9 −20 core/interrupts_manager.cpp
+2 −4 core/memory/memory.cpp
+4 −4 core/memory/vma.cpp
+145 −0 core/panic/diag.cpp
+336 −0 core/panic/handler.cpp
+388 −0 core/panic/keyboard.cpp
+12 −114 core/panic/keyboard.hpp
+920 −0 core/panic/ui.cpp
+225 −0 core/panic/user.cpp
+0 −6 core/random.cpp
+9 −35 core/stack_check.cpp
+0 −2 core/time/timer.cpp
+6 −6 core/uart.cpp
+183 −260 core/video/display.cpp
+75 −72 exec/elf/elf_loader.cpp
+1 −12 exec/spawn.cpp
+142 −74 include/cpu.hpp
+4 −4 include/cpu/membar.hpp
+77 −289 include/cpu/x86/cpuid_amd.hpp
+61 −161 include/cpu/x86/cpuid_intel.hpp
+1 −0 include/cpu/x86/interrupts.hpp
+10 −10 include/cpu/x86/x32/cr.hpp
+2 −2 include/cpu/x86/x32/msr.hpp
+14 −14 include/cpu/x86/x64/cr.hpp
+2 −2 include/cpu/x86/x64/msr.hpp
+217 −126 include/display.hpp
+0 −11 include/exec.hpp
+1 −1 include/filesystem.hpp
+0 −1 include/ints.hpp
+26 −0 include/memory/virtual.hpp
+2 −2 include/memory/vma.hpp
+1 −5 include/task.hpp
+2 −1 include/types.h
+1 −1 include/uart.hpp
+7 −0 include_std/algorithm
+12 −9 include_std/assert.h
+8 −0 include_std/vector
+8 −19 kernel.cpp
+1 −0 kshell/cmds.hpp
+2 −2 kshell/commands/clear.cpp
+48 −5 kshell/commands/ls.cpp
+8 −13 kshell/commands/panic.cpp
+1 −1 kshell/commands/tree.cpp
+92 −91 kshell/shell.cpp
+3 −3 profiling/cyg.cpp
+6 −6 profiling/gcov.cpp
+2 −2 profiling/gprof.cpp
+1 −1 storage/devices/tty/kcon.cpp
+5 −6 storage/devices/tty/tty.cpp
+80 −33 syscalls/linux.cpp
+2 −14 syscalls/native/fork.cpp
+1 −8 tasking/process.cpp
+16 −109 tasking/scheduler.cpp
+9 −18 tasking/task.cpp
+1 −58 tests/cpuid.cpp
+8 −7 tests/lsof.cpp
+4 −0 tests/macros.cpp
+0 −2 tests/rng.cpp
+10 −11 tests/taskmgr.cpp
+1 −1 tests/treefs.cpp
+0 −2 virtualization/detect.cpp
2 changes: 1 addition & 1 deletion Lynx
Submodule Lynx updated 2 files
+2 −2 Doxyfile
+1 −1 UEFI/src/Lynx.c
2 changes: 1 addition & 1 deletion Userspace

0 comments on commit e8a0792

Please sign in to comment.