diff --git a/meta-ohos-core/recipes-graphics/wayland/weston-init/weston-start b/meta-ohos-core/recipes-graphics/wayland/weston-init/weston-start new file mode 100755 index 0000000000000000000000000000000000000000..117225d8df6d0a32f003fdbe59c324d227401ed5 --- /dev/null +++ b/meta-ohos-core/recipes-graphics/wayland/weston-init/weston-start @@ -0,0 +1,94 @@ +#!/bin/sh +# Copyright (C) 2016 O.S. Systems Software LTDA. +# Copyright (C) 2016 Freescale Semiconductor + +export PATH="/sbin:/usr/sbin:/bin:/usr/bin" + +usage() { + cat <<EOF + $0 [<openvt arguments>] [-- <weston options>] +EOF +} + +## Module support +modules_dir=@DATADIR@/weston-start + +# Add weston extra argument +add_weston_argument() { + weston_args="$weston_args $1" +} + +# Add openvt extra argument +add_openvt_argument() { + openvt_args="$openvt_args $1" +} + +## Add module to --modules argument +add_weston_module() { + if [[ "x${weston_modules}" == "x" ]]; then + weston_modules="--modules " + fi; + weston_modules+="${1}," +} + + +if [ -n "$WAYLAND_DISPLAY" ]; then + echo "ERROR: A Wayland compositor is already running, nested Weston instance is not supported yet." + exit 1 +fi + +if [ -n "$WESTON_USER" ]; then + if [ -z "$WESTON_TTY" ]; then + echo "ERROR: If you have WESTON_USER variable set, you also need WESTON_TTY." + exit 1 + fi + weston_args_user="-u $WESTON_USER -t $WESTON_TTY" +fi + +if [ -n "$DISPLAY" ]; then + launcher="weston" +else + launcher="weston-launch $weston_args_user --" +fi + +openvt_args="-s" +while [ -n "$1" ]; do + if [ "$1" = "--" ]; then + shift + break + fi + openvt_args="$openvt_args $1" + shift +done + +weston_args=$* + +# Load and run modules +if [ -d "$modules_dir" ]; then + for m in "$modules_dir"/*; do + # Skip backup files + if [ "`echo $m | sed -e 's/\~$//'`" != "$m" ]; then + continue + fi + + # process module + . $m + done + if [[ x"{$weston_modules}" != "x" ]]; then + add_weston_argument "${weston_modules}" + fi; +fi + +if test -z "$XDG_RUNTIME_DIR"; then + export XDG_RUNTIME_DIR=/run/user/`id -u ${WESTON_USER}` + if ! test -d "$XDG_RUNTIME_DIR"; then + mkdir --parents $XDG_RUNTIME_DIR + chmod 0700 $XDG_RUNTIME_DIR + fi + if [ -n "$WESTON_USER" ] + then + chown $WESTON_USER:$WESTON_USER $XDG_RUNTIME_DIR + fi +fi + +exec openvt $openvt_args -- $launcher $weston_args --log=@LOCALSTATEDIR@/log/weston.log diff --git a/meta-ohos-core/recipes-graphics/wayland/weston-init/weston@.service b/meta-ohos-core/recipes-graphics/wayland/weston-init/weston@.service index f59537be57d93d2a08416d214b81de4a51fab7d6..70c706d75ceaaf6416e8715b091b6c41abd01cca 100644 --- a/meta-ohos-core/recipes-graphics/wayland/weston-init/weston@.service +++ b/meta-ohos-core/recipes-graphics/wayland/weston-init/weston@.service @@ -18,4 +18,4 @@ StandardError=journal PermissionsStartOnly=true IgnoreSIGPIPE=no -ExecStart=/usr/bin/weston-start -v -e -- $OPTARGS --modules=systemd-notify.so +ExecStart=/usr/bin/weston-start -v -e -- $OPTARGS diff --git a/meta-ohos-core/recipes-graphics/wayland/weston/systemd-notify.weston-start b/meta-ohos-core/recipes-graphics/wayland/weston/systemd-notify.weston-start new file mode 100644 index 0000000000000000000000000000000000000000..fdb48cb6094ba187cc8be2b3f6ed2ba0f0741358 --- /dev/null +++ b/meta-ohos-core/recipes-graphics/wayland/weston/systemd-notify.weston-start @@ -0,0 +1,9 @@ +#!/bin/sh + +# SPDX-FileCopyrightText: Huawei Inc. +# SPDX-License-Identifier: Apache-2.0 + + +if [[ -x "/usr/lib/weston/systemd-notify.so" ]]; then + add_weston_module "systemd-notify.so" +fi diff --git a/meta-ohos-core/recipes-graphics/wayland/weston/xwayland.weston-start b/meta-ohos-core/recipes-graphics/wayland/weston/xwayland.weston-start new file mode 100644 index 0000000000000000000000000000000000000000..22984f50a43db02c1a86f88a7b45351acbbc4f40 --- /dev/null +++ b/meta-ohos-core/recipes-graphics/wayland/weston/xwayland.weston-start @@ -0,0 +1,6 @@ +#!/bin/sh + +if type Xwayland >/dev/null 2>/dev/null; then + mkdir -p /tmp/.X11-unix + add_weston_module "xwayland.so" +fi diff --git a/meta-ohos-core/recipes-graphics/wayland/weston_8.0.0.bbappend b/meta-ohos-core/recipes-graphics/wayland/weston_8.0.0.bbappend new file mode 100644 index 0000000000000000000000000000000000000000..dd347610a7eb825eb321a8b1401a8cc096491f91 --- /dev/null +++ b/meta-ohos-core/recipes-graphics/wayland/weston_8.0.0.bbappend @@ -0,0 +1,9 @@ +# SPDX-FileCopyrightText: Huawei Inc. +# SPDX-License-Identifier: Apache-2.0 + +FILESEXTRAPATHS_prepend := "${THISDIR}/${PN}:" + +SRC_URI += "file://systemd-notify.weston-start" +do_install_append() { + install -Dm 644 ${WORKDIR}/systemd-notify.weston-start ${D}${datadir}/weston-start/systemd-notify +}