[rdkb][mt7986][app][Add uci command]

[Description]
Add uci command
1. add uci bb file , version aligned to openwrt
2. add wireless default config for uci

[Release-log]

diff --git a/recipes-connectivity/hostapd/files/wireless b/recipes-connectivity/hostapd/files/wireless
new file mode 100644
index 0000000..5fea015
--- /dev/null
+++ b/recipes-connectivity/hostapd/files/wireless
@@ -0,0 +1,29 @@
+config wifi-device 'radio0'

+        option type 'mac80211'

+        option path 'platform/18000000.wbsys'

+        option channel '1'

+        option band '2g'

+        option htmode 'HE20'

+        option disabled '1'

+

+config wifi-iface 'default_radio0'

+        option device 'radio0'

+        option network 'lan'

+        option mode 'ap'

+        option ssid 'Filogic'

+        option encryption 'none'

+

+config wifi-device 'radio1'

+        option type 'mac80211'

+        option path 'platform/18000000.wbsys+1'

+        option channel '36'

+        option band '5g'

+        option htmode 'HE80'

+        option disabled '1'

+

+config wifi-iface 'default_radio1'

+        option device 'radio1'

+        option network 'lan'

+        option mode 'ap'

+        option ssid 'Filogic_5'

+        option encryption 'none'
\ No newline at end of file