summaryrefslogtreecommitdiffstats
path: root/recipes-core/sysvinit
Commit message (Collapse)AuthorAgeFilesLines
* sysvinit: sync bbappend to 3.0Yi Zhao2021-11-222-4/+0
| | | | | | | | The sysvinit in oe-core has been upgraded to 3.0. Update the bbappend to adapt it. Signed-off-by: Yi Zhao <yi.zhao@windriver.com> Signed-off-by: Joe MacDonald <joe@deserted.net>
* meta-selinux: convert to new override syntaxYi Zhao2021-08-041-1/+1
| | | | | | | | | | This is the result of automated script conversion: poky/scripts/contrib/convert-overrides.py meta-selinux Converting the metadata to use ":" as the override character instead of "_". Signed-off-by: Yi Zhao <yi.zhao@windriver.com> Signed-off-by: Joe MacDonald <joe@deserted.net>
* sysvinit: sync bbappend to 2.96hongxu2019-12-193-74/+1
| | | | | | | | Since oe-core upgrades sysvinit to 2.96, wildcard its bbappend and drop the backported patch Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com> Signed-off-by: Joe MacDonald <joe_macdonald@mentor.com>
* Refactor to conform to YP Compat requirementsMark Hatle2017-09-143-14/+12
| | | | | | | | | | Change the references to check for the distribution flag of 'selinux' being set before taking any action within the bbappends. This prevents the signature from being modified. Also remove PR changes, as they are no longer allowed. Signed-off-by: Mark Hatle <mark.hatle@windriver.com>
* packages: inherit selinuxXin Ouyang2013-01-051-3/+5
| | | | Signed-off-by: Xin Ouyang <Xin.Ouyang@windriver.com>
* sysvinit: Fix environment variables override bug.Xin Ouyang2012-04-271-0/+2
| | | | | | | | | | | | | | As we have specified "-e MAKEFLAGS= " to make, environment variables will override variables in the top makefile but not subdir makefiles. Current bb uses sysvinit-xxx/src as ${B}, the environment variable CPPFLAGS would override all "CPPFLAGS" lines in sysvinit-xxx/src/Makefile. Such as "CPPFLAGS+= -DACCTON_OFF", "CPPFLAGS += $(SELINUX_DEF)" and "CPPFLAGS += -DINIT_MAIN". This causes some sections(#ifdef INIT_MAIN/WITH_SELINUX ... #endif) will never be used.
* sysvinit: bbappend to build with libselinux.Xin Ouyang2012-04-172-0/+81
Also a patch from sysvinit upstream to fix selinux init.