meta data for this page
  •  

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
dreambox:nbox:openpli [2019/07/08 08:37] – [supported WiFi cards] niziakdreambox:nbox:openpli [2020/08/13 07:54] (current) niziak
Line 1: Line 1:
 +====== OpenPli ======
 +
 +[[https://wiki.openpli.org/Problems_and_Solutions]]
 +
 ====== Wersje ====== ====== Wersje ======
  
-  * ''2019-02-08_OpenPli-V8.6 Neovo System Mod by LTE-Media''+===== 2019-02-08_OpenPli-V8.6 Neovo System Mod by LTE-Media =====
  
-  *+  * OSCAM: OSCam: uni-seca Build: r11431 Compiler: sh4-linux - by Jej@n 
 +  *  
 +===== Dymida =====
  
 <code> <code>
Line 14: Line 20:
 ********************************************************* *********************************************************
 </code> </code>
 +  * OSCAM: OSCam: 1.20-unstable_svn Build: r10943 Compiler: sh4-streamboard-linux-gnu
  
 ====== Prepare ====== ====== Prepare ======
 +
 +  * WiFi type
 +<file /var/config/wlan.conf>
 +wlan=rt5370
 +</file>
  
   * hostname   * hostname
 +<code bash>
 +echo "username" > /etc/hostname
 +</code>
 +
 +  * unique MAC (from box label)
 +<file /etc/init.d/rcS>
 +   insmod $MODDIR/mme_host.ko transport0=shm                                                     
 +                                                                                                 
 +   ifconfig eth0 hw ether 00:03:91:8B:C2:EC                                                      
 +   ifconfig eth0 promisc                                                                         
 +                                                                                                 
 +   echo "init AVS"                                                                               
 +  if [ $boxtype == 'BXZB' ]; then              
 +</file>
 +
   * tinc (libssl / libcrypto)   * tinc (libssl / libcrypto)
   * 50Hz HDMI   * 50Hz HDMI
   * Oscam   * Oscam
 +    * http://hostname:8888/
 +      * AU disabled
 +      * 2.3.0
     * ''var/keys/oscam_sci0''     * ''var/keys/oscam_sci0''
  
Line 58: Line 88:
   * **rt5370sta** Ralink 802.11n/b/g 150Mbit 1T1R   * **rt5370sta** Ralink 802.11n/b/g 150Mbit 1T1R
     * very popular in STB / branded by Ferguson / used by Smigacz     * very popular in STB / branded by Ferguson / used by Smigacz
 +    * Driver: [[https://wireless.wiki.kernel.org/en/users/drivers/rt2800usb|rt2800usb]] / rt5370sta
     * Products:     * Products:
       * TP-LINK TL-WN727N v3       * TP-LINK TL-WN727N v3
 +
 +====== remote syslog ======
 +
 +Manual start:
 +<code bash>syslogd -C128 -L -R 192.168.179.1</code>
 +
 +<file bash /etc/init.d/rcS>
 +   echo "Starting DEBUG Interface"                                 
 +   /etc/init.d/mountall start                                      
 +   /etc/init.d/hostname start                                      
 +                                                                   
 +   echo "starting syslogd"                                         
 +   syslogd -C128 -L -R 192.168.179.1                               
 +                                                                   
 +   echo "starting telnetd"                                         
 +   /usr/sbin/telnetd -l /bin/login                                 
 +                                                                   
 +                                                                      
 +   echo "init stmfb"                                 
 +</file>
 +