Age | Commit message (Collapse) | Author | |
---|---|---|---|
2021-03-12 | Everywhere: Remove klog(), dbg() and purge all LogStream usage :^) | Andreas Kling | |
Good-bye LogStream. Long live AK::Format! | |||
2021-03-12 | Kernel: Convert klog() => AK::Format in DMI | Andreas Kling | |
2021-02-23 | Everywhere: Rename ASSERT => VERIFY | Andreas Kling | |
(...and ASSERT_NOT_REACHED => VERIFY_NOT_REACHED) Since all of these checks are done in release builds as well, let's rename them to VERIFY to prevent confusion, as everyone is used to assertions being compiled out in release. We can introduce a new ASSERT macro that is specifically for debug checks, but I'm doing this wholesale conversion first since we've accumulated thousands of these already, and it's not immediately obvious which ones are suitable for ASSERT. | |||
2021-02-19 | Kernel: Slap UNMAP_AFTER_INIT on a bunch more functions | Andreas Kling | |
We're now able to unmap 100 KiB of kernel text after init. :^) | |||
2021-02-01 | Kernel: Set file size for smbios_entry_point and DMI blobs in ProcFS | Liav A | |
This is needed to support dmidecode version 3.3, so it can read the 2 blobs in ProcFS. | |||
2021-02-01 | Kernel: Expose SMBIOS blobs in ProcFS | Liav A | |