0

我正在遵循以下教程,尝试学习如何开发设备驱动程序,在第 2 章中,重点是开发一个工作模块并将其插入内核。我使用了以下代码(hello.c):

#include <linux/init.h>
#include <linux/module.h>
#include <linux/kernel.h>

MODULE_LICENSE("Dual BSD/GPL");

static int hello_init(void)
{
    printk(KERN_ALERT "Hello World!\n");
    return 0;
}

static void hello_exit(void)
{
    printk(KERN_ALERT "Goodbye, cruel world!\n");
}

module_init(hello_init);
module_exit(hello_exit);

我的这是 Makefile:

obj-m += hello.o

all:
    make -C /lib/modules/$(shell uname -r)/build M=$(PWD) modules

clean:
    make -C /lib/modules/$(shell uname -r)/build M=$(PWD) clean

然后我在 LXTerminal 中运行以下命令:

brian@brian-desktop:~/driver_stuff/hello$ su
root@brian-desktop:/home/brian/driver_stuff/hello# make
make -C /lib/modules/2.6.32-21-generic/build M=/home/brian/driver_stuff/hello modules
make[1]: Entering directory `/usr/src/linux-headers-2.6.32-21-generic'
Building modules, stage 2.
MODPOST 1 modules
make[1]: Leaving directory `/usr/src/linux-headers-2.6.32-21-generic'
root@brian-desktop:/home/brian/driver_stuff/hello# insmod ./hello.ko
root@brian-desktop:/home/brian/driver_stuff/hello# rmmod hello
root@brian-desktop:/home/brian/driver_stuff/hello# exit

然而,在insmod ./hello.ko命令之后,人们应该期望终端会打印“Hello world!”。然后是“再见,残酷的世界!” rmmod hello命令之后。这本书提到当你在控制台中运行命令时会发生这种情况,而不是在模拟终端中,这可能是问题吗?

我还在 /var/log/messages 和 /var/log/messages.1 下检查了其中没有任何“Hello World!”的记录。也不是“再见,残酷的世界!”。这些消息是否可能位于不同的文件中,或者消息是否一开始没有被推送到内核?

如果您需要有关我正在运行的内核的信息(Lubuntu 10.04,在 VM 内):

brian@brian-desktop:~/driver_stuff/hello$ uname -r
2.6.32-21-generic

谢谢你。

4

1 回答 1

6

的输出kprintf始终是内核日志。这也可能会发生在系统控制台上(因此,如果您在控制台上,则会到达您正在使用的终端),但是没有任何东西可以将其链接回您加载模块的特定终端。

要读取内核日志,请运行dmesg.

于 2012-05-21T04:33:47.717 回答