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.
我正在做一个项目,我需要将我自己的一些修改添加到 Linux UBS Block 设备驱动程序中。我需要访问驱动程序的源代码,对其进行更改,并且我需要能够使用真正的 USB 拇指驱动器运行和测试它。
问题是,我不知道从哪里开始。所以我有三个一般性问题:
1)我在哪里可以获得Linux USB块设备驱动程序以便我可以自己编译源代码?
2) 我怎样才能运行这个驱动程序并将它与真正的拇指驱动器一起使用?
这个项目的任何其他提示肯定会非常感激。谢谢!
从这篇文章(以及我自己多年来做这件事)
cd linux-src make menuconfig make make install reboot now
这里还有一篇更深入的文章,介绍了 Linux 内核中的 USB 支持是如何设计的。