initial buildroot for linux 5.15
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
config BR2_PACKAGE_RESTORECOND
|
||||
bool "restorecond"
|
||||
depends on BR2_USE_MMU # libglib2
|
||||
depends on BR2_USE_WCHAR # libglib2
|
||||
depends on BR2_TOOLCHAIN_HAS_THREADS # libglib2
|
||||
depends on !BR2_STATIC_LIBS # libselinux
|
||||
select BR2_PACKAGE_DBUS
|
||||
select BR2_PACKAGE_DBUS_GLIB
|
||||
select BR2_PACKAGE_LIBGLIB2
|
||||
select BR2_PACKAGE_LIBSELINUX
|
||||
select BR2_PACKAGE_LIBSEPOL
|
||||
help
|
||||
restorecond is a daemon that watches for file creation and
|
||||
then sets the default SELinux file context for that file.
|
||||
|
||||
https://github.com/SELinuxProject/selinux/wiki/Releases
|
||||
|
||||
comment "restorecond needs a toolchain w/ wchar, threads, dynamic library"
|
||||
depends on BR2_USE_MMU
|
||||
depends on !BR2_TOOLCHAIN_HAS_THREADS || !BR2_USE_WCHAR || \
|
||||
BR2_STATIC_LIBS
|
||||
@@ -0,0 +1,54 @@
|
||||
#!/bin/sh
|
||||
|
||||
DAEMON=restorecond
|
||||
PIDFILE=/var/run/$DAEMON.pid
|
||||
|
||||
RESTORECOND_ARGS=""
|
||||
|
||||
# shellcheck source=/dev/null
|
||||
[ -r "/etc/default/$DAEMON" ] && . "/etc/default/$DAEMON"
|
||||
|
||||
start()
|
||||
{
|
||||
printf 'Starting %s: ' "$DAEMON"
|
||||
start-stop-daemon -b -m -S -q -p "$PIDFILE" -x "/usr/sbin/$DAEMON" \
|
||||
-- $RESTORECOND_ARGS
|
||||
status=$?
|
||||
if [ "$status" -eq 0 ]; then
|
||||
echo "OK"
|
||||
else
|
||||
echo "FAIL"
|
||||
fi
|
||||
return "$status"
|
||||
}
|
||||
|
||||
stop()
|
||||
{
|
||||
printf 'Stopping %s: ' "$DAEMON"
|
||||
start-stop-daemon -K -q -p $PIDFILE -R TERM/30/KILL/5 -n $DAEMON
|
||||
status=$?
|
||||
if [ "$status" -eq 0 ]; then
|
||||
rm -f "$PIDFILE"
|
||||
echo "OK"
|
||||
else
|
||||
echo "FAIL"
|
||||
fi
|
||||
return "$status"
|
||||
}
|
||||
|
||||
restart()
|
||||
{
|
||||
stop
|
||||
sleep 1
|
||||
start
|
||||
}
|
||||
|
||||
case "$1" in
|
||||
start|stop|restart)
|
||||
"$1";;
|
||||
reload)
|
||||
restart;;
|
||||
*)
|
||||
echo $"Usage: $0 {start|stop|restart|reload}"
|
||||
exit 1
|
||||
esac
|
||||
@@ -0,0 +1,5 @@
|
||||
# https://github.com/SELinuxProject/selinux/wiki/Releases
|
||||
sha256 471c17e64aa6d7226e861d4d0125d15fdf9b38892c542be32bd83d999e5e75f5 restorecond-3.2.tar.gz
|
||||
|
||||
# Hash for license file
|
||||
sha256 204d8eff92f95aac4df6c8122bc1505f468f3a901e5a4cc08940e0ede1938994 COPYING
|
||||
@@ -0,0 +1,52 @@
|
||||
################################################################################
|
||||
#
|
||||
# restorecond
|
||||
#
|
||||
################################################################################
|
||||
|
||||
RESTORECOND_VERSION = 3.2
|
||||
RESTORECOND_SITE = https://github.com/SELinuxProject/selinux/releases/download/$(RESTORECOND_VERSION)
|
||||
RESTORECOND_LICENSE = GPL-2.0
|
||||
RESTORECOND_LICENSE_FILES = COPYING
|
||||
|
||||
RESTORECOND_DEPENDENCIES = libglib2 libsepol libselinux dbus-glib
|
||||
|
||||
# Undefining _FILE_OFFSET_BITS here because of a "bug" with glibc fts.h
|
||||
# large file support.
|
||||
# See https://bugzilla.redhat.com/show_bug.cgi?id=574992 for more information
|
||||
RESTORECOND_MAKE_OPTS += \
|
||||
$(TARGET_CONFIGURE_OPTS) \
|
||||
CFLAGS="$(TARGET_CFLAGS) -U_FILE_OFFSET_BITS" \
|
||||
CPPFLAGS="$(TARGET_CPPFLAGS) -U_FILE_OFFSET_BITS" \
|
||||
ARCH="$(BR2_ARCH)"
|
||||
|
||||
# We need to pass DESTDIR at build time because it's used by
|
||||
# restorecond build system to find headers and libraries.
|
||||
define RESTORECOND_BUILD_CMDS
|
||||
$(MAKE) -C $(@D) $(RESTORECOND_MAKE_OPTS) DESTDIR=$(STAGING_DIR) all
|
||||
endef
|
||||
|
||||
define RESTORECOND_INSTALL_INIT_SYSV
|
||||
$(INSTALL) -m 0755 -D package/restorecond/S02restorecond \
|
||||
$(TARGET_DIR)/etc/init.d/S02restorecond
|
||||
endef
|
||||
|
||||
define RESTORECOND_INSTALL_INIT_SYSTEMD
|
||||
$(INSTALL) -m 0644 -D $(@D)/restorecond.service \
|
||||
$(TARGET_DIR)/usr/lib/systemd/system/restorecond.service
|
||||
|
||||
mkdir -p $(TARGET_DIR)/etc/systemd/system/multi-user.target.wants
|
||||
ln -fs ../../../../usr/lib/systemd/system/restorecond.service \
|
||||
$(TARGET_DIR)/etc/systemd/system/multi-user.target.wants/restorecond.service
|
||||
|
||||
$(INSTALL) -m 0600 -D $(@D)/org.selinux.Restorecond.service \
|
||||
$(TARGET_DIR)/etc/systemd/system/org.selinux.Restorecond.service
|
||||
endef
|
||||
|
||||
define RESTORECOND_INSTALL_TARGET_CMDS
|
||||
$(INSTALL) -m 0644 -D $(@D)/restorecond.conf $(TARGET_DIR)/etc/selinux/restorecond.conf
|
||||
$(INSTALL) -m 0644 -D $(@D)/restorecond_user.conf $(TARGET_DIR)/etc/selinux/restorecond_user.conf
|
||||
$(INSTALL) -m 0755 -D $(@D)/restorecond $(TARGET_DIR)/usr/sbin/restorecond
|
||||
endef
|
||||
|
||||
$(eval $(generic-package))
|
||||
Reference in New Issue
Block a user