summaryrefslogtreecommitdiffstats
path: root/meta-oe/recipes-graphics/xserver-nodm-init
Commit message (Collapse)AuthorAgeFilesLines
* recipes: convert remaining SUMMARY/DESCRIPTION cosmetic issuesMatthieu CRAPET2014-02-231-1/+1
| | | | | | | | | | | | | Changes: - rename SUMMARY with length > 80 to DESCRIPTION - rename DESCRIPTION with length < 80 to (non present tag) SUMMARY - drop final point character at the end of SUMMARY string - remove trailing whitespace of SUMMARY line Note: don't bump PR Signed-off-by: Matthieu Crapet <Matthieu.Crapet@ingenico.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
* xserver-nodm-init: do not execute Xsession twiceJonathan Liu2013-06-201-1/+1
| | | | | | | | | | | The /etc/X11/Xserver script runs xinit /etc/X11/Xsession already so there is no need to do /usr/bin/xinit /etc/X11/Xsession -- /etc/X11/Xserver. Having xinit nested will result in Xsession being executed twice. To resolve this, just execute /etc/X11/Xserver directly instead of going through xinit. Signed-off-by: Jonathan Liu <net147@gmail.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
* xserver-nodm-init: install .service and conf only with systemd in ↵Martin Jansa2013-04-191-4/+7
| | | | | | | | DISTRO_FEATURES * Otavio reported unpackaged files without systemd enabled Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
* recipes: Unify indentationMartin Jansa2013-04-151-6/+6
| | | | | | | | | | | | | | | | | | | | | | | | | * This change is only aesthetic (unlike indentation in Python tasks). * Some recipes were using tabs. * Some were using 8 spaces. * Some were using mix or different number of spaces. * Make them consistently use 4 spaces everywhere. * Yocto styleguide advises to use tabs (but the only reason to keep tabs is the need to update a lot of recipes). Lately this advice was also merged into the styleguide on the OE wiki. * Using 4 spaces in both types of tasks is better because it's less error prone when someone is not sure if e.g. do_generate_toolchain_file() is Python or shell task and also allows to highlight every tab used in .bb, .inc, .bbappend, .bbclass as potentially bad (shouldn't be used for indenting of multiline variable assignments and cannot be used for Python tasks). * Don't indent closing quote on multiline variables we're quite inconsistent wheater it's first character on line under opening quote or under first non-whitespace character in previous line. Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Acked-by: Koen Kooi <koen@dominion.thruhere.net>
* xserver-nodm-init: move systemd support from meta-systemd back to meta-oeMartin Jansa2013-04-153-2/+26
| | | | Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
* xserver-nodm-init: move systemd support to meta-systemdAndreas Müller2012-07-163-24/+2
| | | | | Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
* xserver-nodm-init: add EnvironmentFileMartin Jansa2012-04-103-1/+8
| | | | | | | | | | * used to set HOME variable before /etc/X11/Xsession is started * e.g. enlightenment is creating ${HOME}/.e and without this it ends in /tmp/.e and during startup HOME gets defined and switched to /home/root/.e Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
* xserver-nodm-init: use /etc/X11/Xserver from service file instead of Xorg ↵Denis 'GNUtoo' Carikli2012-04-102-2/+2
| | | | | | | | | | | directly * /etc/X11/Xserver is provided by xserver-common and sets correct DPI before starting Xorg (or other xserver) Signed-off-by: Denis 'GNUtoo' Carikli <GNUtoo@no-log.org> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
* Quoting fixesMartin Jansa2012-02-261-1/+1
| | | | | | | | * We have various variables which are either not quoted at all or are * half quoted. This patch fixes the bad exmaples so everything is consistent. Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
* xserver-nodm-init: remove unneeded systemd codeAndreas Müller2012-02-231-8/+1
| | | | | Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com> Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
* xserver-nodm-init: move systemd service to xserver-nodm-init-systemdOtavio Salvador2012-01-091-16/+14
| | | | | | | Move systemd service to xserver-nodm-init-systemd to be consistent with other packages. Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
* xserver-nodm-init: set USER and HOMEMartin Jansa2011-11-012-1/+8
| | | | | | | | * when it's executed from init then HOME is set to '/' * shadow/agetty set HOME fine and Xinit is doing the same, but for xinit Xsession it didn't work Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
* xserver-nodm-init: exit 1 only if systemd is installed and use ${base_bindir}Otavio Salvador2011-10-111-6/+4
| | | | | Signed-off-by: Otavio Salvador <otavio@ossystems.com.br> Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
* xserver-nodm-init: add optional systemd supportKoen Kooi2011-07-262-6/+30
| | | | Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
* Drop PRIORITY variablePaul Eggleton2011-07-141-1/+0
| | | | | | | | | | | | | | | | As discussed on the mailing list, this variable isn't useful and if wanted would be better implemented by distros using pn-X overrides. This patch executes: find . -regex ".*\.\(bb\|inc\)$" | xargs sed -i '/^PRIORITY = ".*"$/d' against the tree removing the references. Thanks to Phil Blundell for the command. (Prompted by oe-core rev: d122343362669c683acc4af295971a62cbc823fc) Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
* recipes: use allarch.bbclass instead just PACKAGE_ARCH = allMartin Jansa2011-06-021-2/+2
| | | | | | | * otherwise such recipes are rebuilt or reused from sstate after every MACHINE change, because of different checksums see [YOCTO #1075] Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
* recipes,classes: import a lot of recipes from meta-shrMartin Jansa2011-04-103-0/+424
* tested on shr-lite-image for om-gta02 and nokia900 (with meta-shr layer)