Changes between Version 12 and Version 13 of TellStickInstallationSource


Ignore:
Timestamp:
Feb 6, 2014, 2:54:35 PM (10 years ago)
Author:
Micke Prag
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • TellStickInstallationSource

    v12 v13  
    2020cmake
    2121
    22 === Using kernel 2.6.20 or earlier ===
     22=== Using kernel 2.6.21 or later ===
    2323
    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:
     24If 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
     26Check if the module is loaded into the kernel by:
    2627{{{
    27 Device Drivers--->
    28   USB support--->
    29     USB Serial Converter support--->
    30       <M> USB FTDI Single Port Serial Driver (EXPERIMENTAL)
     28#!sh
     29lsmod | grep ftdi_sio
    3130}}}
    3231
    33 Insert the module into the kernel by:
     32If it is loaded, unload with:
    3433{{{
    3534#!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
     35modprobe -r ftdi_sio
    5336}}}
    5437