如何从 Git 源代码构建 wil6210 驱动程序

如何从 Git 源代码构建 wil6210 驱动程序

我想构建并安装wil6210Linux 上游的驱动器。我已成功从以下位置下载源代码:这里。该文件夹包含Makefile另一个名为的文件Kconfig。当我尝试制作时,它说:make: *** No targets. Stop.我尝试使用不同的配置文件,但它们不起作用。结果如下:

elans@elans-TravelMate-P446-M:~/linux-source/wil6210$ ./configure
bash: ./configure: No such file or directory
elans@elans-TravelMate-P446-M:~/linux-source/wil6210$ ./Kconfig
bash: ./Kconfig: Permission denied
elans@elans-TravelMate-P446-M:~/linux-source/wil6210$ sudo ./Kconfig
sudo: ./Kconfig: command not found
elans@elans-TravelMate-P446-M:~/linux-source/wil6210$ make
make: *** No targets.  Stop.

以下是 的内容Makefile

# SPDX-License-Identifier: GPL-2.0
obj-$(CONFIG_WIL6210) += wil6210.o

wil6210-y := main.o
wil6210-y += netdev.o
wil6210-y += cfg80211.o
wil6210-y += pcie_bus.o
wil6210-$(CONFIG_WIL6210_DEBUGFS) += debugfs.o
wil6210-y += wmi.o
wil6210-y += interrupt.o
wil6210-y += txrx.o
wil6210-y += debug.o
wil6210-y += rx_reorder.o
wil6210-y += fw.o
wil6210-y += pm.o
wil6210-y += pmc.o
wil6210-$(CONFIG_WIL6210_TRACING) += trace.o
wil6210-y += wil_platform.o
wil6210-y += ethtool.o
wil6210-y += wil_crash_dump.o
wil6210-y += p2p.o

# for tracing framework to find trace.h
CFLAGS_trace.o := -I$(src)

可能存在什么问题?

答案1

为了只编译内核源代码中的特定模块,您需要以下命令。检查

基本上,您需要cd进入 wil6210 代码目录并运行以下命令:

make -C /lib/modules/$(uname -r)/build M=$(pwd) modules

确保将其更改$(uname -r)为你的目标内核版本,即你希望 wil6210 模块在其上运行的系统的内核版本

相关内容