forked from pool/rtl8812au
Antonio Larrosa
a2f1ebd5d6
version bump from upstream, remember disable service before submitting to factory OBS-URL: https://build.opensuse.org/request/show/998750 OBS-URL: https://build.opensuse.org/package/show/hardware/rtl8812au?expand=0&rev=40
122 lines
3.7 KiB
RPMSpec
122 lines
3.7 KiB
RPMSpec
#
|
|
# spec file for package rtl8812au
|
|
#
|
|
# Copyright (c) 2022 SUSE LLC
|
|
#
|
|
# 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.
|
|
|
|
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
|
#
|
|
|
|
|
|
%{?!kernel_module_directory:%define kernel_module_directory /lib/modules}
|
|
|
|
Name: rtl8812au
|
|
Version: 5.13.6+git20220821.7aa0e0c
|
|
Release: 0
|
|
Summary: Kernel driver for Realtek 802.11ac 8812au wifi cards
|
|
License: GPL-2.0-only
|
|
Group: System/Kernel
|
|
URL: https://github.com/morrownr/8812au-20210629
|
|
ExcludeArch: s390x
|
|
Source0: %{name}-%{version}.tar.xz
|
|
Source1: %{name}-preamble
|
|
Source2: LICENSE
|
|
# PATCH-FIX-OPENSUSE fix-backported-ndo_select_queue.patch
|
|
Patch0: fix-backported-ndo_select_queue.patch
|
|
# PATCH-FIX-OPENSUSE fix-backported-update_mgmt_frame_registrations.patch
|
|
Patch1: fix-backported-update_mgmt_frame_registrations.patch
|
|
BuildRequires: %{kernel_module_package_buildreqs}
|
|
BuildRequires: bc
|
|
BuildRequires: binutils
|
|
BuildRequires: fdupes
|
|
BuildRequires: kernel-devel
|
|
BuildRequires: kernel-source
|
|
BuildRequires: module-init-tools
|
|
%kernel_module_package -p %{name}-preamble
|
|
|
|
%description
|
|
Kernel driver for Realtek 802.11ac 8812au wifi cards
|
|
|
|
The sources were obtained from https://github.com/morrownr/8812au-20210629, which adaptes the official driver
|
|
released by Realtek to build on recent kernels.
|
|
|
|
The previous sources were obtained from https://github.com/morrownr/8812au-20210629, https://github.com/diederikdehaas/rtl8812AU and
|
|
https://github.com/maurossi/rtl8812au/ .
|
|
|
|
%package KMP
|
|
Summary: Kernel driver for Realtek 802.11ac rtl8812au wifi cards
|
|
Group: System/Kernel
|
|
|
|
%description KMP
|
|
Kernel driver for Realtek 802.11ac 8812au wifi cards
|
|
|
|
The sources were obtained from https://github.com/gordboy/rtl8812au, which adaptes the official driver
|
|
released by Realtek to build on recent kernels.
|
|
|
|
The previous sources were obtained from https://github.com/morrownr/8812au-20210629, https://github.com/diederikdehaas/rtl8812AU and
|
|
https://github.com/maurossi/rtl8812au/ .
|
|
|
|
%prep
|
|
%setup -q
|
|
%if 0%{?sle_version} == 150100
|
|
%patch0 -p1
|
|
%endif
|
|
|
|
%if 0%{?sle_version} == 150300
|
|
%patch1 -p1
|
|
%endif
|
|
|
|
set -- *
|
|
mkdir source
|
|
mv "$@" source/
|
|
cp "%{S:2}" source/
|
|
mkdir obj
|
|
|
|
%build
|
|
%ifarch %arm
|
|
export ARCH=arm
|
|
%endif
|
|
%ifarch aarch64
|
|
export ARCH=arm64
|
|
%endif
|
|
%ifarch %ppc ppc64 ppc64le
|
|
export ARCH=powerpc
|
|
%endif
|
|
%ifarch riscv64
|
|
export ARCH=riscv
|
|
%endif
|
|
|
|
for flavor in %{flavors_to_build} ; do
|
|
cp -a source obj/$flavor
|
|
pushd obj/$flavor
|
|
sed -i -e "s,^KSRC := /lib/modules/\$(KVER)/build$,KSRC := %{_prefix}/src/linux-obj/%{_target_cpu}/$flavor," Makefile
|
|
make -O V=1 %{?_smp_mflags}
|
|
popd
|
|
done
|
|
|
|
%install
|
|
export INSTALL_MOD_PATH=%{buildroot}
|
|
export INSTALL_MOD_DIR=%{kernel_module_package_moddir}
|
|
kernel_version=`uname -r | sed -e "s/-[^-]*$//"`
|
|
|
|
echo ${kernel_version}
|
|
for flavor in %{flavors_to_build} ; do
|
|
pushd obj/$flavor
|
|
install -d %{buildroot}%{kernel_module_directory}/${kernel_version}-${flavor}/${INSTALL_MOD_DIR}/
|
|
install -p -m 644 8812au.ko %{buildroot}%{kernel_module_directory}/${kernel_version}-${flavor}/${INSTALL_MOD_DIR}/
|
|
popd
|
|
done
|
|
|
|
%files
|
|
%license source/LICENSE
|
|
|
|
%changelog
|