diff options
author | Martin Jansa <Martin.Jansa@gmail.com> | 2011-04-10 13:24:47 +0200 |
---|---|---|
committer | Martin Jansa <Martin.Jansa@gmail.com> | 2011-04-10 14:43:41 +0200 |
commit | 89500c583e0f1dc1b4ffdf72914e08e505e427e0 (patch) | |
tree | b073036cc61aa34ca5ac9eec4d617366e0dcb3d5 /meta-oe/recipes-graphics/xserver-nodm-init/xserver-nodm-init_2.0.bb | |
parent | e66079da37992abd54486488aa06a99bf7a4198c (diff) | |
download | meta-openembedded-89500c583e0f1dc1b4ffdf72914e08e505e427e0.tar.gz |
recipes,classes: import a lot of recipes from meta-shr
* tested on shr-lite-image for om-gta02 and nokia900 (with meta-shr layer)
Diffstat (limited to 'meta-oe/recipes-graphics/xserver-nodm-init/xserver-nodm-init_2.0.bb')
-rw-r--r-- | meta-oe/recipes-graphics/xserver-nodm-init/xserver-nodm-init_2.0.bb | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/meta-oe/recipes-graphics/xserver-nodm-init/xserver-nodm-init_2.0.bb b/meta-oe/recipes-graphics/xserver-nodm-init/xserver-nodm-init_2.0.bb new file mode 100644 index 000000000..8310bcd81 --- /dev/null +++ b/meta-oe/recipes-graphics/xserver-nodm-init/xserver-nodm-init_2.0.bb | |||
@@ -0,0 +1,27 @@ | |||
1 | DESCRIPTION = "Simple Xserver Init Script (no dm)" | ||
2 | LICENSE = "GPLv2" | ||
3 | LIC_FILES_CHKSUM = "file://COPYING;md5=751419260aa954499f7abaabaa882bbe" | ||
4 | SECTION = "x11" | ||
5 | PRIORITY = "optional" | ||
6 | RDEPENDS_${PN} = "xserver-common (>= 1.30) xinit" | ||
7 | DEFAULT_PREFERENCE = "-1" | ||
8 | PR = "r4" | ||
9 | |||
10 | SRC_URI = "file://xserver-nodm \ | ||
11 | file://gplv2-license.patch \ | ||
12 | " | ||
13 | S = ${WORKDIR} | ||
14 | |||
15 | PACKAGE_ARCH = "all" | ||
16 | |||
17 | do_install() { | ||
18 | install -d ${D}/etc | ||
19 | install -d ${D}/etc/init.d | ||
20 | install xserver-nodm ${D}/etc/init.d | ||
21 | } | ||
22 | |||
23 | inherit update-rc.d | ||
24 | |||
25 | INITSCRIPT_NAME = "xserver-nodm" | ||
26 | INITSCRIPT_PARAMS = "start 01 5 2 . stop 01 0 1 6 ." | ||
27 | INITSCRIPT_PARAMS_shr = "start 90 5 2 . stop 90 0 1 6 ." | ||