blob: 9fd066c44ff40a6c4745ebc10e0f3a921efee2e4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
SUMMARY = "SELinux autorelabel script"
DESCRIPTION = "\
Script to reset SELinux labels on the root file system when /.autorelabel \
file is present.\
"
LICENSE = "MIT"
LIC_FILES_CHKSUM = "file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420"
RDEPENDS:${PN} = " \
policycoreutils-setfiles \
"
SRC_URI = "file://${BPN}.sh \
file://${BPN}.service \
"
INITSCRIPT_PARAMS = "start 01 S ."
require selinux-initsh.inc
do_install:append() {
if ${@bb.utils.contains('FIRST_BOOT_RELABEL', '1', 'true', 'false', d)}; then
echo "# first boot relabelling" > ${D}/.autorelabel
fi
}
|