如何为 LEDE 编写 Makefile 来安装我的新驱动程序?

How to write a Makefile for LEDE to install my new driver?

我在 LEDE.The 中编写了一个 Makefile 来编译我的驱动程序问题是 xxx.ko 文件在 /lib/modules/uname -r/ 目录中可用,但该模块不可用从 boot.So 安装你能帮我重写我的 Makefile 来把我的驱动程序从 boot.I 安装吗在这里附上我的 Makefile。

define Build/Compile
    $(MAKE) -C "$(LINUX_DIR)" $(MAKE_OPTS) modules
endef

define Package/kmod-ax88772/install
    $(INSTALL_DIR) $(1)/etc/init.d
    $(INSTALL_DIR) $(1)/lib/modules/$(LINUX_VERSION) 
    $(INSTALL_DIR) $(1)/usr/sbin
endef

提前致谢。

在您的 makefile 中使用自动加载,例如

AUTOLOAD:=$(call AutoLoad,30, moduleName)