adding eGalax screen support for demo
[AGL/meta-agl.git] / meta-agl / recipes-graphics / wayland / Readme.weston-ini-conf
1 #Generate a weston.ini file:
2
3 # WARNING Due to a bug in Yocto cache, changes in related bbappand are not detected
4 # Work-around:
5 #   bitbake weston-ini-conf -c clean ; bitbake weston-ini-conf -c cleansstate
6
7 To generate the weston.ini file:
8
9 '''
10 [core]
11 backend=drm-backend.so
12 shell=desktop-shell.so
13 '''
14
15 Just create a Variable Flag:
16
17 '''
18 WESTONCORE[backend]??="drm-backend.so"
19 WESTONCORE[shell]??="desktop-shell.so"
20 '''
21
22 And add it to the Variable Flag WESTONSECTION, with the name of the section:
23 '''
24 WESTONSECTION[WESTONCORE]?="core"
25 '''
26
27 #You can custumize weston.ini by create a weston-ini-conf.bbappend:
28
29 '''
30 WESTONCORE[repaint-window] ??= "34"
31 '''
32
33 This will generate weston.ini file:
34
35 '''
36 [core]
37 backend=drm-backend.so
38 shell=ivi-shell.so
39 repaint-window=34
40 '''