mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-11-23 01:41:13 +01:00
d33f5a0afa
Update and add (new) PCI IDs for Realtek rtw88/89, Mediatek 7996/7925, QCA ath1xk, and add Intel iwlwifi IDs. Rather than using a package per driver add fine(r) grained flavors even though it is a lot more likely to break in certain cases. For Intel we need a great level of detail to match PCI IDs so also pass the full pciconf -l line to into the pci_* files as "$2" to have access to these. This lines up with ports commit 80f50c9eb66d. Sponsored by: The FreeBSD Foundation Reviewed by: manu (earlier version) MFC after: 3 days Differential Revision: https://reviews.freebsd.org/D44918
88 lines
2.9 KiB
Plaintext
88 lines
2.9 KiB
Plaintext
#-
|
|
# SPDX-License-Identifier: BSD-2-Clause
|
|
#
|
|
# Copyright 2023 Bjoern A. Zeeb
|
|
# Copyright (c) 2024 The FreeBSD Foundation
|
|
#
|
|
# Portions of this software were developed by Björn Zeeb
|
|
# under sponsorship from the FreeBSD Foundation.
|
|
#
|
|
# Redistribution and use in source and binary forms, with or without
|
|
# modification, are permitted provided that the following conditions
|
|
# are met:
|
|
# 1. Redistributions of source code must retain the above copyright
|
|
# notice, this list of conditions and the following disclaimer.
|
|
# 2. Redistributions in binary form must reproduce the above copyright
|
|
# notice, this list of conditions and the following disclaimer in the
|
|
# documentation and/or other materials provided with the distribution.
|
|
#
|
|
# THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``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 OR CONTRIBUTORS 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.
|
|
#
|
|
|
|
# rtw88
|
|
pci_network_realtek_rtw88()
|
|
{
|
|
|
|
case "$1" in
|
|
|
|
# The case pattern table below is generated by a script also helping
|
|
# to generate the flavor/firmware Makefile definitions for ports.
|
|
# { sys/contrib/dev/rtw88/zzz_fw_ports_fwget.sh }
|
|
### >>>
|
|
|
|
0xd723) addpkg "wifi-firmware-rtw88-kmod-rtw8723d"; return 1 ;;
|
|
0xb821) addpkg "wifi-firmware-rtw88-kmod-rtw8821c"; return 1 ;;
|
|
0xc821) addpkg "wifi-firmware-rtw88-kmod-rtw8821c"; return 1 ;;
|
|
0xb822) addpkg "wifi-firmware-rtw88-kmod-rtw8822b"; return 1 ;;
|
|
0xc822) addpkg "wifi-firmware-rtw88-kmod-rtw8822c"; return 1 ;;
|
|
0xc82f) addpkg "wifi-firmware-rtw88-kmod-rtw8822c"; return 1 ;;
|
|
|
|
### <<<
|
|
esac
|
|
}
|
|
|
|
# rtw89
|
|
pci_network_realtek_rtw89()
|
|
{
|
|
|
|
case "$1" in
|
|
|
|
# The case pattern table below is generated by a script also helping
|
|
# to generate the flavor/firmware Makefile definitions for ports.
|
|
# { sys/contrib/dev/rtw89/zzz_fw_ports_fwget.sh }
|
|
### >>>
|
|
|
|
0xb851) addpkg "wifi-firmware-rtw89-kmod-rtw8851b"; return 1 ;;
|
|
0x8852) addpkg "wifi-firmware-rtw89-kmod-rtw8852a"; return 1 ;;
|
|
0xa85a) addpkg "wifi-firmware-rtw89-kmod-rtw8852a"; return 1 ;;
|
|
0xb852) addpkg "wifi-firmware-rtw89-kmod-rtw8852b"; return 1 ;;
|
|
0xb85b) addpkg "wifi-firmware-rtw89-kmod-rtw8852b"; return 1 ;;
|
|
0xc852) addpkg "wifi-firmware-rtw89-kmod-rtw8852c"; return 1 ;;
|
|
0x8922) addpkg "wifi-firmware-rtw89-kmod-rtw8922a"; return 1 ;;
|
|
|
|
### <<<
|
|
esac
|
|
}
|
|
|
|
|
|
pci_network_realtek()
|
|
{
|
|
|
|
for _drv in rtw88 rtw89; do
|
|
pci_network_realtek_${_drv} "$1"
|
|
case $? in
|
|
1) break ;;
|
|
esac
|
|
done
|
|
}
|