Results 11 to 12 of 12
Dataplayer,
If you install correctly it should work and don't use that makefile unless and until there is a version conflicts, use a simple one first, like
**********************Makefile*******************
obj-m := ...
- 07-04-2007 #11
Dataplayer,
If you install correctly it should work and don't use that makefile unless and until there is a version conflicts, use a simple one first, like
**********************Makefile*******************
obj-m := file_name.o
all:
make -C /lib/modules/`uname -r`/build M=$(PWD) modules
clean:
make -C /lib/modules/`uname -r`/build M=$(PWD) clean
***********************************************
If this won't work and if u get a version error messages, then use the same Makefile you used before.
This is the way to learn it, all the best....
- 07-06-2007 #12
Please note that , in my above message the " make " line should start with a space of TAB.


Reply With Quote
