Linux WIFI,4G 内核配置,以MT7601U 为例

1.config - Linux/arm 4.9.37 Kernel Configuration 2 Device Drivers 3 -> [*] USB support 4 //4G配置 5 --><*> USB Serial Converter support 6 ---><*> USB driver for GSM and CDMA modems 7 -> [*] Network device support 8 //wifi 9 -->[*] Wireless LAN 10 --->[*] MediaTek devices 11 ----><M> MediaTek MT7601U (USB) support 12 ---><*> USB ZD1201 based Wireless device support 13 //4G 14 --><*> USB Network Adapters 15 ---><*> Multi-purpose USB Networking Framework 16 ----<*>Host for RNDIS and ActiveSync devices 17 --><*> PPP (point-to-point protocol) support 18 ---><*> PPP BSD-Compress compression 19 ---><*> PPP Deflate compression 20 --->[*] PPP filtering 21 ---><*> PPP MPPE compression (encryption) 22 --->[*] PPP multilink support 23 ---><*> PPP over Ethernet 24 ---><*> PPP support for async serial ports 25 ---><*> PPP support for sync tty ports 26 -> Character devices 27 //串口 28 --> Serial drivers 29 ---> <*> ARM AMBA PL011 serial port support 30 ---> [*] Support for console on AMBA serial port 31[*] Networking support (优先设置) 32 -> Networking options 33 --> <*> Packet socket 34 -->[*] TCP/IP networking 35 //DHCP配置 36 ---> [*] IP: DHCP support 37 ---> [*] IP: BOOTP support 38 ---> [*] IP: RARP support 39 ->-*- Wireless 40 --> <*> cfg80211 - wireless configuration API 41 --> <*> Generic IEEE 802.11 Networking Stack (mac80211) 42 43配置Busybox,使能以下选项: 44Networking Utilities 45 -> [*] udhcp client for DHCPv6 (udhcpc6) 46 -> [*] udhcp server (udhcpd) 47 -> [*] dhcprelay 48 -> [*] udhcp client (udhcpc) 49 -->[*] Verify that the offered address is free, using ARP ping (NEW) 50 -->[*] Do not pass malformed host and domain names (NEW) 51 -->[*] Support for RFC3397 domain search (experimental) (NEW) 52 -->[*] Support for 802.1Q VLAN parameters (NEW)
点赞
收藏

评论区

加载中...

相关推荐

MySQL:[Err] 1292 - Incorrect datetime value: ‘0000-00-00 00:00:00‘ for column ‘CREATE_TIME‘ at row 1

文章目录问题用navicat导入数据时,报错:原因这是因为当前的MySQL不支持datetime为0的情况。解决修改sql\mode:sql\mode:SQLMode定义了MySQL应支持的SQL语法、数据校验等,这样可以更容易地在不同的环境中使用MySQL。全局s

Oracle 分组与拼接字符串同时使用

SELECTT.,ROWNUMIDFROM(SELECTT.EMPLID,T.NAME,T.BU,T.REALDEPART,T.FORMATDATE,SUM(T.S0)S0,MAX(UPDATETIME)CREATETIME,LISTAGG(TOCHAR(

手写Java HashMap源码

HashMap的使用教程HashMap的使用教程HashMap的使用教程HashMap的使用教程HashMap的使用教程22

Hadoop调优

HDFS核心参数NameNode,DataNode内存配置查看NameNode,DataNode占用内存shelljpsjmapheap2611jmapheap2744经验shellNameNode最小值1G,每增加100w个block,增加1G内存DataNode最小值4G,副本总数超过400w时,每增加1

MyCat 在 MySQL 主从复制基础上实现读写分离

一、环境操作系统:CentOS6.7x86_64binDVD1.isoJDK版本:jdk1.8.0_45MyCat版本:Mycatserver1.6MyCat节点IP:10.1.10.15主机名:ebusmycat01主机配置:4核CPU、4G内存MySQL版本

APP测试点总结

APP测试点总结1.功能性测试:  ——根据产品需求文档编写测试用例。  ——软件设计文档编写用例。  注意:就是根据产品需求文档编写测试用例而进行测试。2.兼容性测试:  ——android版本的兼容性  ——手机分辨率兼容性  ——网络的兼容性:2G\\3G\\4G\\WIFI,弱网下、断网时  ——app跨版本的兼容性  1.适配

Linux WIFI,4G 内核配置,以MT7601U 为例 - HelloWorld