openwrt中添加自定义驱动模块和APP

驱动模块添加:

1:make menuconfig中的 kernel modules

其中的各个配置选项来自于下面目录中的.mk文件


这里以other.mk为对照,后续我们添加的驱动模块,添加到other分支当中

2:建立模块目录,路径是package/kernel/example。mkdir -p package/kernel/example

3:进行package/kernel/example目录,建立Makefile文件,内容如下

#Kernel module example
include $(TOPDIR)/rules.mk

include $(INCLUDE_DIR)/kernel.mk

PKG_NAME:=example
PKG_RELEASE:=1

include $(INCLUDE_DIR)/package.mk


EXTRA_CFLAGS:= \
    $(patsubst CONFIG_%, -DCONFIG_%=1, $(patsubst %=m,%,$(filter %=m,$(EXTRA_KCONFIG)))) \
	$(patsubst CONFIG_%, -DCONFIG_%=1, $(patsubst %=y,%,$(filter %=y,$(EXTRA_KCONFIG)))) \

MAKE_OPTS:=ARCH="$(LINUX_KARCH)" \
	CROSS_COMPILE="$(TARGET_CROSS)" \
	SUBDIRS="$(PKG_BUILD_DIR)" \
	EXTRA_CFLAGS="$(EXTRA_CFLAGS)"

define KernelPackage/example
  SUBMENU:=Other modules
  TITLE:=Support Module for example
  # DEPENDS:=@XXX   #如果有依赖,这个名字可去make menuconfig里面找到 Symbol:XXX
  FILES:=$(PKG_BUILD_DIR)/example.ko
  AUTOLOAD:=$(call AutoLoad,81,example) #系统启动时自动装载
endef

#PKG_BUILD_DIR:/build_dir/target-mipsel_24kec+dsp_uClibc-0.9.33.2/linux-ramips_mt7621/example 
#建立 PKG_BUILD_DIR ,并将代码拷贝到此处
define Build/Prepare
	mkdir -p $(PKG_BUILD_DIR)/              
	$(CP) -R ./src/* $(PKG_BUILD_DIR)/
endef

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

$(eval $(call KernelPackage,example))

4:在package/kernel/example目录下建立src目录,mkdir -p package/kernel/example/src

5:在package/kernel/example/src目录下建立源码文件example.c和对应的Makefile,Kconfig

example.c

#include <linux/module.h>
#include <linux/version.h>
#include <linux/kmod.h>




static int __init example_init(void)
{
	printk("hello example openwrt\n");
	return 0;
}

static void __exit example_exit(void)
{
	printk("hello example openwrt exit\n");
}

module_init(example_init);
module_exit(example_exit);

MODULE_AUTHOR("hello world");
MODULE_DESCRIPTION("example driver");
MODULE_LICENSE("GPL");
MODULE_ALIAS("platform:" DRV_NAME);
Makefile:

obj-${CONFIG_EXAMPLE}+= example.o


Kconfig:

config EXAMPLE
    tristate "Just a example"
    help
    This is a example, for debugging kernel model.
    If unsure, say N.



6:在trunk目录make menuconfig-->kernel module-->other module-->kmod-example选中。保存Config后,输入make ./package/kernel/example/compile V=s进行编译




应用程序编译

1:在trunk/package应用目录。参考其他的应用文件。创建helloworld文件夹,并进入。创建Makefile:

##############################################
# OpenWrt Makefile for helloworld program
#
#
# Most of the variables used here are defined in
# the include directives below. We just need to
# specify a basic description of the package,
# where to build our program, where to find
# the source files, and where to install the
# compiled program on the router.
#
# Be very careful of spacing in this file.
# Indents should be tabs, not spaces, and
# there should be no trailing whitespace in
# lines that are not commented.
#
##############################################
include $(TOPDIR)/rules.mk

# Name and release number of this package
PKG_NAME:=helloworld
PKG_RELEASE:=1

# This specifies the directory where we're going to build the program. 
# The root build directory, $(BUILD_DIR), is by default the build_mipsel
# directory in your OpenWrt SDK directory

PKG_BUILD_DIR := $(BUILD_DIR)/$(PKG_NAME)

include $(INCLUDE_DIR)/package.mk

# Specify package information for this program.
# The variables defined here should be self explanatory.
# If you are running Kamikaze, delete the DESCRIPTION
# variable below and uncomment the Kamikaze define
# directive for the description below
define Package/helloworld
	SECTION:=utils
	CATEGORY:=Utilities
	TITLE:=Helloworld -- prints a snarky message
endef
# Uncomment portion below for Kamikaze and delete DESCRIPTION variable above
define Package/helloworld/description
	If you can't figure out what this program does, you're probably
	brain-dead and need immediate medical attention.
endef
# Specify what needs to be done to prepare for building the package.
# In our case, we need to copy the source files to the build directory.
# This is NOT the default.  The default uses the PKG_SOURCE_URL and the
# PKG_SOURCE which is not defined here to download the source from the web.
# In order to just build a simple program that we have just written, it is
# much easier to do it this way.
define Build/Prepare
	mkdir -p $(PKG_BUILD_DIR)
	$(CP) ./src/* $(PKG_BUILD_DIR)/
endef

define Build/Configure
endef


define Build/Compile
	$(MAKE) -C $(PKG_BUILD_DIR) \
		CC="$(TARGET_CC)" \
		CFLAGS="$(TARGET_CFLAGS) -Wall" \
		LDFLAGS="$(TARGET_LDFLAGS)"
endef
# We do not need to define Build/Configure or Build/Compile directives
# The defaults are appropriate for compiling a simple program such as this one
# Specify where and how to install the program. Since we only have one file,
# the helloworld executable, install it by copying it to the /bin directory on
# the router. The $(1) variable represents the root directory on the router running
# OpenWrt. The $(INSTALL_DIR) variable contains a command to prepare the install
# directory if it does not already exist.  Likewise $(INSTALL_BIN) contains the
# command to copy the binary file from its current location (in our case the build
# directory) to the install directory.
define Package/helloworld/install
	$(INSTALL_DIR) $(1)/bin
	$(INSTALL_BIN) $(PKG_BUILD_DIR)/helloworld $(1)/bin/
endef
# This line executes the necessary commands to compile our program.
# The above define directives specify all the information needed, but this
# line calls BuildPackage which in turn actually uses this information to
# build a package.
$(eval $(call BuildPackage,helloworld))

2:在helloworld目录 创建src文件夹,并进入。 创建Makefile和helloworld.c:

# build helloworld executable when user executes "make"
helloworld: helloworld.o
	$(CC) $(LDFLAGS) helloworld.o -o helloworld
helloworld.o: helloworld.c
	$(CC) $(CFLAGS) -c helloworld.c
# remove object files and executable when user executes "make clean"
clean:
	rm *.o helloworld

helloworld.c

#include <stdio.h>
#include <unistd.h>
#include <stdlib.h>

int main(int argc, char**argv)
{
    printf("Hell! O' world, why won't my code compile?\n\n");
    return 0;
}

3:返回trunk目录,make menuconfig-->Utilities-->helloworld。然后make ./package/helloworld/compile V=s





  • 0
    点赞
  • 28
    收藏
    觉得还不错? 一键收藏
  • 5
    评论
要在OpenWrt添加识别USB驱动,可以按照以下步骤进行操作: 1. 确认OpenWrt系统已经安装了USB驱动,可以通过以下命令进行检查: ``` opkg list-installed | grep kmod-usb ``` 如果没有安装,可以使用以下命令进行安装: ``` opkg update opkg install kmod-usb-core kmod-usb2 kmod-usb3 ``` 2. 连接USB设备到OpenWrt系统,使用以下命令检查USB设备是否已经被识别: ``` dmesg | grep usb ``` 如果USB设备已经被识别,可以看到类似如下的输出: ``` [ 424.702000] usb 1-1: new high-speed USB device number 2 using ehci-platform [ 424.942000] usb-storage 1-1:1.0: USB Mass Storage device detected [ 424.948000] scsi host2: usb-storage 1-1:1.0 [ 425.954000] scsi 2:0:0:0: Direct-Access XXXXXXXX XXXXXXXX PQ: 0 ANSI: 0 CCS [ 425.962000] sd 2:0:0:0: [sda] 30253056 512-byte logical blocks: (15.5 GB/14.4 GiB) [ 425.970000] sd 2:0:0:0: [sda] Write Protect is off [ 425.974000] sd 2:0:0:0: [sda] Mode Sense: 03 00 00 00 [ 425.974000] sd 2:0:0:0: [sda] No Caching mode page found [ 425.979000] sd 2:0:0:0: [sda] Assuming drive cache: write through [ 425.986000] sd 2:0:0:0: [sda] No Caching mode page found [ 425.990000] sd 2:0:0:0: [sda] Assuming drive cache: write through [ 426.056000] sda: sda1 [ 426.062000] sd 2:0:0:0: [sda] No Caching mode page found [ 426.067000] sd 2:0:0:0: [sda] Assuming drive cache: write through [ 426.071000] sd 2:0:0:0: [sda] Attached SCSI removable disk ``` 3. 如果USB设备没有被识别,可以通过以下命令查看系统日志来查找问题: ``` logread | grep usb ``` 根据日志信息,可以尝试安装对应的USB驱动或者调整系统配置来解决问题。 注意:添加USB驱动需要对系统有一定的了解和操作技能,如果不熟悉系统操作,建议寻求专业人士帮助。

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 5
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值