diff options
| -rw-r--r-- | meta/packages/matchbox-sato/matchbox-session-sato/session | 9 | ||||
| -rw-r--r-- | meta/packages/matchbox-sato/matchbox-session-sato_0.1.bb | 19 |
2 files changed, 25 insertions, 3 deletions
diff --git a/meta/packages/matchbox-sato/matchbox-session-sato/session b/meta/packages/matchbox-sato/matchbox-session-sato/session index 010772a8c4..68aacd1d5f 100644 --- a/meta/packages/matchbox-sato/matchbox-session-sato/session +++ b/meta/packages/matchbox-sato/matchbox-session-sato/session | |||
| @@ -10,6 +10,13 @@ fi | |||
| 10 | 10 | ||
| 11 | matchbox-desktop & | 11 | matchbox-desktop & |
| 12 | 12 | ||
| 13 | matchbox-panel --titlebar --start-applets showdesktop,windowselector --end-applets clock,battery,systray,startup-notify,notify & | 13 | # Lines containing feature-[foo] are removed at build time if the machine |
| 14 | # doesn't have the feature "foo". | ||
| 15 | |||
| 16 | START_APPLETS=showdesktop,windowselector | ||
| 17 | END_APPLETS=clock,battery,systray,startup-notify,notify | ||
| 18 | END_APPETS=openmoko-panel-gsm,$APPLETS # feature-phone | ||
| 19 | |||
| 20 | matchbox-panel --titlebar --start-applets $START_APPLETS --end-applets $END_APPLETS & | ||
| 14 | 21 | ||
| 15 | exec matchbox-window-manager -theme Sato -use_desktop_mode decorated -use_cursor $SHOWCURSOR $@ | 22 | exec matchbox-window-manager -theme Sato -use_desktop_mode decorated -use_cursor $SHOWCURSOR $@ |
diff --git a/meta/packages/matchbox-sato/matchbox-session-sato_0.1.bb b/meta/packages/matchbox-sato/matchbox-session-sato_0.1.bb index 76c8797d4f..4d208ddb70 100644 --- a/meta/packages/matchbox-sato/matchbox-session-sato_0.1.bb +++ b/meta/packages/matchbox-sato/matchbox-session-sato_0.1.bb | |||
| @@ -2,14 +2,29 @@ DESCRIPTION = "Custom MB session files for poky" | |||
| 2 | LICENSE = "GPL" | 2 | LICENSE = "GPL" |
| 3 | SECTION = "x11" | 3 | SECTION = "x11" |
| 4 | RDEPENDS = "formfactor gtk-sato-engine matchbox-theme-sato gtk-theme-sato matchbox-panel-2 matchbox-desktop-sato initscripts matchbox-session" | 4 | RDEPENDS = "formfactor gtk-sato-engine matchbox-theme-sato gtk-theme-sato matchbox-panel-2 matchbox-desktop-sato initscripts matchbox-session" |
| 5 | PR = "r24" | 5 | PR = "r25" |
| 6 | |||
| 7 | # This package is architecture specific because the session script is modified | ||
| 8 | # based on the machine architecture. | ||
| 9 | PACKAGE_ARCH = "${MACHINE_ARCH}" | ||
| 6 | 10 | ||
| 7 | SRC_URI = "file://session" | 11 | SRC_URI = "file://session" |
| 8 | S = "${WORKDIR}" | 12 | S = "${WORKDIR}" |
| 9 | 13 | ||
| 10 | do_install() { | 14 | do_install() { |
| 15 | # This is the set of machine features that the script has markers for | ||
| 16 | FEATURES="phone" | ||
| 17 | SCRIPT="${S}/sedder" | ||
| 18 | rm -f $SCRIPT | ||
| 19 | touch $SCRIPT | ||
| 20 | for FEAT in $FEATURES; do | ||
| 21 | if echo ${MACHINE_FEATURES} | awk "/$FEAT/ {exit 1}"; then | ||
| 22 | echo "/feature-$FEAT/d" >> $SCRIPT | ||
| 23 | fi | ||
| 24 | done | ||
| 25 | |||
| 11 | install -d ${D}/${sysconfdir}/matchbox | 26 | install -d ${D}/${sysconfdir}/matchbox |
| 12 | install -m 0755 ${S}/session ${D}/${sysconfdir}/matchbox/ | 27 | sed -f "$SCRIPT" ${S}/session > ${D}/${sysconfdir}/matchbox/session |
| 13 | } | 28 | } |
| 14 | 29 | ||
| 15 | pkg_postinst_${PN} () { | 30 | pkg_postinst_${PN} () { |
