Skip to content
Snippets Groups Projects
Select Git revision
  • b58101b30839c5b1c43a7fc83dbc59d6907c8e77
  • experimental default protected
  • v2023.2.5-ffs
  • nrb/ex400-remove-wps
  • nrb/airmax-test
  • v2023.2.4-ffs
  • nrb/ar9344-reset-sequence
  • autinerd/experimental-openwrt-24.10
  • v2023.2.3-ffs
  • v2023.2.2-ffs
  • v2023.2-ffs
  • v2023.1-ffs
  • v2022.1.4-ffs
  • feature/addMikrotikwAP
  • v2022.1.3-ffs
  • v2021.1.2-ffs
  • v2022.1.1-ffs
  • master protected
  • v2021.1.1-ffs
  • nrb/gluon-master-cpe510
  • v2021.1-ffs
  • experimental-2025-06-25
  • experimental-2025-06-25-base
  • experimental-2025-06-24
  • experimental-2025-06-24-base
  • experimental-2025-06-22
  • experimental-2025-06-22-base
  • v2023.2.5-ffs0.1
  • experimental-2025-06-08
  • experimental-2025-06-08-base
  • experimental-2025-06-06
  • experimental-2025-06-06-base
  • experimental-2025-05-27
  • experimental-2025-05-27-base
  • experimental-2025-05-18
  • experimental-2025-05-18-base
  • experimental-2025-05-15
  • experimental-2025-05-15-base
  • experimental-2025-05-13
  • experimental-2025-05-13-base
  • experimental-2025-05-08
41 results

0006-ramips-add-MT7621-WiFi-devpath-migration.patch

Blame
  • 0006-ramips-add-MT7621-WiFi-devpath-migration.patch 1.45 KiB
    From: David Bauer <mail@david-bauer.net>
    Date: Sat, 18 Jun 2022 02:37:56 +0200
    Subject: ramips: add MT7621 WiFi devpath migration
    
    Add a migration script to migrate the device path of PCIe WiFi hardware
    from OpenWrt 19.07 to the one used with OpenWrt 21.02+.
    
    Signed-off-by: David Bauer <mail@david-bauer.net>
    
    diff --git a/target/linux/ramips/mt7621/base-files/etc/hotplug.d/ieee80211/00-wifi-migration b/target/linux/ramips/mt7621/base-files/etc/hotplug.d/ieee80211/00-wifi-migration
    new file mode 100644
    index 0000000000000000000000000000000000000000..17fd4a58ff2d56694743e149292746c136b6f27a
    --- /dev/null
    +++ b/target/linux/ramips/mt7621/base-files/etc/hotplug.d/ieee80211/00-wifi-migration
    @@ -0,0 +1,38 @@
    +#!/bin/sh
    +
    +# Migrate WiFi path from 19.07 to 21.02+
    +
    +WIFI_PATH_CHANGED=0
    +
    +. /lib/functions.sh
    +
    +migrate_wifi_path() {
    +	local section="$1"
    +	local path
    +
    +	config_get path ${section} path
    +	case ${path} in
    +		"pci0000:00/0000:00:00.0/0000:01:00.0")
    +			path="1e140000.pcie/pci0000:00/0000:00:00.0/0000:01:00.0"
    +			WIFI_PATH_CHANGED=1
    +		;;
    +		"pci0000:00/0000:00:01.0/0000:02:00.0")
    +			path="1e140000.pcie/pci0000:00/0000:00:01.0/0000:02:00.0"
    +			WIFI_PATH_CHANGED=1
    +		;;
    +		*)
    +			return 0
    +		;;
    +	esac
    +
    +	uci set wireless.${section}.path=${path}
    +}
    +
    +[ "${ACTION}" = "add" ] && {
    +	[ ! -e /etc/config/wireless ] && return 0
    +
    +	config_load wireless
    +	config_foreach migrate_wifi_path wifi-device
    +
    +	[ "${WIFI_PATH_CHANGED}" = "1" ] && uci commit wireless
    +}