From 9e37f9f283bb4c910f09b812b858bce3b4de3562 Mon Sep 17 00:00:00 2001 From: hackbard Date: Fri, 17 Jan 2003 20:55:36 +0000 Subject: [PATCH] - --- hello/Makefile | 4 ++-- hello/hello.c | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/hello/Makefile b/hello/Makefile index 6339fdd..5947db3 100644 --- a/hello/Makefile +++ b/hello/Makefile @@ -1,8 +1,8 @@ # Makefile of hello.o - my first kernel module. INCLUDEDIR = /usr/include - -CFLAGS = -D__KERNEL__ -DMODULE -O -Wall -I$(INCLUDEDIR) +CC = gcc +CFLAGS = -D__KERNEL__ -DMODULE -O -Wall # -I$(INCLUDEDIR) # findout kernel version. VER = $(shell awk -F\" '/REL/ {print $$2}' $(INCLUDEDIR)/linux/version.h) diff --git a/hello/hello.c b/hello/hello.c index 48bcb33..74ace2a 100644 --- a/hello/hello.c +++ b/hello/hello.c @@ -1,14 +1,14 @@ /* my first kernel driver :-) */ -#define MODULE #include +#include int init_module(void) { - printk("<1>hi hackbard, here is your kernel speaking! :)\n"); + printk(KERN_ALERT "hi hackbard, here is your kernel speaking! :)\n"); return 0; } void cleanup_module(void) { - printk("<1>bye hackbard ...\n"); + printk(KERN_ALERT "bye hackbard ...\n"); } -- 2.20.1