Compile the makefile file of the 2.6.x kernel driver
Source: Internet
Author: User
Compile the makefile file of the 2.6.x kernel driver-general Linux technology-Linux programming and kernel information. For more information, see the following. # File Description: Compile the makefile file of the linux driver 2.6.x
# Author: wyj
# Creation Time:
# Instructions:
# The variable DRI_NAME MOD_NAME NOD_NAME sets the names of the pseudo-driver, generating the name of the module and the name of the device node respectively.
# Use make install to install the driver requires the root permission
# Use make uninstall to uninstall the driver requires the root permission
# Use make clean to clear unnecessary files, including generated module code
# Driver name
DRI_NAME: = demo
# Module name
MOD_NAME: = IMTI_DEMO
# Node name
NOD_NAME: =/dev/demo
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.