1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-28 13:07:46 +00:00

Ports: Format patches without numbering, commit hash or version number

This commit is contained in:
Tim Schumacher 2022-06-05 03:05:04 +02:00 committed by Linus Groh
parent d69a79b03b
commit d426c5a4b2
371 changed files with 806 additions and 1884 deletions

View file

@ -1,16 +1,16 @@
# Patches for fio on SerenityOS
## `0001-fio-remove-non-existent-header-sys-ipc.patch`
## `0001-Remove-non-existent-header-sys-ipc.h.patch`
Port: fio, remove non existent header sys/ipc.h
Remove non existent header sys/ipc.h
Serenity doesn't currently have this header, and
it doesn't appear to be needed on our platform so
remove it for the port.
## `0002-fio-add-serenityos-platform-support.patch`
## `0002-Add-SerenityOS-platform-support.patch`
Port: fio - Add SerenityOS platform support
Add SerenityOS platform support
`fio` abstracts individual operating system support out into to an
`os/os-<name>.h` header where you can select which platform features
@ -20,17 +20,17 @@ system.
This patch implements basic OS support for Serenity just to get fio up
and running.
## `0003-fio-add-serenityos-support-to-configure.patch`
## `0003-Add-SerenityOS-support-to-configure.patch`
Port: Add SerenityOS support to configure
Add SerenityOS support to configure
This patch implements targetos detection for serenity, and also
disables shared memory support automatically for serenity, as it's not
currently supported.
## `0004-fio-disable-rdtsc-support-for-serenityos.patch`
## `0004-Disable-rdtsc-support-for-serenity.patch`
Port: fio - Disable rdtsc support for serenity
Disable rdtsc support for serenity
This patch disables the function which uses `rdtsc` to get the current
clock time, as that instruction isn't allowed to be called from user