summaryrefslogtreecommitdiffstats
path: root/meta-agl/recipes-graphics/wayland/Readme.weston-ini-conf
blob: eb30a9a96e0322ff4762a7bcbf3cf0fd24b7449d (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
#Generate a weston.ini file:

To generate the weston.ini file:

'''
[core]
backend=drm-backend.so
shell=desktop-shell.so
'''

Just create a Variable Flag:

'''
WESTONCORE[backend]??="drm-backend.so"
WESTONCORE[shell]??="desktop-shell.so"
'''

And add it to the Variable Flag WESTONSECTION, with the name of the section:
'''
WESTONSECTION[WESTONCORE]?="core"
'''

#You can custumize weston.ini by create a weston-ini-conf.bbappend:

'''
WESTONCORE[repaint-window] ??= "34"
'''

This will generate weston.ini file:

'''
[core]
backend=drm-backend.so
shell=ivi-shell.so
repaint-window=34
'''