aboutsummaryrefslogtreecommitdiffstats
path: root/meta-systemd/oe-core
AgeCommit message (Collapse)Author
2013-04-15recipes: Unify indentationMartin Jansa
* 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>
2013-04-15busybox: fix upgrade pathMartin Jansa
* check_data_file_clashes: Package busybox-syslog wants to install file /lib/systemd/system/busybox-syslog.service But that file is already provided by package * busybox-syslog-systemd * check_data_file_clashes: Package busybox-syslog wants to install file /lib/systemd/system/syslog.service But that file is already provided by package * busybox-syslog-systemd * check_data_file_clashes: Package busybox-syslog wants to install file /lib/systemd/system/busybox-klogd.service But that file is already provided by package * busybox-syslog-systemd Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2013-04-15dbus: add bbappend to fix upgrade pathMartin Jansa
* check_data_file_clashes: Package dbus-1 wants to install file /lib/systemd/system/multi-user.target.wants/dbus.service But that file is already provided by package * dbus-systemd * check_data_file_clashes: Package dbus-1 wants to install file /lib/systemd/system/dbus.socket But that file is already provided by package * dbus-systemd * check_data_file_clashes: Package dbus-1 wants to install file /lib/systemd/system/sockets.target.wants/dbus.socket But that file is already provided by package * dbus-systemd Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2013-04-15systemd: add .bbappend to fix upgrade-pathMartin Jansa
* check_data_file_clashes: Package udev wants to install file /lib/systemd/system/sysinit.target.wants/systemd-udevd.service But that file is already provided by package * udev-systemd * check_data_file_clashes: Package udev wants to install file /lib/systemd/system/sysinit.target.wants/systemd-udev-trigger.service But that file is already provided by package * udev-systemd * check_data_file_clashes: Package udev wants to install file /lib/systemd/system/systemd-udevd.service But that file is already provided by package * udev-systemd * check_data_file_clashes: Package udev wants to install file /lib/systemd/system/systemd-udev-settle.service But that file is already provided by package * udev-systemd * check_data_file_clashes: Package udev wants to install file /lib/systemd/system/systemd-udev-trigger.service But that file is already provided by package * udev-systemd * check_data_file_clashes: Package udev wants to install file /lib/systemd/system/sockets.target.wants/systemd-udevd-control.socket But that file is already provided by package * udev-systemd * check_data_file_clashes: Package udev wants to install file /lib/systemd/system/sockets.target.wants/systemd-udevd-kernel.socket But that file is already provided by package * udev-systemd * check_data_file_clashes: Package udev wants to install file /lib/systemd/system/systemd-udevd-control.socket But that file is already provided by package * udev-systemd * check_data_file_clashes: Package udev wants to install file /lib/systemd/system/systemd-udevd-kernel.socket But that file is already provided by package * udev-systemd Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2013-04-15at: move bbappend to oe-core subdirectoryMartin Jansa
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2013-04-15rpcbind: move bbappend to oe-core subdirectoryMartin Jansa
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2013-04-15busybox: move bbappend to oe-core subdirectoryMartin Jansa
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2013-04-15dropbear: move bbappend to oe-core subdirectoryMartin Jansa
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2013-04-15keymaps: move bbappend to oe-core subdirectoryMartin Jansa
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2013-04-15openssh: fix warnings about overwritting keysMartin Jansa
* they were causing real issues like openssh-sshd-systemd not really RPROVIDED.. WARNING: Variable key RCONFLICTS_${PN}-sshd (dropbear) replaces original key RCONFLICTS_openssh-sshd ( openssh-sshd-systemd). WARNING: Variable key FILES_${PN}-sshd (${sbindir}/sshd ${sysconfdir}/init.d/sshd ${sysconfdir}/ssh/moduli ${sysconfdir}/ssh/sshd_config) replaces original key FILES_openssh-sshd ( ${systemd_unitdir}/system/sshd.socket). WARNING: Variable key RPROVIDES_${PN}-sshd (sshd) replaces original key RPROVIDES_openssh-sshd ( openssh-sshd-systemd). Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2013-04-12meta-systemd: Add not only RPROVIDES, but also RREPLACES/RCONFLICTSMartin Jansa
with this combo opkg should automatically remove PN-systemd and replace it with PN
2013-04-12meta-systemd: bump PRINC in all .bbappendsMartin Jansa
* opkg upgrade will fail to upgrade every package PN when PN-system is installed * check_data_file_clashes: Package xserver-nodm-init wants to install file /lib/systemd/system/xserver-nodm.service But that file is already provided by package * xserver-nodm-init-systemd You need to manually remove all PN-systemd packages on your target opkg remove -force-depends -force-remove `opkg list-installed | grep "\-systemd"` be careful with stuff like openssh-sshd-systemd or wpa-supplicant-systemd when you have access to target only over network * this PRINC bump will force you to do it now even for people not using OEBasicHash or PR service Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2013-04-12meta-systemd: move cronie to oe-core subdirectoryMartin Jansa
2013-04-12meta-systemd: drop default SYSTEMD_PACKAGES = "${PN}"Martin Jansa
2013-04-12meta-systemd: Append ${PN} to SYSTEMD_SERVICEKhem Raj
When using systemd class from OE-Core we also need to install the units explicitly. systemd packages ending with -systemd are consumed and now provided by package proper. MJ: fix RPROVIDES_PN = PN-systemd in entrance MJ: add RPROVIDES for ntp*-systemd in ntp MJ: the same for wpa-supplicant Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2013-03-18wpa_supplicant: Location of systemd services files changedJukka Rissanen
Signed-off-by: Jukka Rissanen <jukka.rissanen@linux.intel.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2013-03-12connman: rename .bbappend to match new version from oe-coreMartin Jansa
* drop settings already set in connman.inc Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2013-03-05meta-systemd: restore wpa-supplicant bbappendMartin Jansa
* systemd support in oe-core does not work for everybody Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2013-01-28meta-systemd: openssh: rename bbappend to match oe-core version 6.1p1Martin Jansa
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2013-01-28util-linux: follow oe-core to 2.22.2Andreas Müller
Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com>
2013-01-28dhcp: follow oe-core to 4.2.5Andreas Müller
Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com>
2013-01-27meta-systemd: remove wpa-supplicant bbappendMartin Jansa
* oe-core now has wpa-supplicant 2.0, but also installs wpa_supplicant.service to PN * feel free to add new bbappend with only systemd inherit and updated SYSTEMD_PACKAGES Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2013-01-17meta-systemd: connman, openssh: move bbappends to oe-core dirMartin Jansa
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2013-01-17portmap: Add systemd serviceAndrei Gherzan
Signed-off-by: Andrei Gherzan <andrei.gherzan@windriver.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2013-01-17ofono: Package systemd serviceAndrei Gherzan
Signed-off-by: Andrei Gherzan <andrei.gherzan@windriver.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2013-01-17bluez4: Package systemd serviceAndrei Gherzan
Signed-off-by: Andrei Gherzan <andrei.gherzan@windriver.com> Acked-by: Andreas Müller <schnitzeltony@googlemail.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2013-01-08dhclient.service: Rearrange the cmdline for dhclientKhem Raj
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2013-01-08dhcp: Add systemd unit file for dhclientKhem Raj
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2012-12-26libpam: update bbappend to match new oe-core versionMartin Jansa
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2012-12-26meta-systemd: move libpam bbappend to oe-core prefixMartin Jansa
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2012-12-16wpa-supplicant, gcc-common-4.6, packagegroup-qte-toolchain-target: use ↵Martin Jansa
correct PRINC form Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2012-12-14lighttpd: follow oe-core to 1.4.32Andreas Müller
Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2012-12-11util-linux: add meta-systemd bbappend for new version which installs ↵Martin Jansa
uuidd.service and socket * fixes: util-linux-2.22.1: util-linux: Files/directories were installed but not shipped /lib/systemd /lib/systemd/system /lib/systemd/system/uuidd.socket /lib/systemd/system/uuidd.service Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2012-11-29dhcp: rename bbappend to match new version from oe-core and move to oe-core ↵Martin Jansa
prefix Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2012-11-13lighttpd: move systemd appends since recipe is in oe-coreAndreas Müller
2012-09-04avahi: use systemd.bbclass for avahi-systemdSander van Grieken
The original behaviour is to enable the service in the package postinst phase. This patch will enable the service also when building the rootfs, so it fixes the case when no package-management is enabled. It also now delegates systemd enablement to the systemd bbclass, instead of using explicit code in the recipe itself. Signed-off-by: Sander van Grieken <sander@outrightsolutions.nl> Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
2012-08-21wpa-supplicant: add systemd supportAndreas Müller
* native systemd support came in with v1.0 [1] * needs [2] to work properly * mends my wlan under control of networkmanager [1] http://hostap.epitest.fi/gitweb/gitweb.cgi?p=hostap-1.git;a=blob_plain;f=wpa_supplicant/ChangeLog [2] http://patches.openembedded.org/patch/34335/ Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com> Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
2012-08-20pulseaudio: remove bbappendAndreas Müller
oe-core has updated to 2.1 which includes the appended patch Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2012-07-19meta-systemd: pulseaudio: rename bbappend to match new oe-core versionMartin Jansa
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2012-07-19pulseaudio: add patch to fix build with new udev API provided by systemd recipeMartin Jansa
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>