Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我们正在尝试交叉编译 TP-Link TG 3468 千兆以太网适配器的驱动程序。供应商有驱动程序的 linux 版本,但没有配置文件。只有make文件和c文件。请提出一种交叉编译驱动程序的方法。
我们正在尝试为基于 ARM 处理器的单板计算机编译它。
大多数 Linux 内核模块不使用 autoconf,因此没有配置文件。您是否尝试运行make(可能使用适当的CC=设置)?
make
CC=
另请参阅此答案。