diff options
| author | FUKAUMI Naoki | 2024-07-10 21:33:41 +0000 |
|---|---|---|
| committer | Hauke Mehrtens | 2024-07-23 21:49:36 +0000 |
| commit | 2d31004133838faab8a8882eb251819754a225c4 (patch) | |
| tree | a0d01dd1c7534ff3fa2df15f49b64662c7469071 | |
| parent | 06b37a5856ac7d0a2ddc2c0745ac1da3a01688d6 (diff) | |
| download | openwrt-2d31004133838faab8a8882eb251819754a225c4.tar.gz | |
wifi-scripts: add missing dependency on ucode-mod-rtnl
rtnl is used in hostap/common.uc.
$ grep -r rtnl files
files/usr/share/hostap/common.uc:import * as rtnl from "rtnl";
files/usr/share/hostap/common.uc: rtnl.request(rtnl.const.RTM_SETLINK, 0, { dev: reuse_ifname, ifname: name}) != false))
files/usr/share/hostap/common.uc: rtnl.request(rtnl.const.RTM_SETLINK, 0, { dev: name, change: 1, flags: up ? 1 : 0 });
Signed-off-by: FUKAUMI Naoki <naoki@radxa.com>
Link: https://github.com/openwrt/openwrt/pull/15922
Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
| -rw-r--r-- | package/network/config/wifi-scripts/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/network/config/wifi-scripts/Makefile b/package/network/config/wifi-scripts/Makefile index 8074f90105..ae41f74949 100644 --- a/package/network/config/wifi-scripts/Makefile +++ b/package/network/config/wifi-scripts/Makefile @@ -19,7 +19,7 @@ include $(INCLUDE_DIR)/package.mk define Package/wifi-scripts SECTION:=utils CATEGORY:=Base system - DEPENDS:=+netifd +ucode +ucode-mod-nl80211 +ucode-mod-ubus +ucode-mod-uci + DEPENDS:=+netifd +ucode +ucode-mod-nl80211 +ucode-mod-rtnl +ucode-mod-ubus +ucode-mod-uci TITLE:=Wi-Fi configuration scripts PKGARCH:=all endef |