diff options
author | 2015-10-12 20:32:03 +0100 | |
---|---|---|
committer | 2015-10-12 20:32:03 +0100 | |
commit | bf03113a1d69ac077eb7ea1145aeb277804e0a4c (patch) | |
tree | 5b946921345610870d762d057eb4fec279ce4c12 | |
parent | 6499c30bb3413fabe9f023d9a8c9cecbbed9127d (diff) | |
download | meta-qcom-bf03113a1d69ac077eb7ea1145aeb277804e0a4c.tar.gz meta-qcom-bf03113a1d69ac077eb7ea1145aeb277804e0a4c.tar.bz2 meta-qcom-bf03113a1d69ac077eb7ea1145aeb277804e0a4c.zip |
weston-chromium-image: add sample image for Chromium on Wayland
Includes Chromium on Wayland using ozone plugin, and also:
* pam support to run chromium/weston as normal user
* systemd
* connman for easier network management
* resize2fs to extend the image size to the full partition size
Signed-off-by: Nicolas Dechesne <nicolas.dechesne@linaro.org>
-rw-r--r-- | recipes-graphics/images/weston-chromium-image.bb | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/recipes-graphics/images/weston-chromium-image.bb b/recipes-graphics/images/weston-chromium-image.bb new file mode 100644 index 0000000..c5802af --- /dev/null +++ b/recipes-graphics/images/weston-chromium-image.bb @@ -0,0 +1,18 @@ +SUMMARY = "Basic Wayland image with Chromium/Wayland" + +IMAGE_FEATURES += "splash package-management ssh-server-dropbear hwcodecs" + +LICENSE = "MIT" + +inherit core-image distro_features_check extrausers + +# let's make sure we have a good image.. +REQUIRED_DISTRO_FEATURES = "wayland pam systemd" + +CORE_IMAGE_BASE_INSTALL += "weston weston-examples gtk+3-demo clutter-1.0-examples \ + e2fsprogs-resize2fs chromium kernel-modules connman" + +EXTRA_USERS_PARAMS = "\ +useradd -p '' linaro; \ +usermod -a -G weston-launch linaro; \ +" |