当前位置: 技术问答>linux和unix
自己写的驱动加载问题?
来源: 互联网 发布时间:2016-08-03
本文导语: 我在调试camera驱动时候写了2个驱动,一个是camera本身,还有一个是cpu camera controler。在make menuconfig都选择编进内核。可是我启动发现/dev下面只有一个fb0,没有cpu camera controler对应的设备cam?请问怎么回事。 makef...
我在调试camera驱动时候写了2个驱动,一个是camera本身,还有一个是cpu camera controler。在make menuconfig都选择编进内核。可是我启动发现/dev下面只有一个fb0,没有cpu camera controler对应的设备cam?请问怎么回事。
makefile-----------
obj-$(CONFIG_OV9650_IIC) += ov9650.o
obj-$(CONFIG_OV9650_DRV) += s3c2440_ov9650.o
Kconfig---------
config OV9650_IIC
tristate "i2c-ov9650"
depends on I2C && EXPERIMENTAL
help
If you say yes here you get support for the
ov9650 chip.
This driver can also be built as a module. If so, the module
will be called ov9650.
config OV9650_DRV
tristate "ov9650 drv"
depends on I2C && OV9650_IIC
makefile-----------
obj-$(CONFIG_OV9650_IIC) += ov9650.o
obj-$(CONFIG_OV9650_DRV) += s3c2440_ov9650.o
Kconfig---------
config OV9650_IIC
tristate "i2c-ov9650"
depends on I2C && EXPERIMENTAL
help
If you say yes here you get support for the
ov9650 chip.
This driver can also be built as a module. If so, the module
will be called ov9650.
config OV9650_DRV
tristate "ov9650 drv"
depends on I2C && OV9650_IIC
|
用动态加载试试 自己在/dev下建设备节点
|
/dev/fb0是framebuffer的节点。
你的应该是v4l2的节点,类似/dev/video 具体是什么你可以检查一下
你的应该是v4l2的节点,类似/dev/video 具体是什么你可以检查一下
|
混经验的来过。