Help with the question on the kernel module!

In general, you need to output random numbers not in the kernel log, but write to a pseudo file so that you can read from there (for example, by writing cat /proc/mybuffer ).

    1 answer 1

    Maybe this link will help: file system / proc: create files that can be read .

    • link is very good! But here I don’t really have what I need, or I don’t see it ( - hasded
    • one
      This is a classic guide to creating kernel modules. Look there everything from beginning to end - skegg