I have been playing with the two Ubuntu Mobile variants on my Samsung Q1U
(NP-Q1UAY01/SE upgraded to 2GB of RAM), and had previously installed the
mid-8.04.1-mccaslin-install-usb image on the device. All of the versions
are very nifty, but I found a few quirks:
I installed ubuntu-mobile.img (20081004) to the hard drive and applied all
the latest updates and it works great, except I can't figure out how to
get to the menu for Midbrowser so I can do things like change preferences,
install extensions (I need AdBlock!), etc. Am I just not finding a button
or a key press to get this to appear?
I also tested ubuntu-mid.img (20081006) as Live USB (did not install) and
had these problems:
-Only detected 903888 of RAM (-mobile and the 8.04 MID image both find
2063196 kB correct amount of RAM). On boot the kernel says (via dmesg):
Warning only 896MB will be used.
Use a HIGHMEM enabled kernel.
-Must double-clock to launch apps...not very easy to do with my finger
-Couldn't figure out how to attach to a wireless network. The device
looks like it was detected, but I don't see any networks listsed, and if I
select "Auto wlan0" the icon spins for a bit, then stops.
-Sound Mixer and Screen Resolution icons are missing
-Some icons are low resolution (Terminal, Bulk Rename, Alarm Clock,
Buttons, About Me)
I noticed that the samsung-q1-ultra-keycode-setup script isn't present in
either the -mid or -mobile images, and that the hotkey-setup script
doesn't have any hotkey configuration for the Samsung Q1U either. It
seemed like hotkey-setup was the right place to put the key bindings, so I
modified the /etc/init.d/hotkey-setup script and added a
/usr/share/hotkey-setup/samsung-sq1us.hk config file (based on what was in
the samsung-q1-ultra-keycode-setup in the mid 8.04.01 image). I could not
test the UDF or shutter buttons because these buttons do not exist on my
Q1U. I have attached a patch for the changes I made (it's been a while
since I have made a patch, I hope I created it correctly).
-Jason
diff -Naur old/etc/init.d/hotkey-setup new/etc/init.d/hotkey-setup
--- old/etc/init.d/hotkey-setup 2008-10-06 08:05:34.000000000 -0400
+++ new/etc/init.d/hotkey-setup 2008-10-06 07:47:42.000000000 -0400
@@ -160,7 +160,14 @@
;;
Samsung*|SAMSUNG*)
- . /usr/share/hotkey-setup/samsung.hk
+ case "$name" in
+ *SQ1US*)
+ . /usr/share/hotkey-setup/samsung-sq1us.hk
+ ;;
+ *)
+ . /usr/share/hotkey-setup/samsung.hk
+ ;;
+ esac
;;
Sony*)
diff -Naur old/usr/share/hotkey-setup/samsung-sq1us.hk new/usr/share/hotkey-setup/samsung-sq1us.hk
--- old/usr/share/hotkey-setup/samsung-sq1us.hk 1969-12-31 19:00:00.000000000 -0500
+++ new/usr/share/hotkey-setup/samsung-sq1us.hk 2008-10-06 07:47:59.000000000 -0400
@@ -0,0 +1,24 @@
+# Samsung SQ1US
+# Taken from /etc/init.d/samsung-q1-ultra-keycode-setup
+
+# Map 'MENU' key to standard menu keycode
+setkeycodes e054 127
+
+# Map up arrow to F1 keycode
+setkeycodes e058 103
+
+# Map right pointering arrow to F10 keycode
+setkeycodes e059 106
+
+# Map down pointing arrow key to F3 keycode
+setkeycodes e056 108
+
+# Map left pointing arrow key to F9 keycode
+setkeycodes e057 105
+
+# Map the 'Shutter' key to F5 keycode
+setkeycodes e064 63
+
+# Map the 'UDF' key to F11 keycode
+setkeycodes e06e 64
+
--
Ubuntu-mobile mailing list
[email protected]
Modify settings or unsubscribe at:
https://lists.ubuntu.com/mailman/listinfo/ubuntu-mobile