2012-11-23 16:19:32 +01:00
|
|
|
#
|
|
|
|
# spec file for package suse-module-tools
|
|
|
|
#
|
2018-10-26 16:41:41 +02:00
|
|
|
# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
|
2012-11-23 16:19:32 +01:00
|
|
|
#
|
|
|
|
# All modifications and additions to the file contributed by third parties
|
|
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
|
|
|
# upon. The license for this file, and modifications and additions to the
|
|
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
|
|
# license for the pristine package is not an Open Source License, in which
|
|
|
|
# case the license is the MIT License). An "Open Source License" is a
|
|
|
|
# license that conforms to the Open Source Definition (Version 1.9)
|
|
|
|
# published by the Open Source Initiative.
|
|
|
|
|
2018-10-26 16:41:41 +02:00
|
|
|
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
2012-11-23 16:19:32 +01:00
|
|
|
#
|
|
|
|
|
|
|
|
|
|
|
|
Name: suse-module-tools
|
2018-10-26 19:17:37 +02:00
|
|
|
Version: 15.0+git20181026.9b7bf86
|
2012-11-23 16:19:32 +01:00
|
|
|
Release: 0
|
2017-06-19 15:16:47 +02:00
|
|
|
Summary: Configuration for module loading and SUSE-specific utilities for KMPs
|
2018-10-26 16:41:41 +02:00
|
|
|
License: GPL-2.0-or-later
|
2017-06-19 15:16:47 +02:00
|
|
|
Group: System/Base
|
|
|
|
Url: https://github.com/openSUSE/suse-module-tools
|
|
|
|
Source0: %{name}-%{version}.tar.xz
|
2017-07-26 10:14:32 +02:00
|
|
|
Requires: /sbin/mkinitrd
|
2018-10-26 19:17:37 +02:00
|
|
|
Requires: binutils
|
|
|
|
Requires: coreutils
|
2016-02-23 15:09:56 +01:00
|
|
|
Requires: findutils
|
2018-10-26 19:17:37 +02:00
|
|
|
Requires: grep
|
2016-02-23 15:09:56 +01:00
|
|
|
Requires: gzip
|
2017-06-19 15:16:47 +02:00
|
|
|
Requires: kmod-compat
|
2018-10-26 19:17:37 +02:00
|
|
|
Requires: rpm
|
|
|
|
Requires: sed
|
2012-11-23 16:19:32 +01:00
|
|
|
|
|
|
|
%description
|
|
|
|
This package contains helper scripts for KMP installation and
|
|
|
|
uninstallation, as well as default configuration files for depmod and
|
|
|
|
modprobe. These utilities are provided by kmod-compat or
|
|
|
|
module-init-tools, whichever implementation you choose to install.
|
|
|
|
|
2018-10-26 19:17:37 +02:00
|
|
|
%if 0%{?sle_version} >= 150000
|
|
|
|
%if 0%{?is_opensuse} == 0
|
|
|
|
%package we
|
|
|
|
Summary: Configuration module for Workstation Extension
|
|
|
|
Group: System/Base
|
|
|
|
Requires: %{name} >= %{version}
|
|
|
|
Supplements: kernel-default-extra
|
|
|
|
|
|
|
|
%description we
|
|
|
|
This package contains a configuration file that allows loading
|
|
|
|
unsupported kernel modules. This is necessary to load modules
|
|
|
|
from the kernel-default-extra package from the SUSE Linux Enterprise
|
|
|
|
Workstation Extension module.
|
|
|
|
|
|
|
|
%endif
|
|
|
|
%endif
|
|
|
|
|
2012-11-23 16:19:32 +01:00
|
|
|
%prep
|
2017-06-19 15:16:47 +02:00
|
|
|
%setup -q
|
2012-11-23 16:19:32 +01:00
|
|
|
|
|
|
|
%build
|
2017-06-19 15:16:47 +02:00
|
|
|
:
|
2012-11-23 16:19:32 +01:00
|
|
|
|
|
|
|
%install
|
|
|
|
# now assemble the parts for modprobe.conf
|
2017-06-19 15:16:47 +02:00
|
|
|
cp modprobe.conf/modprobe.conf.common 00-system.conf
|
|
|
|
if [ -f "modprobe.conf/modprobe.conf.$RPM_ARCH" ]; then
|
|
|
|
cat "modprobe.conf/modprobe.conf.$RPM_ARCH" >>00-system.conf
|
2012-11-23 16:19:32 +01:00
|
|
|
fi
|
2017-06-19 15:16:47 +02:00
|
|
|
install -d -m 755 "%{buildroot}%{_sysconfdir}/modprobe.d"
|
|
|
|
install -pm644 "10-unsupported-modules.conf" \
|
|
|
|
"%{buildroot}%{_sysconfdir}/modprobe.d/"
|
2018-10-26 19:17:37 +02:00
|
|
|
%if 0%{?sle_version} >= 150000
|
|
|
|
%if 0%{?is_opensuse} == 0
|
|
|
|
cat >"%{buildroot}%{_sysconfdir}/modprobe.d/20-unsupported-modules-we.conf" <<EOF
|
|
|
|
# This overrides the default from 10-unsupported-modules.conf
|
|
|
|
# Necessary to load modules from kernel-default-extra
|
|
|
|
allow_unsupported_modules 1
|
|
|
|
EOF
|
|
|
|
%endif
|
|
|
|
%endif
|
2017-06-19 15:16:47 +02:00
|
|
|
install -pm644 00-system.conf "%{buildroot}%{_sysconfdir}/modprobe.d/"
|
|
|
|
install -pm644 modprobe.conf/modprobe.conf.local "%{buildroot}%{_sysconfdir}/modprobe.d/99-local.conf"
|
|
|
|
install -d -m 755 "%{buildroot}%{_sysconfdir}/depmod.d"
|
|
|
|
install -pm 644 "depmod-00-system.conf" \
|
|
|
|
"%{buildroot}%{_sysconfdir}/depmod.d/00-system.conf"
|
2012-11-23 16:19:32 +01:00
|
|
|
|
|
|
|
# "module-init-tools" name hardcoded in KMPs, mkinitrd, etc.
|
2017-06-19 15:16:47 +02:00
|
|
|
install -d -m 755 "%{buildroot}%{_libexecdir}/module-init-tools"
|
|
|
|
install -pm 755 weak-modules{,2} "%{buildroot}%{_libexecdir}/module-init-tools/"
|
|
|
|
install -pm 755 driver-check.sh "%{buildroot}%{_libexecdir}/module-init-tools/"
|
2012-11-23 16:19:32 +01:00
|
|
|
|
2014-04-09 11:56:47 +02:00
|
|
|
# rpm macros and helper
|
2017-06-19 15:16:47 +02:00
|
|
|
install -d -m 755 "%{buildroot}%{_sysconfdir}/rpm"
|
|
|
|
install -pm 644 "macros.initrd" "%{buildroot}%{_sysconfdir}/rpm/"
|
|
|
|
install -pm 755 "regenerate-initrd-posttrans" "%{buildroot}%{_libexecdir}/module-init-tools/"
|
2014-04-09 11:56:47 +02:00
|
|
|
|
2014-03-12 14:45:04 +01:00
|
|
|
# modsign-verify for verifying module signatures
|
2017-06-19 15:16:47 +02:00
|
|
|
install -d -m 755 "%{buildroot}%{_prefix}/bin"
|
|
|
|
install -pm 755 modsign-verify "%{buildroot}%{_bindir}/"
|
|
|
|
install -pm 755 kmp-install "%{buildroot}%{_bindir}/"
|
2016-06-07 10:04:27 +02:00
|
|
|
# modhash for calculating hash of signed kernel module
|
2017-06-19 15:16:47 +02:00
|
|
|
install -pm 755 modhash "%{buildroot}%{_bindir}/"
|
2014-03-12 14:45:04 +01:00
|
|
|
|
2016-05-09 10:35:02 +02:00
|
|
|
# systemd service to load /boot/sysctl.conf-`uname -r`
|
2017-06-19 15:16:47 +02:00
|
|
|
install -d -m 755 "%{buildroot}%{_libexecdir}/systemd/system/systemd-sysctl.service.d"
|
|
|
|
install -pm 644 50-kernel-uname_r.conf "%{buildroot}%{_libexecdir}/systemd/system/systemd-sysctl.service.d"
|
2016-05-09 10:35:02 +02:00
|
|
|
|
2012-11-23 16:19:32 +01:00
|
|
|
%post
|
2018-10-26 19:17:37 +02:00
|
|
|
%if 0%{?sle_version} >= 150000
|
|
|
|
# Delete obsolete unsupported-modules file from SLE11
|
|
|
|
rm -f %{_sysconfdir}/modprobe.d/unsupported-modules
|
|
|
|
%if 0%{?is_opensuse} == 1
|
|
|
|
# Disallowing unsupported modules on openSUSE is pointless.
|
|
|
|
allow=1
|
|
|
|
%else
|
|
|
|
# On SLE15, unsupported modules are disallowed unless the WE
|
|
|
|
# module is installed. We deliberately reset this on update.
|
|
|
|
allow=0
|
|
|
|
%endif
|
|
|
|
%else
|
|
|
|
# Logic for releases below CODE 15
|
2012-11-23 16:19:32 +01:00
|
|
|
test_allow_on_install()
|
|
|
|
{
|
|
|
|
# configure handling of unsupported modules
|
|
|
|
# default is to allow them
|
|
|
|
allow=1
|
|
|
|
# if the obsolete LOAD_UNSUPPORTED_MODULES_AUTOMATICALLY variable is
|
|
|
|
# set to no, don't allow (this was used in SLES 9 and 10)
|
2017-06-19 15:16:47 +02:00
|
|
|
if test -e %{_sysconfdir}/sysconfig/hardware/config; then
|
|
|
|
. %{_sysconfdir}/sysconfig/hardware/config
|
2012-11-23 16:19:32 +01:00
|
|
|
if test "x$LOAD_UNSUPPORTED_MODULES_AUTOMATICALLY" = "xno"; then
|
|
|
|
allow=0
|
|
|
|
fi
|
|
|
|
# obsolete
|
2017-06-19 15:16:47 +02:00
|
|
|
rm %{_sysconfdir}/sysconfig/hardware/config
|
2012-11-23 16:19:32 +01:00
|
|
|
fi
|
|
|
|
# don't change the setting during upgrade
|
|
|
|
if test "$1" != 1; then
|
|
|
|
return
|
|
|
|
fi
|
|
|
|
# on SLES, the default is not to allow unsupported modules
|
2017-06-19 15:16:47 +02:00
|
|
|
if grep -qs "Enterprise Server" %{_sysconfdir}/os-release; then
|
2012-11-23 16:19:32 +01:00
|
|
|
allow=0
|
|
|
|
else
|
|
|
|
return
|
|
|
|
fi
|
|
|
|
# unless the admin passed "oem-modules=1" to the kernel during install
|
|
|
|
if grep -qs '\<oem-modules=1\>' /proc/cmdline; then
|
|
|
|
allow=1
|
|
|
|
return
|
|
|
|
fi
|
|
|
|
# or if the installer already loaded some unsupported modules
|
2018-10-26 19:17:37 +02:00
|
|
|
# (see TAINT_NO_SUPPORT in /etc/src/linux/include/linux/kernel.h)
|
2012-11-23 16:19:32 +01:00
|
|
|
tainted=$(cat /proc/sys/kernel/tainted 2>/dev/null || echo 0)
|
|
|
|
if test $((tainted & (1<<30))) != 0; then
|
|
|
|
allow=1
|
|
|
|
return
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
# upgrade from old locations
|
2017-06-19 15:16:47 +02:00
|
|
|
if test -e %{_sysconfdir}/modprobe.d/unsupported-modules; then
|
|
|
|
mv -f %{_sysconfdir}/modprobe.d/unsupported-modules \
|
|
|
|
%{_sysconfdir}/modprobe.d/10-unsupported-modules.conf
|
2012-11-23 16:19:32 +01:00
|
|
|
fi
|
|
|
|
test_allow_on_install "$@"
|
2018-10-26 19:17:37 +02:00
|
|
|
%endif
|
2012-11-23 16:19:32 +01:00
|
|
|
if test "$allow" = "0"; then
|
|
|
|
sed -ri 's/^( *allow_unsupported_modules *) 1/\1 0/' \
|
2017-06-19 15:16:47 +02:00
|
|
|
%{_sysconfdir}/modprobe.d/10-unsupported-modules.conf
|
2012-11-23 16:19:32 +01:00
|
|
|
fi
|
2014-03-11 08:13:11 +01:00
|
|
|
|
2018-10-26 19:17:37 +02:00
|
|
|
# upgrade from old locations
|
|
|
|
if test -e %{_sysconfdir}/modprobe.conf.local; then
|
|
|
|
mv -f %{_sysconfdir}/modprobe.conf.local \
|
|
|
|
%{_sysconfdir}/modprobe.d/99-local.conf
|
|
|
|
fi
|
|
|
|
|
2012-11-23 16:19:32 +01:00
|
|
|
%files
|
|
|
|
%defattr(-,root,root)
|
2018-10-26 19:17:37 +02:00
|
|
|
%license LICENSE
|
|
|
|
%doc README.SUSE
|
2017-06-19 15:16:47 +02:00
|
|
|
%dir %{_sysconfdir}/modprobe.d
|
|
|
|
%config %{_sysconfdir}/modprobe.d/00-system.conf
|
2018-10-26 19:17:37 +02:00
|
|
|
%if 0%{?sle_version} >= 150000
|
|
|
|
%config %{_sysconfdir}/modprobe.d/10-unsupported-modules.conf
|
|
|
|
%else
|
2017-06-19 15:16:47 +02:00
|
|
|
%config(noreplace) %{_sysconfdir}/modprobe.d/10-unsupported-modules.conf
|
2018-10-26 19:17:37 +02:00
|
|
|
%endif
|
2017-06-19 15:16:47 +02:00
|
|
|
%config(noreplace) %{_sysconfdir}/modprobe.d/99-local.conf
|
|
|
|
%dir %{_sysconfdir}/depmod.d
|
|
|
|
%config %{_sysconfdir}/depmod.d/00-system.conf
|
|
|
|
%config %{_sysconfdir}/rpm/macros.initrd
|
|
|
|
%{_bindir}/modhash
|
|
|
|
%{_bindir}/kmp-install
|
|
|
|
%{_bindir}/modsign-verify
|
|
|
|
%{_libexecdir}/module-init-tools
|
|
|
|
%{_libexecdir}/systemd/system/systemd-sysctl.service.d
|
2012-11-23 16:19:32 +01:00
|
|
|
|
2018-10-26 19:17:37 +02:00
|
|
|
%if 0%{?sle_version} >= 150000
|
|
|
|
%if 0%{?is_opensuse} == 0
|
|
|
|
%files we
|
|
|
|
%defattr(-,root,root)
|
|
|
|
%config /etc/modprobe.d/20-unsupported-modules-we.conf
|
|
|
|
%endif
|
|
|
|
%endif
|
|
|
|
|
2012-11-23 16:19:32 +01:00
|
|
|
%changelog
|