mirror of
https://git.yoctoproject.org/poky
synced 2026-06-02 01:19:52 +00:00
initscripts: add /sbin/sushell for systemd service debug-shell
Add file /sbin/sushell for systemd service debug-shell which starts with /bin/sushell when SELinux is enabled. Copy and add sushell file from Fedora 22. Add runtime dependency bash as well when systemd is enabled to eliminate QA warning: WARNING: QA Issue: /sbin/sushell_initscripts contained in package initscripts requires /bin/bash, but no providers found in its RDEPENDS [file-rdeps] (From OE-Core rev: a4b53872a8a9a2743299acbff015f7f2750a69d6) Signed-off-by: Kai Kang <kai.kang@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
@@ -0,0 +1,5 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
[ -z "$SUSHELL" ] && SUSHELL=/bin/bash
|
||||||
|
|
||||||
|
exec $SUSHELL
|
||||||
@@ -33,6 +33,7 @@ SRC_URI = "file://functions \
|
|||||||
file://GPLv2.patch \
|
file://GPLv2.patch \
|
||||||
file://dmesg.sh \
|
file://dmesg.sh \
|
||||||
file://logrotate-dmesg.conf \
|
file://logrotate-dmesg.conf \
|
||||||
|
${@bb.utils.contains('DISTRO_FEATURES','selinux','file://sushell','',d)} \
|
||||||
"
|
"
|
||||||
|
|
||||||
S = "${WORKDIR}"
|
S = "${WORKDIR}"
|
||||||
@@ -46,7 +47,9 @@ DEPENDS_append = " update-rc.d-native"
|
|||||||
DEPENDS_append = " ${@bb.utils.contains('DISTRO_FEATURES','systemd','systemd-systemctl-native','',d)}"
|
DEPENDS_append = " ${@bb.utils.contains('DISTRO_FEATURES','systemd','systemd-systemctl-native','',d)}"
|
||||||
|
|
||||||
PACKAGES =+ "${PN}-functions"
|
PACKAGES =+ "${PN}-functions"
|
||||||
RDEPENDS_${PN} = "${PN}-functions"
|
RDEPENDS_${PN} = "${PN}-functions \
|
||||||
|
${@bb.utils.contains('DISTRO_FEATURES','selinux','bash','',d)} \
|
||||||
|
"
|
||||||
FILES_${PN}-functions = "${sysconfdir}/init.d/functions*"
|
FILES_${PN}-functions = "${sysconfdir}/init.d/functions*"
|
||||||
|
|
||||||
ALTERNATIVE_PRIORITY_${PN}-functions = "90"
|
ALTERNATIVE_PRIORITY_${PN}-functions = "90"
|
||||||
@@ -104,6 +107,11 @@ do_install () {
|
|||||||
if [ "${TARGET_ARCH}" = "arm" ]; then
|
if [ "${TARGET_ARCH}" = "arm" ]; then
|
||||||
install -m 0755 ${WORKDIR}/alignment.sh ${D}${sysconfdir}/init.d
|
install -m 0755 ${WORKDIR}/alignment.sh ${D}${sysconfdir}/init.d
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
if ${@bb.utils.contains('DISTRO_FEATURES','selinux','true','false',d)}; then
|
||||||
|
install -d ${D}/${base_sbindir}
|
||||||
|
install -m 0755 ${WORKDIR}/sushell ${D}/${base_sbindir}
|
||||||
|
fi
|
||||||
#
|
#
|
||||||
# Install device dependent scripts
|
# Install device dependent scripts
|
||||||
#
|
#
|
||||||
|
|||||||
Reference in New Issue
Block a user