mirror of
https://github.com/archr-linux/Arch-R.git
synced 2026-03-31 14:41:55 -07:00
update 1.23 (2022-01-27) to 1.25 (2022-02-24) logs: - https://git.kernel.org/pub/scm/network/wireless/iwd.git/log/ ver 1.24: - Fix issue with handshake and missing rekeying support. - Fix issue with BSS ranking and zero signal strength. - Fix issue with setting OWE IE length correctly.
43 lines
1.5 KiB
Makefile
43 lines
1.5 KiB
Makefile
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
# Copyright (C) 2018-present Team LibreELEC (https://libreelec.tv)
|
|
|
|
PKG_NAME="iwd"
|
|
PKG_VERSION="1.25"
|
|
PKG_SHA256="3f138e03301beb2afc7b385a62f56db17059137857ab579f269c4e441783e760"
|
|
PKG_LICENSE="GPL"
|
|
PKG_SITE="https://git.kernel.org/cgit/network/wireless/iwd.git/about/"
|
|
PKG_URL="https://www.kernel.org/pub/linux/network/wireless/iwd-${PKG_VERSION}.tar.xz"
|
|
PKG_DEPENDS_TARGET="toolchain readline dbus"
|
|
PKG_LONGDESC="Wireless daemon for Linux"
|
|
PKG_TOOLCHAIN="autotools"
|
|
|
|
PKG_CONFIGURE_OPTS_TARGET="--enable-client \
|
|
--enable-monitor \
|
|
--enable-systemd-service \
|
|
--enable-dbus-policy \
|
|
--disable-manual-pages"
|
|
|
|
pre_configure_target() {
|
|
export LIBS="-lncurses"
|
|
}
|
|
|
|
post_makeinstall_target() {
|
|
# ProtectSystem et al seems to break the service when systemd isn't built with seccomp.
|
|
# investigate this more as it might be a systemd problem or kernel problem
|
|
sed -e 's|^\(PrivateTmp=.*\)$|#\1|g' \
|
|
-e 's|^\(NoNewPrivileges=.*\)$|#\1|g' \
|
|
-e 's|^\(PrivateDevices=.*\)$|#\1|g' \
|
|
-e 's|^\(ProtectHome=.*\)$|#\1|g' \
|
|
-e 's|^\(ProtectSystem=.*\)$|#\1|g' \
|
|
-e 's|^\(ReadWritePaths=.*\)$|#\1|g' \
|
|
-e 's|^\(ProtectControlGroups=.*\)$|#\1|g' \
|
|
-e 's|^\(ProtectKernelModules=.*\)$|#\1|g' \
|
|
-e 's|^\(ConfigurationDirectory=.*\)$|#\1|g' \
|
|
-i ${INSTALL}/usr/lib/systemd/system/iwd.service
|
|
}
|
|
|
|
post_install() {
|
|
enable_service iwd.service
|
|
}
|
|
|