diff options
author | Laurentiu Palcu <laurentiu.palcu@intel.com> | 2012-12-18 14:06:52 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-12-19 17:55:02 +0000 |
commit | ccc394e7c6d3405b87fe862e50485f548b735da3 (patch) | |
tree | d37a9da05c5464beb33917856bbbafa3f059f0b6 /meta/recipes-sato/matchbox-sato/matchbox-session-sato | |
parent | bb0a66cc7ec9adaf7c9d175656bca2976e41f7e5 (diff) | |
download | poky-ccc394e7c6d3405b87fe862e50485f548b735da3.tar.gz |
matchbox-session-sato: use a proper schema file
Also, inheriting gconf.bbclass will allow for the schema registration to
be done at do_rootfs time.
[YOCTO #3603]
(From OE-Core rev: a19592b684d482a7c011495f1c761f38c316319a)
Signed-off-by: Laurentiu Palcu <laurentiu.palcu@intel.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-sato/matchbox-sato/matchbox-session-sato')
-rw-r--r-- | meta/recipes-sato/matchbox-sato/matchbox-session-sato/matchbox-session-sato.schemas | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/meta/recipes-sato/matchbox-sato/matchbox-session-sato/matchbox-session-sato.schemas b/meta/recipes-sato/matchbox-sato/matchbox-session-sato/matchbox-session-sato.schemas new file mode 100644 index 0000000000..f5b770b62f --- /dev/null +++ b/meta/recipes-sato/matchbox-sato/matchbox-session-sato/matchbox-session-sato.schemas | |||
@@ -0,0 +1,53 @@ | |||
1 | <?xml version="1.0"?> | ||
2 | <gconfschemafile> | ||
3 | <schemalist> | ||
4 | |||
5 | <schema> | ||
6 | <key>/schemas/desktop/poky/interface/theme</key> | ||
7 | <applyto>/desktop/poky/interface/theme</applyto> | ||
8 | <type>string</type> | ||
9 | <owner>matchbox-session-sato</owner> | ||
10 | <default>Sato</default> | ||
11 | <locale name="C"> | ||
12 | <short>Desktop theme</short> | ||
13 | <long>The theme name for Matchbox and Sato to use.</long> | ||
14 | </locale> | ||
15 | </schema> | ||
16 | |||
17 | <schema> | ||
18 | <key>/schemas/desktop/poky/interface/icon_theme</key> | ||
19 | <applyto>/desktop/poky/interface/icon_theme</applyto> | ||
20 | <type>string</type> | ||
21 | <owner>matchbox-session-sato</owner> | ||
22 | <default>Sato</default> | ||
23 | <locale name="C"> | ||
24 | <short>Desktop icon theme</short> | ||
25 | <long>The icon theme name for Matchbox and Sato.</long> | ||
26 | </locale> | ||
27 | </schema> | ||
28 | |||
29 | <schema> | ||
30 | <key>/schemas/desktop/poky/interface/touchscreen</key> | ||
31 | <applyto>/desktop/poky/interface/touchscreen</applyto> | ||
32 | <type>bool</type> | ||
33 | <owner>matchbox-session-sato</owner> | ||
34 | <default>true</default> | ||
35 | <locale name="C"> | ||
36 | <short>Activate touchscreen</short> | ||
37 | </locale> | ||
38 | </schema> | ||
39 | |||
40 | <schema> | ||
41 | <key>/schemas/desktop/poky/interface/font_name</key> | ||
42 | <applyto>/desktop/poky/interface/font_name</applyto> | ||
43 | <type>string</type> | ||
44 | <owner>matchbox-session-sato</owner> | ||
45 | <default>Sans 9</default> | ||
46 | <locale name="C"> | ||
47 | <short>Font name</short> | ||
48 | </locale> | ||
49 | </schema> | ||
50 | |||
51 | </schemalist> | ||
52 | </gconfschemafile> | ||
53 | |||