为内核新增字符驱动模块

1. 放置代码

在./source/driver/char下放置模块文件夹

2. Makefile和Kconfig

makefile文件参考

obj-$(AAA_LED)              += AAA-led.o

Kconfig文件参考

config AAA_LED
        tristate "Phytium macb led control module"
        depends on XXX
        default m
        help
          If you have a network (Ethernet) controller of this type and
          want to use it control port led say Y or M here.

3. 修改字符设备驱动文件

修改./source/driver/char/Kconfig
添加

source "drivers/char/AAA_led/Kconfig"

与其AAA的kconfig关联

修改./source/driver/char/Makefile
添加
obj-$(CONFIG_AAA_LED) += AAA/AAA-led.o
告诉char根据这个config编译

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值