diff options
Diffstat (limited to 'readme.md')
-rw-r--r-- | readme.md | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -1,5 +1,7 @@ # sources +(ordered chronologically by access time) + - [Kbuild object variable name rationale][kbuild-obj-var] - [Kbuild kernel module setup guide][kbuild-module-makefile] - [`struct file_operations`][c-struct-file-operations] documentation, also @@ -8,11 +10,17 @@ - (Sadly) [the Linux kernel source][kernel] itself, especially - drivers/char/random.c - drivers/char/mem.c +- [Linux kernel labs - character device drivers][kernel-labs-chrdev] +- [Core API][core-api] +- [Driver API][driver-api] [kbuild-obj-var]: https://docs.kernel.org/kbuild/makefiles.html#loadable-module-goals-obj-m [kbuild-module-makefile]: https://www.kernel.org/doc/html/latest/kbuild/modules.html#creating-a-kbuild-file-for-an-external-module [c-struct-file-operations]: https://www.kernel.org/doc/html/latest/filesystems/vfs.html#struct-file-operations [kernel]: https://github.com/torvalds/linux +[kernel-labs-chrdev]: https://linux-kernel-labs.github.io/refs/heads/master/labs/device_drivers.html +[core-api]: https://docs.kernel.org/core-api/kernel-api.html +[driver-api]: https://www.kernel.org/doc/html/latest/driver-api/infrastructure.html # tips |