drivers 目录直接加入驱动

在drivers中加入kwan 文件夹

在kwan中

                                          Kconfig

menuconfig KWAN

    tristate "kwan for test
    default n
    help
        nothing

if KWAN
config VMS_INPUT
    tristate "vms support"
    default n
    help
        nothing

endif

                                      

                      Makefile

obj-$(CONFIG_VMS_INPUT)    += vms.o



在driver中

Kconfig

source "drivers/kwan/Kconfig"

Makfile 中

obj-y                += kwan/


在arch/arm/Kconfig中

      source "drivers/kwan/Kconfig"

                    




你可能感兴趣的:(linux内核研究,工作点滴)