个人工具

“UbuntuHelp:BinaryDriverHowto/KeyspanDriver”的版本间的差异

来自Ubuntu中文

跳转至: 导航, 搜索
(新页面: {{From|https://help.ubuntu.com/community/BinaryDriverHowto/KeyspanDriver}} {{Languages|UbuntuHelp:BinaryDriverHowto/KeyspanDriver}} === How to install the non-free firmware for Keyspan U...)
 
 
(未显示同一用户的6个中间版本)
第1行: 第1行:
 
{{From|https://help.ubuntu.com/community/BinaryDriverHowto/KeyspanDriver}}
 
{{From|https://help.ubuntu.com/community/BinaryDriverHowto/KeyspanDriver}}
 
{{Languages|UbuntuHelp:BinaryDriverHowto/KeyspanDriver}}
 
{{Languages|UbuntuHelp:BinaryDriverHowto/KeyspanDriver}}
 
+
<<Include(Tag/Unsupported)>>
 +
<<Include(Tag/Deletion)>>
 
=== How to install the non-free firmware for Keyspan USB <-> serial converters ===
 
=== How to install the non-free firmware for Keyspan USB <-> serial converters ===
 
+
==== Ubuntu 7.10 ====
 
+
To install the firmware in Ubuntu 7.10 you need to first download the [http://www.imperialviolet.org/binary/keyspan.ko keyspan module]. Next you need to copy the keyspan module to
KeyspanDriverHowto:: This Howto documents how to get a Keyspan USB-to-serial converter working with Ubuntu.  Most of these devices require firmware to be downloaded to the device each time you connect it to your USB bus.  The problem is that this firmware is distributed with a license too restrictive to allow Ubuntu to redistribute it.
+
'''/lib/modules/2.6.22-16-generic/kernel/drivers/usb/serial'''
 
+
<pre><nowiki>
==== Use a kernel.org kernel ====
+
sudo cp /lib/modules/2.6.22-16-generic/kernel/drivers/usb/serial
 
+
</nowiki></pre>
Compile your own kernel from kernel.org source.  See the KernelCompileHowto for more information on how to do this.
+
then
 
+
<pre><nowiki>
==== Patch the ubuntu kernel ====
+
sudo depmod -a && modprobe keyspan
 
+
</nowiki></pre>
This is a bit sneakier. For now, I will say that you need to download the kernel.org kernel, and copy keyspan* from drivers/usb/serial to drivers/usb/serial in the unpacked ubuntu kernel tree.  Also, copy the relevant bits from Kconfig in the upstream drivers/usb/serial directory into Kconfig in the same directory under the Unbutu source tree.
+
==== Ubuntu 8.04 and newer ====
 
+
The module is included in the kernel so the keyspan USB to Serial Adapter should work right out of the box.
Then compile it, using the KernelCompileHowto as a guide.
+
 
+
This is a very rushed stab at an explanation, mainly so I can get the page out there, and tidy it up later.  Sorry for the mess. :(
+
----
+
[[category:CategoryDocumentation]] [[category:CategoryCleanup]]
+
  
 
[[category:UbuntuHelp]]
 
[[category:UbuntuHelp]]

2009年11月17日 (二) 18:37的最新版本

<<Include(Tag/Unsupported)>> <<Include(Tag/Deletion)>>

How to install the non-free firmware for Keyspan USB <-> serial converters

Ubuntu 7.10

To install the firmware in Ubuntu 7.10 you need to first download the keyspan module. Next you need to copy the keyspan module to /lib/modules/2.6.22-16-generic/kernel/drivers/usb/serial

sudo cp /lib/modules/2.6.22-16-generic/kernel/drivers/usb/serial

then

sudo depmod -a && modprobe keyspan

Ubuntu 8.04 and newer

The module is included in the kernel so the keyspan USB to Serial Adapter should work right out of the box.