aboutsummaryrefslogtreecommitdiff
path: root/readme.md
diff options
context:
space:
mode:
authorlonkaars <loek@pipeframe.xyz>2024-04-18 17:34:40 +0200
committerlonkaars <loek@pipeframe.xyz>2024-04-18 17:34:40 +0200
commitbfb105b36e902ffc1aec9424a38245db693eea02 (patch)
tree33cb1b9c5d2002ce1c76dc3575760e3c6a57f125 /readme.md
parent2d8b061d0f442d8a8853025460a836e3482cc09b (diff)
dynamically get major:minor numbers + register /dev node + /sys/class node
Diffstat (limited to 'readme.md')
-rw-r--r--readme.md8
1 files changed, 8 insertions, 0 deletions
diff --git a/readme.md b/readme.md
index f8f735d..267fc38 100644
--- a/readme.md
+++ b/readme.md
@@ -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