Compile helloworldMakefile with linux2.6 driver

Source: Internet
Author: User
Compile helloworldMakefile-Linux general technology-Linux programming and kernel information by using the linux2.6 driver. The following is a detailed description. Taking hello world version 2.6 as an example, we will introduce how to write the linux2.6 driver.

Source program:

# Include
# Include
# Include

MODULE_LICENSE ("GPL"); // description

Static int hello_init (void ){
Printk (KERN_ALERT "Hello, world \ n ");
Return 0;
}
Static void hello_exit (void ){
Printk ("Goodbye, cruel world \ n ");
}

Module_init (hello_init );
Module_exit (hello_exit );

Compile a file (makefile). It is recommended that you do not paste it. If there is a format problem, manually click it. This is a simple form and some judgment statements are omitted.

Ifneq ($ (KERNELRELEASE ),)
Obj-m: = QD01.o
Else
KDIR =/lib/modules/$ (shell uname-r)/build
PWD: = $ (shell pwd)
Default:
$ (MAKE)-C $ (KDIR) M = $ (PWD) modules
Endif

After several days of painstaking search, we finally got it done! Yeah!
Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.