diff options
| author | Miquel Sabaté Solà <mikisabate@gmail.com> | 2024-09-12 22:37:29 +0200 |
|---|---|---|
| committer | Miquel Sabaté Solà <mikisabate@gmail.com> | 2024-12-05 16:02:50 +0100 |
| commit | 5876d0ade10d53abe4e9c6666c5117ca73a211f6 (patch) | |
| tree | 533837fc527858e7540c5e064a3acec91f0e27b5 /.gitignore | |
| parent | 432436797bedf396ad698477a19f9d2e13147621 (diff) | |
| download | farga-5876d0ade10d53abe4e9c6666c5117ca73a211f6.tar.gz farga-5876d0ade10d53abe4e9c6666c5117ca73a211f6.zip | |
kernel/dtm: Add an example on the kernel DT API
This comes in the form of a simple kernel module which iterates over
CPUs and prints the contents of some device tree nodes.
Signed-off-by: Miquel Sabaté Solà <mikisabate@gmail.com>
Diffstat (limited to '.gitignore')
| -rw-r--r-- | .gitignore | 9 |
1 files changed, 9 insertions, 0 deletions
@@ -1,4 +1,9 @@ +# Generic stuff. *.o +*.ko +*.mod +*.mod.c +*.cmd # arch/riscv arch/riscv/usr/basics @@ -6,3 +11,7 @@ arch/riscv/machine/machine arch/riscv/kernel/hello arch/riscv/init/init arch/riscv/init/little_shell + +# kernel/dtm +kernel/dtm/modules.order +kernel/dtm/Module.symvers |
