diff options
author | 2025-06-14 08:41:00 +0700 | |
---|---|---|
committer | 2025-06-14 09:22:48 +0700 | |
commit | d2c329869eeda921023764398f04c7a686012387 (patch) | |
tree | b2e0c0027cd111e78600b5ae2d8022ba7e80aeb1 | |
parent | ba15e881fd861044c7609b9139c74b1511029075 (diff) | |
download | slackbuilds-d2c329869eeda921023764398f04c7a686012387.tar.gz slackbuilds-d2c329869eeda921023764398f04c7a686012387.tar.xz |
network/iwd: Added (iNet Wireless Daemon).
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
-rw-r--r-- | network/iwd/README | 35 | ||||
-rw-r--r-- | network/iwd/doinst.sh | 26 | ||||
-rw-r--r-- | network/iwd/iwd.SlackBuild | 118 | ||||
-rw-r--r-- | network/iwd/iwd.info | 10 | ||||
-rw-r--r-- | network/iwd/main.conf | 5 | ||||
-rw-r--r-- | network/iwd/rc.iwd | 35 | ||||
-rw-r--r-- | network/iwd/slack-desc | 19 |
7 files changed, 248 insertions, 0 deletions
diff --git a/network/iwd/README b/network/iwd/README new file mode 100644 index 0000000000..5267c4e0d7 --- /dev/null +++ b/network/iwd/README @@ -0,0 +1,35 @@ +iwd (iNet Wireless Daemon) + +iNet Wireless Daemon (iwd) project aims to provide a comprehensive +Wi-Fi connectivity solution for Linux based devices. The core goal of +the project is to optimize resource utilization: storage, runtime +memory and link-time costs. This is accomplished by not depending on +any external libraries and utilizes features provided by the Linux +kernel to the maximum extent possible. The result is a self-contained +environment that only depends on the Linux kernel and the runtime C +library. + +To run iwd on startup, run (as root): + chmod +x /etc/rc.d/rc.iwd +then add this to your /etc/rc.d/rc.local: + if [ -x /etc/rc.d/rc.iwd ]; then + /etc/rc.d/rc.iwd start + fi + +Before running iwd, remove all configuration in /etc/rc.d/rc.inet1.conf +and ensure no other connection daemon is running. +e.g. run `netconfig' and choose "loopback" + +iwd's command-line client is started as `iwctl' +An example session: + + $ iwctl + [iwd]# station wlan0 scan + [iwd]# station wlan0 get-networks + ... + [iwd]# station wlan0 connect <your-network> + [iwd]# exit + + +(iwd can also be used as a backend for NetworkManager but this is +considered experimental) diff --git a/network/iwd/doinst.sh b/network/iwd/doinst.sh new file mode 100644 index 0000000000..f41e03dd9e --- /dev/null +++ b/network/iwd/doinst.sh @@ -0,0 +1,26 @@ +config() { + NEW="$1" + OLD="$(dirname $NEW)/$(basename $NEW .new)" + # If there's no config file by that name, mv it over: + if [ ! -r $OLD ]; then + mv $NEW $OLD + elif [ "$(cat $OLD | md5sum)" = "$(cat $NEW | md5sum)" ]; then + # toss the redundant copy + rm $NEW + fi + # Otherwise, we leave the .new copy for the admin to consider... +} + +preserve_perms() { + NEW="$1" + OLD="$(dirname $NEW)/$(basename $NEW .new)" + if [ -e $OLD ]; then + cp -a $OLD ${NEW}.incoming + cat $NEW > ${NEW}.incoming + mv ${NEW}.incoming $NEW + fi + config $NEW +} + +preserve_perms etc/rc.d/rc.iwd.new +config etc/iwd/main.conf.new diff --git a/network/iwd/iwd.SlackBuild b/network/iwd/iwd.SlackBuild new file mode 100644 index 0000000000..1abef9f0d8 --- /dev/null +++ b/network/iwd/iwd.SlackBuild @@ -0,0 +1,118 @@ +#!/bin/bash +# +# SlackBuild script for iwd +# +# Copyright 2025 Jonny Langley, New Zealand + +# Redistribution and use of this script, with or without modification, is +# permitted provided that the following conditions are met: +# +# 1. Redistributions of this script must retain the above copyright +# notice, this list of conditions and the following disclaimer. +# +# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ''AS IS'' AND ANY EXPRESS OR IMPLIED +# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO +# EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, +# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; +# OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, +# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR +# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF +# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +cd $(dirname $0) ; CWD=$(pwd) + +PRGNAM=iwd +VERSION=${VERSION:-3.8} +BUILD=${BUILD:-1} +TAG=${TAG:-_SBo} +PKGTYPE=${PKGTYPE:-tgz} + +if [ -z "$ARCH" ]; then + case "$( uname -m )" in + i?86) ARCH=i586 ;; + arm*) ARCH=arm ;; + *) ARCH=$( uname -m ) ;; + esac +fi + +if [ ! -z "${PRINT_PACKAGE_NAME}" ]; then + echo "$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE" + exit 0 +fi + +TMP=${TMP:-/tmp/SBo} +PKG=$TMP/package-$PRGNAM +OUTPUT=${OUTPUT:-/tmp} + +if [ "$ARCH" = "i586" ]; then + SLKCFLAGS="-O2 -march=i586 -mtune=i686" + LIBDIRSUFFIX="" +elif [ "$ARCH" = "i686" ]; then + SLKCFLAGS="-O2 -march=i686 -mtune=i686" + LIBDIRSUFFIX="" +elif [ "$ARCH" = "x86_64" ]; then + SLKCFLAGS="-O2 -fPIC" + LIBDIRSUFFIX="64" +elif [ "$ARCH" = "aarch64" ]; then + SLKCFLAGS="-O2 -fPIC" + LIBDIRSUFFIX="64" +else + SLKCFLAGS="-O2" + LIBDIRSUFFIX="" +fi + +set -e + +rm -rf $PKG +mkdir -p $TMP $PKG $OUTPUT +cd $TMP +rm -rf $PRGNAM-$VERSION +tar xvf $CWD/$PRGNAM-$VERSION.tar.xz +cd $PRGNAM-$VERSION +chown -R root:root . +find -L . \ + \( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \ + -o -perm 511 \) -exec chmod 755 {} \; -o \ + \( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \ + -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \; + +CFLAGS="$SLKCFLAGS" \ +CXXFLAGS="$SLKCFLAGS" \ +./configure \ + --prefix=/usr \ + --libdir=/usr/lib${LIBDIRSUFFIX} \ + --sysconfdir=/etc \ + --localstatedir=/var \ + --mandir=/usr/man \ + --docdir=/usr/doc/$PRGNAM-$VERSION \ + --disable-systemd-service \ + --enable-wired \ + --build=$ARCH-slackware-linux + +make +make install DESTDIR=$PKG + +mkdir -p $PKG/etc/rc.d $PKG/etc/iwd +install -m 644 $CWD/rc.iwd $PKG/etc/rc.d/rc.iwd.new +install -m 644 $CWD/main.conf $PKG/etc/iwd/main.conf.new + +rm -f $PKG/{,usr/}lib${LIBDIRSUFFIX}/*.la + +find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | grep ELF \ + | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true + +find $PKG/usr/man -type f -exec gzip -9 {} \; +for i in $( find $PKG/usr/man -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done + +mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION +cp -a AUTHORS COPYING README TODO $PKG/usr/doc/$PRGNAM-$VERSION +cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild + +mkdir -p $PKG/install +cat $CWD/slack-desc > $PKG/install/slack-desc +cat $CWD/doinst.sh > $PKG/install/doinst.sh + +cd $PKG +/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE diff --git a/network/iwd/iwd.info b/network/iwd/iwd.info new file mode 100644 index 0000000000..0f26f81876 --- /dev/null +++ b/network/iwd/iwd.info @@ -0,0 +1,10 @@ +PRGNAM="iwd" +VERSION="3.8" +HOMEPAGE="https://archive.kernel.org/oldwiki/iwd.wiki.kernel.org/" +DOWNLOAD="https://mirrors.edge.kernel.org/pub/linux/network/wireless/iwd-3.8.tar.xz" +MD5SUM="1dac262f1fae66f41cbc05e986f31492" +DOWNLOAD_x86_64="" +MD5SUM_x86_64="" +REQUIRES="" +MAINTAINER="Jonny Langley" +EMAIL="jonny@kingslea.school.nz" diff --git a/network/iwd/main.conf b/network/iwd/main.conf new file mode 100644 index 0000000000..09121dbc4c --- /dev/null +++ b/network/iwd/main.conf @@ -0,0 +1,5 @@ +[General] +EnableNetworkConfiguration=true + +[Network] +NameResolvingService=resolvconf diff --git a/network/iwd/rc.iwd b/network/iwd/rc.iwd new file mode 100644 index 0000000000..ee61802358 --- /dev/null +++ b/network/iwd/rc.iwd @@ -0,0 +1,35 @@ +#!/bin/bash +# +# Start/stop/restart iwd. + +iwd_start() { + if [ -x /usr/libexec/iwd ]; then + echo "Starting iwd: /usr/libexec/iwd" + /usr/libexec/iwd 2>/dev/null & + fi +} + +iwd_stop() { + echo "Stopping iwd" + killall iwd +} + +iwd_restart() { + iwd_stop + sleep 1 + iwd_start +} + +case "$1" in +'start') + iwd_start + ;; +'stop') + iwd_stop + ;; +'restart') + iwd_restart + ;; +*) + echo "usage $0 start|stop|restart" +esac diff --git a/network/iwd/slack-desc b/network/iwd/slack-desc new file mode 100644 index 0000000000..589cf0a550 --- /dev/null +++ b/network/iwd/slack-desc @@ -0,0 +1,19 @@ +# HOW TO EDIT THIS FILE: +# The "handy ruler" below makes it easier to edit a package description. +# Line up the first '|' above the ':' following the base package name, and +# the '|' on the right side marks the last column you can put a character in. +# You must make exactly 11 lines for the formatting to be correct. It's also +# customary to leave one space after the ':' except on otherwise blank lines. + + |-----handy-ruler------------------------------------------------------| +iwd: iwd (iNet Wireless Daemon) +iwd: +iwd: iNet Wireless Daemon (iwd) project aims to provide a comprehensive +iwd: Wi-Fi connectivity solution for Linux based devices. The core goal of +iwd: the project is to optimize resource utilization: storage, runtime +iwd: memory and link-time costs. This is accomplished by not depending on +iwd: any external libraries and utilizes features provided by the Linux +iwd: kernel to the maximum extent possible. The result is a self-contained +iwd: environment that only depends on the Linux kernel and the runtime C +iwd: library. +iwd: https://git.kernel.org/pub/scm/network/wireless/iwd.git |