Update submodules

This commit is contained in:
Alex
2022-11-28 08:27:14 +02:00
parent 52c6987982
commit 80cf619738
6 changed files with 172 additions and 6 deletions

1
.gitignore vendored
View File

@ -14,6 +14,7 @@ tools/*
!tools/*.cfg !tools/*.cfg
doxygen-doc doxygen-doc
initrd.tar.gz initrd.tar.gz
.dccache
*.log *.log
*.img *.img
*.iso *.iso

Submodule Drivers updated: 3f10fd62b8...0091fe5965

View File

@ -5,6 +5,79 @@
} }
], ],
"settings": { "settings": {
"debug.allowBreakpointsEverywhere": true "debug.allowBreakpointsEverywhere": true,
"cSpell.words": [
"ABAR",
"ABSPOINTER",
"AHCI",
"BIST",
"CFIEN",
"cmdret",
"ECTRL",
"EEPROM",
"Fennix",
"GETVERSION",
"HBAPRDT",
"IFCS",
"inportb",
"inportl",
"inportw",
"KAPI",
"mminb",
"mminl",
"mminw",
"mmioin",
"mmioout",
"mmoutb",
"mmoutl",
"mmoutw",
"outportb",
"outportl",
"outportw",
"PCIBAR",
"PCNET",
"PMCF",
"PORTHB",
"PRDT",
"RCTL",
"RCTRL",
"RDMTS",
"RDTR",
"rpci",
"RSRPD",
"RTCL",
"RTLC",
"RTLIB",
"RTLIL",
"RTLIW",
"RTLOB",
"RTLOL",
"RTLOW",
"RXDCTL",
"RXDESCHEAD",
"RXDESCHI",
"RXDESCLEN",
"RXDESCLO",
"RXDESCTAIL",
"Sata",
"SATAPI",
"SECRC",
"SEMB",
"SWXOFF",
"tclo",
"TCTL",
"TCTRL",
"TFES",
"TIPG",
"TSAD",
"TSTA",
"TXDESCHEAD",
"TXDESCHI",
"TXDESCLEN",
"TXDESCLO",
"TXDESCTAIL",
"Virtio",
"Wmissing"
]
} }
} }

View File

@ -20,7 +20,99 @@
"cwalk.h": "c", "cwalk.h": "c",
"md5.h": "c", "md5.h": "c",
"stdint.h": "c", "stdint.h": "c",
"debug.h": "c" "debug.h": "c",
} "ubsan.h": "c",
"kernel.h": "c"
},
"cSpell.words": [
"AAFFAA",
"AHCI",
"apic",
"APICID",
"auxv",
"binfo",
"Bootloader",
"brontobyte",
"COMNULL",
"cpudata",
"CPUID",
"Didx",
"DLAB",
"Drivermemcpy",
"Drivermemset",
"drvdir",
"DUID",
"exobyte",
"FAFAFA",
"Fargc",
"Fargv",
"fctprintf",
"FENNIX",
"FFSMBIOS",
"FFXSR",
"filestatus",
"Framebuffer",
"fxrstor",
"geopbyte",
"hwaddress",
"inportb",
"ioapic",
"IPCID",
"itrfb",
"KAPI",
"kfree",
"kmalloc",
"lapic",
"liballoc",
"LMSLE",
"MADT",
"MWAIT",
"OEMID",
"OSFXSR",
"OSXMMEXCPT",
"OSXSAVE",
"outportb",
"PCIDE",
"PDBR",
"PEXIT",
"PFLA",
"rdmsr",
"readcr",
"Rodata",
"serialports",
"sgdt",
"sidt",
"SMAP",
"SMBIOSBIOS",
"SMEP",
"SMXE",
"SVME",
"swapgs",
"TEXIT",
"tracepagetable",
"ttbr",
"ubsan",
"ultoa",
"UMIP",
"Unswap",
"UPID",
"vfsdbg",
"Vidx",
"VMXE",
"Wmissing",
"writecr",
"wrmsr",
"xallocv",
"Xclac",
"Xmemcpy",
"Xmemset",
"XSLC",
"XSLF",
"XSLM",
"XSLR",
"Xstac",
"yottabyte",
"zettabyte"
]
} }
} }

2
Kernel

Submodule Kernel updated: 042bce48a0...0289054900