Editing Fremantle Bluetooth Keyboard Layout

Warning: You are not logged in. Your IP address will be recorded in this page's edit history.
The edit can be undone. Please check the comparison below to verify that this is what you want to do, and then save the changes below to finish undoing the edit.
Latest revision Your text
Line 1: Line 1:
-
Bluetooth keyboards are [[Fremantle_Unsupported_Bluetooth_profiles|not officially supported]] on the [[Nokia N900|N900]], that is Maemo [[Open development/Maemo roadmap/Fremantle|Fremantle]], but it is possible to get them working with some hacking.
+
Bluetooth keyboards are [[Fremantle_Unsupported_Bluetooth_profiles|not officially supported]] on the [[Nokia N900|N900]], i.e. Maemo Fremantle, but it's possible to get them working with some hacking.
== Devices ==
== Devices ==
Line 101: Line 101:
Put this in /etc/init.d/bluetooth-keyboard. You need to replace bluetooth-keyboard.py with the absolute path.
Put this in /etc/init.d/bluetooth-keyboard. You need to replace bluetooth-keyboard.py with the absolute path.
-
<source lang="bash">
+
#!/bin/sh
-
#!/bin/sh
+
 +
case "$1" in
 +
start)
 +
        python bluetooth-keyboard.py &
 +
        ;;
 +
stop)
 +
        kill $(ps ax | grep 'python bluetooth-keyboard.py' | grep -v grep | awk '{print $1}')
 +
        ;;
 +
restart)
 +
        echo "$0: not implemented"
 +
        exit 1
 +
        ;;
 +
force-reload)
 +
        echo "$0: not implemented"
 +
        exit 1
 +
        ;;
 +
*)
 +
        echo "Usage: $0 {start|stop}"
 +
        exit 1
 +
        ;;
 +
esac
-
case "$1" in
 
-
start)
 
-
      python bluetooth-keyboard.py &
 
-
      ;;
 
-
stop)
 
-
      kill $(ps ax | grep 'python bluetooth-keyboard.py' | grep -v grep | awk '{print $1}')
 
-
      ;;
 
-
restart)
 
-
      echo "$0: not implemented"
 
-
      exit 1
 
-
      ;;
 
-
force-reload)
 
-
      echo "$0: not implemented"
 
-
      exit 1
 
-
      ;;
 
-
*)
 
-
      echo "Usage: $0 {start|stop}"
 
-
      exit 1
 
-
      ;;
 
-
esac
 
-
</source>
 
Make it executable and hook into init system
Make it executable and hook into init system
Line 139: Line 138:
== References ==
== References ==
-
* General procedure: [http://talk.maemo.org/showthread.php?p=490777#post490777]
+
General procedure: [http://talk.maemo.org/showthread.php?p=490777#post490777]
-
* DisablePlugins is required: [http://talk.maemo.org/showpost.php?p=385463&postcount=3]
+
-
* Installing the tarball: [http://talk.maemo.org/showpost.php?p=441137&postcount=1]
+
-
* Special copy commands: [http://talk.maemo.org/showthread.php?p=490777#post490777]
+
-
* Script to automatically run the setxkbmap command: [http://talk.maemo.org/showthread.php?p=525721#post525721]
+
-
[[Category:Bluetooth]]
+
DisablePlugins is required: [http://talk.maemo.org/showpost.php?p=385463&postcount=3]
-
[[Category:Fremantle]]
+
 
 +
Installing the tarball: [http://talk.maemo.org/showpost.php?p=441137&postcount=1]
 +
 
 +
Special copy commands: [http://talk.maemo.org/showthread.php?p=490777#post490777]
 +
 
 +
Script to automatically run the setxkbmap command: [http://talk.maemo.org/showthread.php?p=525721#post525721]

Learn more about Contributing to the wiki.


Please note that all contributions to maemo.org wiki may be edited, altered, or removed by other contributors. If you do not want your writing to be edited mercilessly, then do not submit it here.
You are also promising us that you wrote this yourself, or copied it from a public domain or similar free resource (see maemo.org wiki:Copyrights for details). Do not submit copyrighted work without permission!


Cancel | Editing help (opens in new window)