Changes between Version 12 and Version 13 of TellStickInstallationSource
- Timestamp:
- Feb 6, 2014, 2:54:35 PM (11 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
TellStickInstallationSource
v12 v13 20 20 cmake 21 21 22 === Using kernel 2.6.2 0 or earlier ===22 === Using kernel 2.6.21 or later === 23 23 24 If you are using kernel version 2.6.14 to 2.6.20 you need the kernel driver compiled as a module. If it is compiled into the kernel it will not find TellStick. 25 {{{ftdi_sio}}} could be found under: 24 If you are using kernel version later than 2.6.21 you need to make sure the kernel module ftdio_sio is not loaded in the kernel. 25 26 Check if the module is loaded into the kernel by: 26 27 {{{ 27 Device Drivers---> 28 USB support---> 29 USB Serial Converter support---> 30 <M> USB FTDI Single Port Serial Driver (EXPERIMENTAL) 28 #!sh 29 lsmod | grep ftdi_sio 31 30 }}} 32 31 33 I nsert the module into the kernel by:32 If it is loaded, unload with: 34 33 {{{ 35 34 #!sh 36 modprobe ftdi_sio vendor=0x1781 product=0x0c30 37 }}} 38 39 For Ubuntu, do the following changes to {{{/etc/modprobe.d/options}}}: 40 {{{ 41 modprobe ftdi_sio vendor=0x1781 product=0x0c30 42 }}} 43 Then, update the module settings: 44 {{{ 45 #!sh 46 update-modules 47 }}} 48 49 After makeing this change, the module could be loaded without any extra parameters: 50 {{{ 51 #!sh 52 modprobe ftdi_sio 35 modprobe -r ftdi_sio 53 36 }}} 54 37