diff options
author | Koen Kooi <koen@openembedded.org> | 2007-12-18 15:17:02 +0000 |
---|---|---|
committer | Koen Kooi <koen@openembedded.org> | 2007-12-18 15:17:02 +0000 |
commit | 9e7021307a438de709cd45f474454b7d58353b66 (patch) | |
tree | c6941fe9c89f2300d62e1b6c1ffb4d017a2d67b1 /packages/images | |
parent | fe0ea02e82f9d3e46513095d84cf6be560edd6f4 (diff) |
poky-base-image: add an image that offers a basic "poky" gui, and its dependencies
* untested, needs work
* has a workaround to not require formfactor for touchscreen detection
Diffstat (limited to 'packages/images')
-rw-r--r-- | packages/images/poky-base-image.bb | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/packages/images/poky-base-image.bb b/packages/images/poky-base-image.bb new file mode 100644 index 0000000000..0980fc46bf --- /dev/null +++ b/packages/images/poky-base-image.bb @@ -0,0 +1,29 @@ +DISTRO_SSH_DAEMON ?= "dropbear" +DISTRO_PACKAGE_MANAGER ?= "ipkg ipkg-collateral" + +IMAGE_INSTALL = "\ + task-base-extended \ + ${DISTRO_SSH_DAEMON} \ + ${DISTRO_PACKAGE_MANAGER} \ + pointercal \ + matchbox-wm \ + matchbox-keyboard matchbox-keyboard-applet matchbox-keyboard-im \ + matchbox-desktop \ + ${XSERVER} \ + xserver-kdrive-common xserver-nodm-init \ + ttf-liberation \ + xauth xhost xset xrandr \ + matchbox-sato \ + matchbox-config-gtk \ + matchbox-themes-gtk \ + matchbox-applet-startup-monitor \ + xcursor-transparent-theme \ + sato-icon-theme \ + settings-daemon \ +" + +export IMAGE_BASENAME = "poky-base-image" +IMAGE_LINGUAS = "" + +inherit image + |