summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard Purdie <richard@openedhand.com>2006-05-22 22:13:36 +0000
committerRichard Purdie <richard@openedhand.com>2006-05-22 22:13:36 +0000
commita21cef816585683556abd873c83ed0fdb5938f32 (patch)
tree35bdc6e15973a1e26d85e3a8b6b849d247410fe6
parent0457b7ca524947207c0f5b5755bcb7943dd191c2 (diff)
downloadpoky-a21cef816585683556abd873c83ed0fdb5938f32.tar.gz
matchbox-poky: Allow the cursor to be shown when using qemuarm
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@404 311d38ba-8fff-0310-9ca6-ca027cbcb966
-rwxr-xr-xopenembedded/packages/matchbox-poky/matchbox-poky/etc/matchbox/session8
-rw-r--r--openembedded/packages/matchbox-poky/matchbox-poky_0.1.bb2
2 files changed, 8 insertions, 2 deletions
diff --git a/openembedded/packages/matchbox-poky/matchbox-poky/etc/matchbox/session b/openembedded/packages/matchbox-poky/matchbox-poky/etc/matchbox/session
index 2806094a79..fede9e44b9 100755
--- a/openembedded/packages/matchbox-poky/matchbox-poky/etc/matchbox/session
+++ b/openembedded/packages/matchbox-poky/matchbox-poky/etc/matchbox/session
@@ -4,6 +4,8 @@ module_id() {
4 awk 'BEGIN { FS=": " } /Hardware/ { print $2 } ' </proc/cpuinfo 4 awk 'BEGIN { FS=": " } /Hardware/ { print $2 } ' </proc/cpuinfo
5} 5}
6 6
7SHOWCURSOR="no"
8
7## Start up machine specific input devices. Really needs to go in its own session 9## Start up machine specific input devices. Really needs to go in its own session
8case `module_id` in 10case `module_id` in
9 "SHARP Shepherd" | "SHARP Husky" | "SHARP Corgi" | "SHARP Spitz" | "SHARP Akita" | "SHARP Borzoi") 11 "SHARP Shepherd" | "SHARP Husky" | "SHARP Corgi" | "SHARP Spitz" | "SHARP Akita" | "SHARP Borzoi")
@@ -12,6 +14,10 @@ case `module_id` in
12 "Generic OMAP1510/1610/1710") 14 "Generic OMAP1510/1610/1710")
13 /usr/bin/mbinputmgr & 15 /usr/bin/mbinputmgr &
14 ;; 16 ;;
17 "ARM-IntegratorCP")
18 /usr/bin/mbinputmgr &
19 SHOWCURSOR="yes"
20 ;;
15esac 21esac
16 22
17## All this should be done by themeing/xsettings.. ## 23## All this should be done by themeing/xsettings.. ##
@@ -32,6 +38,6 @@ matchbox-panel --orientation east \
32 --default-apps mb-applet-home,mb-applet-clock,mb-applet-battery & 38 --default-apps mb-applet-home,mb-applet-clock,mb-applet-battery &
33 39
34## eek ugly no cursor hack - transparent theme should do this 40## eek ugly no cursor hack - transparent theme should do this
35exec matchbox-window-manager -theme Clearlooks -use_cursor no $@ 41exec matchbox-window-manager -theme Clearlooks -use_cursor $SHOWCURSOR $@
36 42
37 43
diff --git a/openembedded/packages/matchbox-poky/matchbox-poky_0.1.bb b/openembedded/packages/matchbox-poky/matchbox-poky_0.1.bb
index 5cc114666b..c2e3e3282c 100644
--- a/openembedded/packages/matchbox-poky/matchbox-poky_0.1.bb
+++ b/openembedded/packages/matchbox-poky/matchbox-poky_0.1.bb
@@ -2,7 +2,7 @@ DESCRIPTION = "Custom MB session files for poky"
2LICENSE = "GPL" 2LICENSE = "GPL"
3SECTION = "x11" 3SECTION = "x11"
4RDEPENDS = "matchbox matchbox-applet-startup-monitor gtk-theme-clearlooks" 4RDEPENDS = "matchbox matchbox-applet-startup-monitor gtk-theme-clearlooks"
5PR = "r12" 5PR = "r13"
6 6
7SRC_URI = "file://etc" 7SRC_URI = "file://etc"
8S = ${WORKDIR} 8S = ${WORKDIR}