Difference between revisions of "MeegoS10-3t"

From WIki
Jump to: navigation, search
imported>Jonni
(Howto get wifi working on S10-3t)
imported>Jonni
(Howto get wifi working on S10-3t)
 
(27 intermediate revisions by the same user not shown)
Line 1: Line 1:
 
== General ==
 
== General ==
  
Multitouch hw works out of the box on Meego 1.0.99+
+
Multipoint-touch works out of the box with Lenovo S10-3t on Meego 1.0.99.2+ and 1.1.+. QT&Touch was broken for a while but now its working again 1.1.90.7+.
 +
 
 +
Latest image that I've tested is: http://repo.meego.com/MeeGo/builds/trunk/1.1.90.8.20110322.2/
  
 
== Howto get wifi working on S10-3t ==
 
== Howto get wifi working on S10-3t ==
  
  1.
+
1. Activate the MeeGo toolbar and select the applications icon
 
 
      Activate the MeeGo toolbar and select the applications icon
 
  2.
 
 
 
      2)Choose the Accessories section and select Terminal (or type terminal in the search box)
 
  3.
 
 
 
      3)Install the various tools you’ll need
 
 
 
    sudo zypper install rpmdevtools
 
 
 
  4.
 
 
 
      4)Install the compilers and other tools,
 
 
 
    sudo zypper install -pattern "Development Tools"
 
    (zypper pt)
 
  
  5.
+
2. Choose the Accessories section and select Terminal (or type terminal in the search box)
  
      5)Install the kernel-netbook-devel package.
+
3. Install the various tools you’ll need
  
     sudo yum install kernel-netbook-devel
+
     sudo bash
 +
    zypper install rpmdevtools
  
  6.
+
4. Install the compilers and other tools, (fyi: "zypper pt" to see patterns)
  
      6)Now we’re ready to build and install the new broadcom drivers, my moblin srpm works
+
    zypper install -t pattern meego-development-tools
  
    wget http://slaine.org/moblin/releases/2.1/ia32/source/wl-kmod-5.60.48.36-1.moblin.src.rpm
+
5. Install the kernel-netbook-devel package.
  
     (This build will download the broadcom driver archive directly from their site)
+
     zypper install kernel-devel
  
    rpmbuild --rebuild --target=i586 wl-kmod-5.60.48.36-1.moblin.src.rpm
+
6. Now we’re ready to build and install the new broadcom drivers
  
  7.
+
    mkdir wifi
 +
    cd wifi
 +
    wget http://www.broadcom.com/docs/linux_sta/hybrid-portsrc_x86_32-v5_100_82_38.tar.gz
 +
    tar zxvf hybrid-portsrc_x86_32-v5_100_82_38.tar.gz
 +
    wget http://rainisto.com/wiki/GPL.patch
 +
    patch -p0 < GPL.patch
 +
    make
 +
    make install
 +
    depmod
 +
    modprobe wl
  
      7)Install the resulting rpm,
+
7. You should be able to see wifi under networks-menu
 +
Sometimes you need to dualboot to windows to enable wifi (or clear the bios), since it can get blocked under some conditions in Linux.
  
     sudo rpm -ivh ~/rpmbuild/RPMS/i586/wl-kmod-5.60.48.36-1.meego.i586.rpm
+
== How to fix zypper db error ==
 +
     rm -f /var/lib/rpm/__db*
 +
    db_verify /var/lib/rpm/Packages
 +
    rpm --rebuilddb

Latest revision as of 19:55, 27 March 2011

General

Multipoint-touch works out of the box with Lenovo S10-3t on Meego 1.0.99.2+ and 1.1.+. QT&Touch was broken for a while but now its working again 1.1.90.7+.

Latest image that I've tested is: http://repo.meego.com/MeeGo/builds/trunk/1.1.90.8.20110322.2/

Howto get wifi working on S10-3t

1. Activate the MeeGo toolbar and select the applications icon

2. Choose the Accessories section and select Terminal (or type terminal in the search box)

3. Install the various tools you’ll need

   sudo bash
   zypper install rpmdevtools

4. Install the compilers and other tools, (fyi: "zypper pt" to see patterns)

   zypper install -t pattern meego-development-tools

5. Install the kernel-netbook-devel package.

   zypper install kernel-devel

6. Now we’re ready to build and install the new broadcom drivers

   mkdir wifi
   cd wifi
   wget http://www.broadcom.com/docs/linux_sta/hybrid-portsrc_x86_32-v5_100_82_38.tar.gz
   tar zxvf hybrid-portsrc_x86_32-v5_100_82_38.tar.gz
   wget http://rainisto.com/wiki/GPL.patch
   patch -p0 < GPL.patch
   make 
   make install
   depmod
   modprobe wl

7. You should be able to see wifi under networks-menu Sometimes you need to dualboot to windows to enable wifi (or clear the bios), since it can get blocked under some conditions in Linux.

How to fix zypper db error

   rm -f /var/lib/rpm/__db*
   db_verify /var/lib/rpm/Packages
   rpm --rebuilddb