Importing a Linux Kernel module project into VisualKernel

This tutorial shows how to create a VisualKernel project for an existing Linux kernel module. We will demonstrate it by creating a copy of the coretemp module responsible for measuring the temperature for the CPU core.

Before you begin copy the <linux source>/drivers/hwmon/coretemp.c file into a separate directory on your Linux machine, rename it to coretemp2.c and create a Makefile there containing the following lines:

KERNEL_MODULE_NAME := coretemp2
obj-m += coretemp2.o
ccflags-y += -ggdb -O0

Then follow the steps below to import the module project into VisualKernel:

  1. Start the VisualKernel kernel module wizard:
  2. On the first wizard page select “Import existing kernel module”:
  3. On the second page select the computer you are targeting:
  4. On the next page select the directory where you have placed the coretemp2.c file and the Makefile:
  5. On the “source code access” page proceed with the default settings:
  6. Finally select the debugging method that will allow VisualKernel debug your target:
  7. Press “Finish” to create your project. Change DRVNAME from “coretemp” to “coretemp2” and press Ctrl-Shift-B to build the module. Changing the driver name will avoid collisions with the original coretemp driver:
  8. Set a breakpoint on the coretemp_init() function and hit F5 to begin debugging:Once the breakpoint is hit you can use normal debugging techniques to debug your module.