summaryrefslogtreecommitdiffstats
path: root/recipes-core/sysvinit
Commit message (Collapse)AuthorAgeFilesLines
* 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.