mirror of
https://github.com/cirosantilli/linux-kernel-module-cheat.git
synced 2026-01-23 10:15:57 +01:00
gem5 requires armv7, and we learnt that the versatiledb we were using was pre-v7. We could have moved to -M vexpress-*, but in the end decided to go for -M virt due to its simpliciy, and uniformity with aarch64. platform_device: does not work anymore and was removed, since it was tied to versatilepb. We left a mention on the README and removed all in tree source. The QEMU patch is still left as it was. As a consequence, the linux tree had no other patches, and we now use vanilla linux by default, which is a great thing for reproducibility. Another consequence is the /poweroff.out works for arm -M virt, and we removed all mentions of the problem.
54 lines
1014 B
Plaintext
54 lines
1014 B
Plaintext
= kernel_module
|
|
|
|
. link:module_init.c[]
|
|
. Debugging
|
|
.. link:hello.c[]
|
|
.. link:hello2.c[]
|
|
.. link:printk.c[]
|
|
. Panic and friends
|
|
.. link:panic.c[]
|
|
.. link:oops.c[]
|
|
.. link:warn_on.c[]
|
|
.. link:warn_on.c[]
|
|
. Module utils
|
|
.. link:params.c[]
|
|
.. link:vermagic.c[]
|
|
.. link:vermagic_fail.c[]
|
|
.. link:module_info.c[]
|
|
. Pseudo filesystems
|
|
.. link:debugfs.c[]
|
|
.. link:procfs.c[]
|
|
.. link:sysfs.c[]
|
|
.. link:fops.c[]
|
|
.. link:ioctl.c[]
|
|
.. link:poll.c[]
|
|
.. link:mmap.c[]
|
|
.. link:anonymous_inode.c[]
|
|
.. link:seq_file.c[]
|
|
.. link:seq_file_inode.c[]
|
|
. Asynchronous
|
|
.. link:workqueue_cheat.c[]
|
|
.. link:sleep.c[]
|
|
.. link:kthread.c[]
|
|
.. link:kthreads.c[]
|
|
.. link:schedule.c[]
|
|
.. link:timer.c[]
|
|
.. link:work_from_work.c[]
|
|
.. link:irq.c[]
|
|
. Module dependencies
|
|
.. link:dep.c[]
|
|
.. link:dep2.c[]
|
|
.. link:character_device.c[]
|
|
.. link:character_device_create.c[]
|
|
.. link:virt_to_phys.c[]
|
|
. Utilities
|
|
.. link:kstrto.c[]
|
|
. Arch
|
|
.. x86
|
|
... link:ring0.c[]
|
|
.. ARM
|
|
... link:pmccntr.c[]
|
|
. Hardware device drivers
|
|
.. link:pci_min.c[]
|
|
.. link:pci.c[]
|