summaryrefslogtreecommitdiff
path: root/recipes-graphics/wayland/weston-init.bbappend
blob: 1ba5ed4c03712b84481b5232f2e34214aa48e990 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
INI_UNCOMMENT_ASSIGNMENTS:append:mx8 = " \
    use-g2d=1 \
"


uncomment() {
    # already uncommented, do nothing
    if ! (grep "^$1" $2); then
        if ! (grep "^#$1" $2); then
            bbfatal "Commented setting '#$1' not found in file $2"
        fi
        sed -i -e 's,^#'"$1"','"$1"',g' $2
    fi
}


configure_noidle() {
    sed -i '/idle-time=0/d' ${D}${sysconfdir}/xdg/weston/weston.ini
    sed -i '/^\[core\]/a idle-time=0' ${D}${sysconfdir}/xdg/weston/weston.ini
}

# Prevent weston from going to sleep
do_install:append:upstream() {
    configure_noidle
}

configure_pixman() {
    sed -i '/use-pixman=true/d' ${D}${sysconfdir}/xdg/weston/weston.ini
    sed -i '/^\[core\]/a use-pixman=true' ${D}${sysconfdir}/xdg/weston/weston.ini
}

# With upstream weston and modules without GPU weston uses a lot of
# cpu time and becomes very unresponsive. Setting use-pixman=true works
# around it.
do_install:append:upstream:colibri-imx6ull() {
    configure_pixman
}

do_install:append:upstream:colibri-imx6ull-emmc() {
    configure_pixman
}

do_install:append:upstream:colibri-imx7() {
    configure_pixman
}

do_install:append:upstream:colibri-imx7-emmc() {
    configure_pixman
}