Re: Tizen 2.3 FIrmware für RD-PQ
Posted: Thu 12. Feb 2015, 00:20
Kam leider heute nicht dazu, versuch es morgen abend...Catscratch wrote:Na wenn du es geschafft hast, kannste ja mal eine Anleitung posten. :-p
Die deutschsprachige Community für bada, Android, WindowsPhone, Smartphones und Tablets
https://www.mobilenations.de/
Kam leider heute nicht dazu, versuch es morgen abend...Catscratch wrote:Na wenn du es geschafft hast, kannste ja mal eine Anleitung posten. :-p
Ich kanns grad nicht selbst testen und es klingt relativ anspruchsvoll......I know how to fix the wifi connection on Tizen 2.3 and 2.3.1 for a RD-PQ device. The problem is that some links in the os are not properly created.
Basically you need to install the usleep package (https://download.tizen.org/releases/2.2 ... armv7l.rpm), it's for Tizen 2.2.1, but it does work for 2.3 and 2.3.1. After that, create two links that the wlan.sh shell script is expecting, and are not in the proper location.
ln -s /usr/sbin/modprobe /sbin/modprobe
ln -s /usr/sbin/rmmod /sbin/rmmod
Or, alternatively, you can pull the /usr/bin/wlan.sh file via sdb pull, change the /sbin/modprobe and /sbin/rmmod lines to /usr/sbin/modprobe and /usr/sbin/rmmod.
After doing that, from the phone, open Wifi and clicking on the green button will activate the wifi correctly and you will be able to connect to any wifi hotspot.
You can skip using the ui and perform the following commands :
/usr/bin/wlan.sh start
this will activate the wlan0 interface, which you can check by issuing a ifconfig command.
/usr/sbin/wpa_supp.sh start
this will start wpa supplicant.
Check if connmand is running (ps -ax and check the list), if not, you need to do :
systemctl start connman
systemctl enable connman
Code: Select all
- Thor is connected!