From 5876d0ade10d53abe4e9c6666c5117ca73a211f6 Mon Sep 17 00:00:00 2001 From: Miquel Sabaté Solà Date: Thu, 12 Sep 2024 22:37:29 +0200 Subject: kernel/dtm: Add an example on the kernel DT API MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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à --- .gitignore | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to '.gitignore') diff --git a/.gitignore b/.gitignore index 9c1804a..f7c3406 100644 --- a/.gitignore +++ b/.gitignore @@ -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 -- cgit v1.2.3