[][MAC80211][WiFi7][app][convert mwtcl cmd to mt76 internal debug cmd]

[Description]
Add support convert two mwctl commands to mt76 internal debug commands.
The purpose of this commit is to support receiving mwctl command from
CAPI for WiFi7 R1 cert.

The conversion shows as below:
1. iwpriv %s set txbftxsndinfo=1:0:0:f -> echo 1:0:0:f >
/sys/kernel/debug/ieee80211/phy0/mt76/band0/bf_txsnd_info
2. mwctl %s set muruDbgInfo=64-1 -> echo 64-1 >
/sys/kernel/debug/ieee80211/phy0/mt76/muru_dbg

[Release-log]
N/A


Change-Id: I912339981ce44860e456de9c9b65a5ad155c0135
Reviewed-on: https://gerrit.mediatek.inc/c/openwrt/feeds/mtk_openwrt_feeds/+/9253496
diff --git a/feed/app/atenl/files/iwpriv.sh b/feed/app/atenl/files/iwpriv.sh
index 0fe319d..b636bf8 100755
--- a/feed/app/atenl/files/iwpriv.sh
+++ b/feed/app/atenl/files/iwpriv.sh
@@ -1256,6 +1256,22 @@
             fi
             skip=1
             ;;
+    	"txbftxsndinfo"|"TxBfTxSndInfo")
+            cert_cmd="$*"
+            cmd_setting=$(echo $cert_cmd | awk -F'=' '{print $2}')
+            snd_cmd_base="/sys/kernel/debug/ieee80211/phy0/mt76/band0/bf_txsnd_info"
+            mt76_snd_cmd="echo $cmd_setting > $snd_cmd_base"
+            do_cmd "$mt76_snd_cmd"
+            skip=1
+            ;;
+    	"muruDbgInfo")
+            cert_cmd="$*"
+            cmd_setting=$(echo $cert_cmd | awk -F'=' '{print $2}')
+            muru_cmd_base="/sys/kernel/debug/ieee80211/phy0/mt76/muru_dbg"
+            mt76_muru_cmd="echo $cmd_setting > $muru_cmd_base"
+            do_cmd "$mt76_muru_cmd"
+            skip=1
+            ;;
         "ATE")
             do_ate_work ${param}