User:GNUtoo

From Openmoko

(Difference between revisions)
Jump to: navigation, search
(usefull tips)
(usefull tips)
Line 2: Line 2:
  
 
== usefull tips ==
 
== usefull tips ==
How to make bluetooth's A2DP work:
+
=== How to make bluetooth's A2DP work ===
 
  opkg install kernel-module-btusb #should already be in the image
 
  opkg install kernel-module-btusb #should already be in the image
 
  opkg install libasound-module-bluez
 
  opkg install libasound-module-bluez
Line 13: Line 13:
 
  }
 
  }
  
to make my 32G microsd work:
+
=== to make my 32G microsd work ===
 
  glamo_mci.sd_max_clk=1000000
 
  glamo_mci.sd_max_clk=1000000
 
in /boot/append-GTA02
 
in /boot/append-GTA02
 +
then at runtime:
 +
fdisk /dev/mmcblk0
 +
p
 +
w

Revision as of 21:48, 21 October 2011

Contents

About me

usefull tips

How to make bluetooth's A2DP work

opkg install kernel-module-btusb #should already be in the image
opkg install libasound-module-bluez
# cat .asoundrc 
pcm.!default {
  type bluetooth
  device XX:XX:XX:XX:XX:XX
  profile "auto"
}

to make my 32G microsd work

glamo_mci.sd_max_clk=1000000

in /boot/append-GTA02 then at runtime:

fdisk /dev/mmcblk0
p
w
Personal tools

About me

usefull tips

How to make bluetooth's A2DP work:

opkg install kernel-module-btusb #should already be in the image
opkg install libasound-module-bluez
# cat .asoundrc 
pcm.!default {
  type bluetooth
  device XX:XX:XX:XX:XX:XX
  profile "auto"
}

to make my 32G microsd work:

glamo_mci.sd_max_clk=1000000

in /boot/append-GTA02