USB Function Controller 与 USB Host Controller Drivers的区别?

yyhzpk 2008-04-14 08:43:51
如题,诚心请教
...全文
1660 12 打赏 收藏 转发到动态 举报
写回复
用AI写文章
12 条回复
切换为时间正序
请发表友善的回复…
发表回复
iwillbeback008 2008-12-12
  • 打赏
  • 举报
回复
路过,学习,
也是在疑惑了怎样使CE5.0通过USB支持同步的问题才发现USB的这两种形式的具体区别。
别问了 2008-04-18
  • 打赏
  • 举报
回复
我的usb键盘在bios启动和dos下,可以用。但由dos进入wince时,就出现蜂鸣器长响。

我认为是wince的硬件驱动HCD不支持AMD LX800型号为cs5536的chipset。

现在想象大家讨教个方法,怎样解决这个问题。

KevinCEC 2008-04-18
  • 打赏
  • 举报
回复
USB Function Controller Driver 不是Client的驱动。
beyondma 2008-04-18
  • 打赏
  • 举报
回复
host是主,是要提供电源的吧.
tianix 2008-04-17
  • 打赏
  • 举报
回复
进来学习!
别问了 2008-04-17
  • 打赏
  • 举报
回复
应该是芯片不同。
hahagoodhaha 2008-04-17
  • 打赏
  • 举报
回复
USB Host Controller Drivers 就是设备作为Host时的USB驱动.
而USB Function Controller Driver就是设备作为Client时的驱动,这个驱动负责Client(umass、serial、rndis)的选择与切换,
在注册表里可以设置default client,系统启动后也可动态切换客户端
Mangafan 2008-04-17
  • 打赏
  • 举报
回复

我以前做Windows CE 5.0软件的时候就是因为没有搞清楚这个问题而走了N多弯路.
要是我早来CSDN就好了...
KevinCEC 2008-04-16
  • 打赏
  • 举报
回复
USB可以分成主和从的接口,例如电脑上的USB就是主接口,主接口要供电的。而普通的U盘就是从USB接口,不供电。
而wince是即支持主USB接口 也支持从USB接口,因为wince系统即可以被当作普通电脑利用主USB访问U盘等外接设备,也可以当作外接设备被普通电脑访问。
这个取决于硬件。

USB Host Controller Drivers 就是主USB接口的驱动。

如 msdn 所示:
Windows Embedded CE supports universal serial bus (USB) 2.0. This section provides links to topics that explain USB host controller drivers,
the provided sample drivers, the required registry settings, and a programming reference.

Windows Embedded CE supports multiple host controllers. A host controller is a hardware component that is contained in a host computer.
The host controller driver converts data between the format that is used by the host computer and the format used by the USB host controller.
You must write a USB host controller driver only if you are building a hardware platform with host controller hardware that
does not conform to one of the host controller specifications: universal host controller interface (UHCI),
open host controller interface (OHCI), or enhanced host controller interface (EHCI).

OHCI or UHCI drivers must link with Hcdlib.lib.
This library implements common functionality for OHCI and UHCI. In Windows CE .NET 4.1 and earlier,
a platform that built its own OHCI or UHCI linked with Ohcdmdd2.lib or Uhcdmdd.lib.
With Windows CE .NET 4.2 and later, they must also link with Hcdlib.lib. Hcdlib.lib
implements functionality that is common between OHCI and UHCI.


USB Function Controller Driver
是指USB功能控制的一个驱动,可以利用此功能,完成自己基于USB的产品驱动开发。

如msdn所示:
Beginning with Windows CE 5.0, universal serial bus (USB)
function controller drivers are no longer monolithic.
A monolithic driver combines all platform dependent drivers (PDDs) and model device drivers (MDDs) into one driver.

USB function controller drivers are layered drivers.
They contain an MDD and a PDD. This eases portability across hardware platforms.
The client drivers are abstracted as separate clients that are loaded by the USB function driver.
For more information about MDDs, PDDs, and monolithic drivers,
see Layered Drivers vs. Monolithic Drivers.


csdn自动分行也太长点吧
KevinCEC 2008-04-16
  • 打赏
  • 举报
回复
USB可以分成主和从的接口,例如电脑上的USB就是主接口,主接口要供电的。而普通的U盘就是从USB接口,不供电。
而wince是即支持主USB接口 也支持从USB接口,因为wince系统即可以被当作普通电脑利用主USB访问U盘等外接设备,也可以当作外接设备被普通电脑访问。
这个取决于硬件。

USB Host Controller Drivers 就是主USB接口的驱动。

如 msdn 所示:
Windows Embedded CE supports universal serial bus (USB) 2.0. This section provides links to topics that explain USB host controller drivers, the provided sample drivers, the required registry settings, and a programming reference.

Windows Embedded CE supports multiple host controllers. A host controller is a hardware component that is contained in a host computer. The host controller driver converts data between the format that is used by the host computer and the format used by the USB host controller. You must write a USB host controller driver only if you are building a hardware platform with host controller hardware that does not conform to one of the host controller specifications: universal host controller interface (UHCI), open host controller interface (OHCI), or enhanced host controller interface (EHCI).

OHCI or UHCI drivers must link with Hcdlib.lib. This library implements common functionality for OHCI and UHCI. In Windows CE .NET 4.1 and earlier, a platform that built its own OHCI or UHCI linked with Ohcdmdd2.lib or Uhcdmdd.lib. With Windows CE .NET 4.2 and later, they must also link with Hcdlib.lib. Hcdlib.lib implements functionality that is common between OHCI and UHCI.


USB Function Controller Driver
是指USB功能控制的一个驱动,可以利用此功能,完成自己基于USB的产品驱动开发。

如msdn所示:
Beginning with Windows CE 5.0, universal serial bus (USB) function controller drivers are no longer monolithic. A monolithic driver combines all platform dependent drivers (PDDs) and model device drivers (MDDs) into one driver.

USB function controller drivers are layered drivers. They contain an MDD and a PDD. This eases portability across hardware platforms. The client drivers are abstracted as separate clients that are loaded by the USB function driver. For more information about MDDs, PDDs, and monolithic drivers, see Layered Drivers vs. Monolithic Drivers.







KevinCEC 2008-04-16
  • 打赏
  • 举报
回复
不知道你的新和旧是什么区别,有可能采用的芯片不一样,所以要选择不同的驱动.

标准的USB驱动就有 OHCI UHCI之分.
别问了 2008-04-16
  • 打赏
  • 举报
回复
Windows CE 5.0开发的操作系统,在研华比较旧的主板上能够支持USB 鼠标、键盘和U盘,而在新主板上不支持USB 鼠标、键盘和U盘。

我认为是Windows CE的低层的硬件驱动支持旧的,而不支持新的。

我想请教一下楼上兄弟,我分析的对不对,以及如何解决?
STMicroelectronics STM32F1 Series Device Support, Drivers and Examples Version: 2.1.0 Keil.STM32F1xx_DFP.2.1.0.pack Updated CMSIS drivers: EMAC: Improved robustness by function checking that driver is powered (EMAC_FLAG_POWER) CAN: Corrected functionality when only one CAN controller is used Corrected pin remap configuration for CAN2 port pins Corrected functionality when NULL pointer is provided for one or both signal callbacks in Initialize function USB Device: Corrected Isochronous transfer Corrected IN Endpoint FIFO flush procedure USB Host: Removed interrupt priority handling Corrected multiple packet sending Corrected PowerControl function for unconditional Power Off USART: Corrected Peripheral Reset and Clock enable/disable (check if peripheral is available on selected device) Corrected CTS handling and added signal CTS change event. SPI: Corrected Peripheral Reset and Clock enable/disable (check if peripheral is available on selected device) Corrected Bus Speed configuration Corrected 8bit/16bit Data register access, regarding the Data frame size -I2C: Corrected invalid __I2C_DMA field in I2C_DMA_TxEvent and I2C_DMA_RxEvent functions Updated/added examples: Added examples using Network DualStack (IPv4/IPv6) Middleware targeting MCBSTM32C (Keil.MDK-Middleware.7.0.0.pack required) Updated emWin examples to emWin V5.32 Updated CAN examples Updated USB Host examples Updated USB Device CDC ACM VirtualCOM examples Updated RTE_Device.h: Corrected USART Pin configuration Added trace configuration to the debug description and updated Quick Start Guide
1B在全志r16平台tinav2.5系统下调通RTL8188FU 2018/5/11 14:49 版本:V1.0 开发板:客户提供 SDK:tina v2.5 1、01原始编译全志r16平台tinav2.5系统: rootroot@cm88:~$ cd /home/wwt rootroot@cm88:/home/wwt$ rootroot@cm88:/home/wwt$ md5sum tinav2.5_orig_r16repack_20171214_1114.tar.gz aa13de7313f393ca25375d9802a65da8 tinav2.5_orig_r16repack_20171214_1114.tar.gz rootroot@cm88:/home/wwt$ tar zxvf tinav2.5_orig_r16repack_20171214_1114.tar.gz rootroot@cm88:/home/wwt$ cd tinav2.5/ rootroot@cm88:/home/wwt/tinav2.5$ rootroot@cm88:/home/wwt/tinav2.5$ 7za x com_tinav2.5通用修改2没有外层目录_干掉AXP223的温度检测20180326_1023.7z -r -o./ rootroot@cm88:/home/wwt/tinav2.5$ source build/envsetup.sh (请严重注意:lunch之后的选项是环境依赖的,请选择astar_parrot-tina前的实际数值!) rootroot@cm88:/home/wwt/tinav2.5$ lunch 32. astar_parrot-tina Which would you like?32 rootroot@cm88:/home/wwt/tinav2.5$ make -j12 rootroot@cm88:/home/wwt/tinav2.5$ pack -d rootroot@cm88:/home/wwt/tinav2.5$ 2、 rootroot@cm88:/home/wwt/tinav2.5$ rootroot@cm88:/home/wwt/tinav2.5$ cd lichee/linux-3.4/drivers/net/wireless/ rootroot@cm88:/home/wwt/tinav2.5/lichee/linux-3.4/drivers/net/wireless$ rootroot@cm88:/home/wwt/tinav2.5/lichee/linux-3.4/drivers/net/wireless$ tar zxvf rtl8188FU_linux_v5.2.11.1_22924.20170703.tar.gz rootroot@cm88:/home/wwt/tinav2.5/lichee/linux-3.4/drivers/net/wireless$ rootroot@cm88:/home/wwt/tinav2.5/lichee/linux-3.4/drivers/net/wireless$ mv rtl8188FU_linux_v5.2.11.1_22924.20170703 rtl8188fu 维权之R16平台配置Makefile: W:\tinav2.5\lichee\linux-3.4\drivers\net\wireless\rtl8188fu\Makefile ########################## WIFI IC ############################ CONFIG_MULTIDRV = n (可选增加) CONFIG_RTL8192C = n CONFIG_RTL8192D = n CONFIG_RTL8723A = n CONFIG_RTL8188E = n CONFIG_RTL8812A = n CONFIG_RTL8821A = n CONFIG_RTL8192E = n CONFIG_RTL8723B = n CONFIG_RTL8814A = n CONFIG_RTL8723C = n CONFIG_RTL8188F = y CONFIG_RTL8822B = n CONFIG_RTL8723D = n CONFIG_RTL8821C = n ###################### Platform Related ####################### (务必修改,否则就是X86架构了) CONFIG_PLATFORM_I386_PC = n CONFIG_PLATFORM_ANDROID_X86 = n CONFIG_PLATFORM_ANDROID_INTEL_X86 = n CONFIG_PLATFORM_JB_X86 = n CONFIG_PLATFORM_ARM_S3C2K4 = n CONFIG_PLATFORM_ARM_PXA2XX = n CONFIG_PLATFORM_ARM_S3C6K4 = n CONFIG_PLATFORM_MIPS_RMI = n CONFIG_PLATFORM_RTD2880B = n CONFIG_PLATFORM_MIPS_AR9132 = n CONFIG_PLATFORM_RTK_DMP = n CONFIG_PLATFORM_MIPS_PLM = n CONFIG_PLATFORM_MSTAR389 = n CONFIG_PLATFORM_MT53XX = n CONFIG_PLATFORM_ARM_MX51_241H = n CONFIG_PLATFORM_FS_MX61 = n CONFIG_PLATFORM_ACTIONS_ATJ227X = n CONFIG_PLATFORM_TEGRA3_CARDHU = n CONFIG_PLATFORM_TEGRA4_DALMORE = n CONFIG_PLATFORM_ARM_TCC8900 = n CONFIG_PLATFORM_ARM_TCC8920 = n CONFIG_PLATFORM_ARM_TCC8920_JB42 = n CONFIG_PLATFORM_ARM_TCC8930_JB42 = n CONFIG_PLATFORM_ARM_RK2818 = n CONFIG_PLATFORM_ARM_RK3066 = n CONFIG_PLATFORM_ARM_RK3188 = n CONFIG_PLATFORM_ARM_URBETTER = n CONFIG_PLATFORM_ARM_TI_PANDA = n CONFIG_PLATFORM_MIPS_JZ4760 = n CONFIG_PLATFORM_DMP_PHILIPS = n (可选修改) CONFIG_PLATFORM_TI_DM365 = n CONFIG_PLATFORM_MSTAR_TITANIA12 = n CONFIG_PLATFORM_MSTAR = n CONFIG_PLATFORM_SZEBOOK = n CONFIG_PLATFORM_ARM_SUNxI = n CONFIG_PLATFORM_ARM_SUN6I = n CONFIG_PLATFORM_ARM_SUN7I = n CONFIG_PLATFORM_ARM_SUN8I_W3P1 = n (务必修改,配置为全志R16平台) CONFIG_PLATFORM_ARM_SUN8I_W5P1 = y W:\tinav2.5\lichee\linux-3.4\drivers\net\wireless\Kconfig source "drivers/net/wireless/ath/Kconfig" source "drivers/net/wireless/b43/Kconfig" source "drivers/net/wireless/b43legacy/Kconfig" source "drivers/net/wireless/bcmdhd/Kconfig" source "drivers/net/wireless/brcm80211/Kconfig" source "drivers/net/wireless/hostap/Kconfig" source "drivers/net/wireless/ipw2x00/Kconfig" source "drivers/net/wireless/iwlwifi/Kconfig" source "drivers/net/wireless/iwlegacy/Kconfig" source "drivers/net/wireless/iwmc3200wifi/Kconfig" source "drivers/net/wireless/libertas/Kconfig" source "drivers/net/wireless/orinoco/Kconfig" source "drivers/net/wireless/p54/Kconfig" source "drivers/net/wireless/rt2x00/Kconfig" source "drivers/net/wireless/rtlwifi/Kconfig" source "drivers/net/wireless/wl1251/Kconfig" source "drivers/net/wireless/wl12xx/Kconfig" source "drivers/net/wireless/zd1211rw/Kconfig" source "drivers/net/wireless/mwifiex/Kconfig" source "drivers/net/wireless/rtl8188eu/Kconfig" source "drivers/net/wireless/rtl8188fu/Kconfig" source "drivers/net/wireless/rtl8189es/Kconfig" source "drivers/net/wireless/rtl8723bs/Kconfig" source "drivers/net/wireless/esp8089/Kconfig" source "drivers/net/wireless/rtl8723bs_vq0/Kconfig" W:\tinav2.5\lichee\linux-3.4\drivers\net\wireless\Makefile obj-$(CONFIG_HOSTAP) += hostap/ obj-$(CONFIG_B43) += b43/ obj-$(CONFIG_B43LEGACY) += b43legacy/ obj-$(CONFIG_ZD1211RW) += zd1211rw/ obj-$(CONFIG_RTL8180) += rtl818x/ obj-$(CONFIG_RTL8187) += rtl818x/ obj-$(CONFIG_RTLWIFI) += rtlwifi/ obj-$(CONFIG_RTL8188EU) += rtl8188eu/ obj-$(CONFIG_RTL8188FU) += rtl8188fu/ obj-$(CONFIG_RTL8189ES) += rtl8189es/ obj-$(CONFIG_RTL8723BS) += rtl8723bs/ obj-$(CONFIG_ESP8089) += esp8089/ obj-$(CONFIG_ESP8089) += esp_prealloc/ obj-$(CONFIG_RTL8723BS_VQ0) += rtl8723bs_vq0/ 3、 W:\tinav2.5\package\firmware\linux-firmware\realtek.mk Package/r8188eu-firmware = $(call Package/firmware-default,RealTek RTL8188EU firmware) define Package/r8188eu-firmware/install $(INSTALL_DIR) $(1)/lib/firmware/rtlwifi # #$(CP) \ # $(PKG_BUILD_DIR)/rtlwifi/rtl8188eufw.bin \ # $(1)/lib/firmware/rtlwifi endef $(eval $(call BuildPackage,r8188eu-firmware)) (RTL8188FU请直接参照RTL8188EU修改即可:) Package/r8188fu-firmware = $(call Package/firmware-default,RealTek RTL8188FU firmware) define Package/r8188fu-firmware/install $(INSTALL_DIR) $(1)/lib/firmware/rtlwifi # #$(CP) \ # $(PKG_BUILD_DIR)/rtlwifi/rtl8188fufw.bin \ # $(1)/lib/firmware/rtlwifi endef $(eval $(call BuildPackage,r8188fu-firmware)) Package/r8723bs-firmware = $(call Package/firmware-default,RealTek RTL8723BS firmware) define Package/r8723bs-firmware/install $(INSTALL_DIR) $(1)/lib/firmware/rtlwifi # #$(CP) \ # $(PKG_BUILD_DIR)/rtlwifi/rtl8188eufw.bin \ # $(1)/lib/firmware/rtlwifi endef $(eval $(call BuildPackage,r8723bs-firmware)) 4、 W:\tinav2.5\package\kernel\linux\modules\wireless.mk # # Copyright (C) 2006-2008 OpenWrt.org # # This is free software, licensed under the GNU General Public License v2. # See /LICENSE for more information. # WIRELESS_MENU:=Wireless Drivers define KernelPackage/net-rtl8188eu SUBMENU:=$(WIRELESS_MENU) TITLE:=RTL8188EU support (staging) DEPENDS:=@USB_SUPPORT +@DRIVER_WEXT_SUPPORT +r8188eu-firmware +kmod-usb-core # KCONFIG:=\ # CONFIG_STAGING=y \ # CONFIG_R8188EU \ # CONFIG_88EU_AP_MODE=y \ # CONFIG_88EU_P2P=n FILES:=$(LINUX_DIR)/drivers/net/wireless/rtl8188eu/8188eu.ko AUTOLOAD:=$(call AutoProbe,8188eu) endef define KernelPackage/net-rtl8188eu/description Kernel modules for RealTek RTL8188EU support endef $(eval $(call KernelPackage,net-rtl8188eu)) (RTL8188FU请直接参照RTL8188EU修改即可:) define KernelPackage/net-rtl8188fu SUBMENU:=$(WIRELESS_MENU) TITLE:=RTL8188FU support (staging) DEPENDS:=@USB_SUPPORT +@DRIVER_WEXT_SUPPORT +r8188fu-firmware +kmod-usb-core # KCONFIG:=\ # CONFIG_STAGING=y \ # CONFIG_R8188FU \ # CONFIG_88FU_AP_MODE=y \ # CONFIG_88FU_P2P=n FILES:=$(LINUX_DIR)/drivers/net/wireless/rtl8188fu/8188fu.ko AUTOLOAD:=$(call AutoProbe,8188fu) endef define KernelPackage/net-rtl8188fu/description Kernel modules for RealTek RTL8188FU support endef $(eval $(call KernelPackage,net-rtl8188fu)) define KernelPackage/net-rtl8723bs SUBMENU:=$(WIRELESS_MENU) TITLE:=RTL8723BS support (staging) DEPENDS:=@USB_SUPPORT +@DRIVER_WEXT_SUPPORT +r8723bs-firmware # KCONFIG:=\ # CONFIG_STAGING=y \ # CONFIG_R8723BS \ # CONFIG_23BS_AP_MODE=y \ # CONFIG_23BS_P2P=n FILES:=$(LINUX_DIR)/drivers/net/wireless/rtl8723bs/8723bs.ko AUTOLOAD:=$(call AutoProbe,8723bs) endef define KernelPackage/net-rtl8723bs/description Kernel modules for RealTek RTL8723BS support endef $(eval $(call KernelPackage,net-rtl8723bs)) define KernelPackage/cfg80211 SUBMENU:=$(WIRELESS_MENU) TITLE:=cfg80211 support (staging) DEPENDS:= FILES:=$(LINUX_DIR)/net/wireless/cfg80211.ko AUTOLOAD:=$(call AutoProbe,cfg80211) endef define KernelPackage/cfg80211/description Kernel modules for CFG80211 support endef $(eval $(call KernelPackage,cfg80211)) 5、配置文件: W:\tinav2.5\target\allwinner\astar-parrot\configs\sys_config.fex ;---------------------------------------------------------------------------------- ;dcdc1_vol ---set dcdc1 voltage,mV,1600-3400,100mV/step ;dcdc2_vol ---set dcdc2 voltage,mV,600-1540,20mV/step ;dcdc3_vol ---set dcdc3 voltage,mV,600-1860,20mV/step ;dcdc4_vol ---set dcdc4 voltage,mV,600-1540,20mV/step ;dcdc5_vol ---set dcdc5 voltage,mV,1000-2550,50mV/step ;aldo2_vol ---set aldo2 voltage,mV,700-3300,100mV/step ;aldo3_vol ---set aldo3 voltage,mV,700-3300,100mV/step ;---------------------------------------------------------------------------------- [power_sply] dcdc1_vol = 3000 dcdc2_vol = 1100 dcdc3_vol = 1200 dcdc4_vol = 0 dcdc5_vol = 1500 aldo2_vol = 2500 aldo3_vol = 3000 dldo3_vol = 2800 ldoio1_vol = 3300 ldoio0_vol = 3300 eldo2_vol = 1800 eldo1_vol = 1800 ;---------------------------------------------------------------------------------- ;usb configuration ;usb_used: usb controller enable, 0-disable, 1-enable ;usb_port_type: usb mode: 0-device, 1-host, 2-otg ;usb_detect_type: usb hotplug detect mode, 0-none, 1-vbus/id detect, 2-id/dpdm detect ;usb_id_gpio: usb id detect IO ;usb_det_vbus_gpio: usb vbus detect IO, "axp_ctrl" for axp ;usb_drv_vbus_gpio: usb dirve vbus IO ;usb_restrict_gpio: usb current restrict IO ;usb_restric_flag: usb current restrict flag ;---------------------------------------------------------------------------------- [usbc0] usb_used = 1 usb_port_type = 0 ;-------------------------------------------------------------------------------- ;wifi/bt/fm/gps/nfc modules configuration ;module_num: ; 0- none ; 1- ap6181(wifi) ; 2- ap6210(wifi+bt) ; 3- rtl8188eu(wifi)/rtl8188fu(wifi) ; 4- rtl8723au(wifi+bt) ; 5- rtl8723bs(wifi+bt) ; 6- esp8089(wifi) ; 7- ap6476(wifi+bt+fm+gps) ; 8- ap6330(wifi+bt+fm) ; 9- gb9663(wifi+bt+fm) ; 10- ap6212(wifi+bt+fm) ;module_power1: ""- bat, "axp_dldo1"- axp dldo1 ;module_power1_vol: power1 voltage, mv; not used for module_power1 is "" ;module_power2: ""- bat, "axp_dldo2"- axp dldo2 ;module_power2_vol: power2 voltage, mv; not used for module_power2 is "" ;module_power3: ""- bat, "axp_dldo2"- axp dldo2 ;module_power3_vol: power3 voltage, mv; not used for module_power3 is "" ;power_switch: module power switch io when bat supply ;chip_en: enable chip io ;lpo_use_apclk: ""- not use, "losc_out"- a23/33, "ac10032k1"、"ac10032k2"、"ac10032k3"- a80/a83 ;-------------------------------------------------------------------------------- [rf_para] module_num = 3 module_power1 = "axp22_dldo1" module_power1_vol = 3300000 module_power2 = "axp22_dldo2" module_power2_vol = 3300000 module_power3 = "axp22_aldo1" module_power3_vol = 3300000 power_switch = chip_en = lpo_use_apclk = "losc_out" 6、这里需要断开一下SSH连接或者退出一下终端,因为修改了menuconfig的内容。貌似重新source都不行! rootroot@cm88:/home/wwt$ cd tinav2.5/ rootroot@cm88:/home/wwt/tinav2.5$ rootroot@cm88:/home/wwt/tinav2.5$ source build/envsetup.sh (请严重注意:lunch之后的选项是环境依赖的,请选择astar_parrot-tina前的实际数值!) rootroot@cm88:/home/wwt/tinav2.5$ lunch 32. astar_parrot-tina Which would you like?32 rootroot@cm88:/home/wwt/tinav2.5$ make kernel_menuconfig Device Drivers ---> [*] Network device support ---> [*] Wireless LAN ---> Broadcom FullMAC wireless cards support (/lib/firmware/fw_bcmdhd.bin) Firmware path (/lib/firmware/nvram.txt) NVRAM path Enable Chip Interface (SDIO bus interface support) ---> Interrupt type (Out-of-Band Interrupt) ---> Realtek 8188F USB WiFi (NEW) 修改为: Broadcom FullMAC wireless cards support Realtek 8188F USB WiFi 请严重注意,这里是有顺序的: rootroot@cm88:/home/wwt/tinav2.5$ make menuconfig Kernel modules ---> Wireless Drivers ---> kmod-cfg80211................................. cfg80211 support (staging) kmod-net-ap6212........................................... ap6212 support kmod-net-rtl8188eu........................... RTL8188EU support (staging) kmod-net-rtl8188fu........................... RTL8188FU support (staging) (NEW) kmod-net-rtl8723bs........................... RTL8723BS support (staging) 修改为: kmod-cfg80211................................. cfg80211 support (staging) kmod-net-ap6212........................................... ap6212 support kmod-net-rtl8188eu........................... RTL8188EU support (staging) kmod-net-rtl8188fu........................... RTL8188FU support (staging) kmod-net-rtl8723bs........................... RTL8723BS support (staging) Firmware ---> ap6212-firmware................................. Broadcom AP6212 firmware 修改为: ap6212-firmware................................. Broadcom AP6212 firmware ap6212_plus_ap6212a-firmware............. Broadcom compatibility firmware ap6212a-firmware............................... Broadcom AP6212A firmware ap6255-firmware................................. Broadcom AP6255 firmware ap6335-firmware................................. Broadcom AP6335 firmware ap6356s-firmware............................... Broadcom AP6356S firmware r8188eu-firmware.............................. RealTek RTL8188EU firmware -*- r8188fu-firmware.............................. RealTek RTL8188FU firmware r8723bs-firmware.............................. RealTek RTL8723BS firmware xr819-firmware..................................... Xradio xr819 firmware rootroot@cm88:/home/wwt/tinav2.5$ make -j12 CC [M] drivers/net/wireless/rtl8188fu/os_dep/linux/rtw_cfgvendor.o CC [M] drivers/net/wireless/rtl8188fu/os_dep/linux/wifi_regd.o CC [M] drivers/net/wireless/rtl8188fu/os_dep/linux/rtw_android.o CC [M] drivers/net/wireless/rtl8188fu/os_dep/linux/rtw_proc.o CC [M] drivers/net/wireless/rtl8188fu/os_dep/linux/ioctl_mp.o CC [M] drivers/net/wireless/rtl8188fu/hal/hal_intf.o CC [M] drivers/net/wireless/rtl8188fu/hal/hal_com.o CC [M] drivers/net/wireless/rtl8188fu/hal/hal_com_phycfg.o CC [M] drivers/net/wireless/rtl8188fu/hal/hal_phy.o CC [M] drivers/net/wireless/rtl8188fu/hal/hal_dm.o CC [M] drivers/net/wireless/rtl8188fu/hal/hal_btcoex_wifionly.o CC [M] drivers/net/wireless/rtl8188fu/hal/hal_btcoex.o CC [M] drivers/net/wireless/rtl8188fu/hal/hal_mp.o CC [M] drivers/net/wireless/rtl8188fu/hal/hal_mcc.o CC [M] drivers/net/wireless/rtl8188fu/hal/hal_hci/hal_usb.o CC [M] drivers/net/wireless/rtl8188fu/hal/led/hal_usb_led.o CC [M] drivers/net/wireless/rtl8188fu/hal/HalPwrSeqCmd.o CC [M] drivers/net/wireless/rtl8188fu/hal/rtl8188f/Hal8188FPwrSeq.o CC [M] drivers/net/wireless/rtl8188fu/hal/rtl8188f/rtl8188f_sreset.o CC [M] drivers/net/wireless/rtl8188fu/hal/rtl8188f/rtl8188f_hal_init.o CC [M] drivers/net/wireless/rtl8188fu/hal/rtl8188f/rtl8188f_phycfg.o CC [M] drivers/net/wireless/rtl8188fu/hal/rtl8188f/rtl8188f_rf6052.o CC [M] drivers/net/wireless/rtl8188fu/hal/rtl8188f/rtl8188f_dm.o CC [M] drivers/net/wireless/rtl8188fu/hal/rtl8188f/rtl8188f_rxdesc.o CC [M] drivers/net/wireless/rtl8188fu/hal/rtl8188f/rtl8188f_cmd.o CC [M] drivers/net/wireless/rtl8188fu/hal/rtl8188f/hal8188f_fw.o CC [M] drivers/net/wireless/rtl8188fu/hal/rtl8188f/usb/usb_halinit.o CC [M] drivers/net/wireless/rtl8188fu/hal/rtl8188f/usb/rtl8188fu_led.o CC [M] drivers/net/wireless/rtl8188fu/hal/rtl8188f/usb/rtl8188fu_xmit.o CC [M] drivers/net/wireless/rtl8188fu/hal/rtl8188f/usb/rtl8188fu_recv.o CC [M] drivers/net/wireless/rtl8188fu/hal/rtl8188f/usb/usb_ops.o CC [M] drivers/net/wireless/rtl8188fu/hal/efuse/rtl8188f/HalEfuseMask8188F_USB.o CC [M] drivers/net/wireless/rtl8188fu/hal/phydm/phydm_debug.o CC [M] drivers/net/wireless/rtl8188fu/hal/phydm/phydm_antdiv.o CC [M] drivers/net/wireless/rtl8188fu/hal/phydm/phydm_antdect.o CC [M] drivers/net/wireless/rtl8188fu/hal/phydm/phydm_interface.o CC [M] drivers/net/wireless/rtl8188fu/hal/phydm/phydm_hwconfig.o CC [M] drivers/net/wireless/rtl8188fu/hal/phydm/phydm.o CC [M] drivers/net/wireless/rtl8188fu/hal/phydm/halphyrf_ce.o CC [M] drivers/net/wireless/rtl8188fu/hal/phydm/phydm_dig.o CC [M] drivers/net/wireless/rtl8188fu/hal/phydm/phydm_pathdiv.o CC [M] drivers/net/wireless/rtl8188fu/hal/phydm/phydm_rainfo.o CC [M] drivers/net/wireless/rtl8188fu/hal/phydm/phydm_dynamicbbpowersaving.o CC [M] drivers/net/wireless/rtl8188fu/hal/phydm/phydm_powertracking_ce.o CC [M] drivers/net/wireless/rtl8188fu/hal/phydm/phydm_dynamictxpower.o CC [M] drivers/net/wireless/rtl8188fu/hal/phydm/phydm_adaptivity.o CC [M] drivers/net/wireless/rtl8188fu/hal/phydm/phydm_cfotracking.o CC [M] drivers/net/wireless/rtl8188fu/hal/phydm/phydm_noisemonitor.o CC [M] drivers/net/wireless/rtl8188fu/hal/phydm/phydm_acs.o CC [M] drivers/net/wireless/rtl8188fu/hal/phydm/phydm_beamforming.o CC [M] drivers/net/wireless/rtl8188fu/hal/phydm/phydm_dfs.o CC [M] drivers/net/wireless/rtl8188fu/hal/phydm/txbf/halcomtxbf.o CC [M] drivers/net/wireless/rtl8188fu/hal/phydm/txbf/haltxbfinterface.o CC [M] drivers/net/wireless/rtl8188fu/hal/phydm/txbf/phydm_hal_txbf_api.o CC [M] drivers/net/wireless/rtl8188fu/hal/phydm/phydm_adc_sampling.o CC [M] drivers/net/wireless/rtl8188fu/hal/phydm/phydm_kfree.o CC [M] drivers/net/wireless/rtl8188fu/hal/phydm/phydm_ccx.o CC [M] drivers/net/wireless/rtl8188fu/hal/phydm/phydm_psd.o CC [M] drivers/net/wireless/rtl8188fu/hal/btc/halbtc8723bwifionly.o CC [M] drivers/net/wireless/rtl8188fu/hal/btc/halbtc8822bwifionly.o CC [M] drivers/net/wireless/rtl8188fu/hal/btc/halbtc8821cwifionly.o CC [M] drivers/net/wireless/rtl8188fu/hal/phydm/rtl8188f/halhwimg8188f_bb.o CC [M] drivers/net/wireless/rtl8188fu/hal/phydm/rtl8188f/halhwimg8188f_mac.o CC [M] drivers/net/wireless/rtl8188fu/hal/phydm/rtl8188f/halhwimg8188f_rf.o CC [M] drivers/net/wireless/rtl8188fu/hal/phydm/rtl8188f/phydm_regconfig8188f.o CC [M] drivers/net/wireless/rtl8188fu/hal/phydm/rtl8188f/halphyrf_8188f.o CC [M] drivers/net/wireless/rtl8188fu/hal/phydm/rtl8188f/phydm_rtl8188f.o CC [M] drivers/net/wireless/rtl8188fu/platform/platform_ops.o CC [M] drivers/net/wireless/rtl8188fu/platform/platform_ARM_SUNxI_usb.o CC [M] drivers/net/wireless/rtl8188fu/core/rtw_mp.o LD [M] drivers/net/wireless/rtl8188fu/8188fu.o drivers/net/wireless/rtl8188fu/core/rtw_security.o: In function `is_multicast_mac_addr': rtw_security.c:(.text+0x2048): multiple definition of `is_multicast_mac_addr' drivers/net/wireless/rtl8188fu/core/rtw_cmd.o:rtw_cmd.c:(.text+0x1f4): first defined here drivers/net/wireless/rtl8188fu/core/rtw_security.o: In function `is_broadcast_mac_addr': rtw_security.c:(.text+0x2068): multiple definition of `is_broadcast_mac_addr' drivers/net/wireless/rtl8188fu/core/rtw_cmd.o:rtw_cmd.c:(.text+0x214): first defined here drivers/net/wireless/rtl8188fu/core/rtw_security.o: In function `is_zero_mac_addr': rtw_security.c:(.text+0x20ec): multiple definition of `is_zero_mac_addr' drivers/net/wireless/rtl8188fu/core/rtw_cmd.o:rtw_cmd.c:(.text+0x298): first defined here drivers/net/wireless/rtl8188fu/core/rtw_debug.o: In function `is_multicast_mac_addr': rtw_debug.c:(.text+0x0): multiple definition of `is_multicast_mac_addr' drivers/net/wireless/rtl8188fu/core/rtw_cmd.o:rtw_cmd.c:(.text+0x1f4): first defined here drivers/net/wireless/rtl8188fu/core/rtw_debug.o: In function `is_broadcast_mac_addr': rtw_debug.c:(.text+0x20): multiple definition of `is_broadcast_mac_addr' drivers/net/wireless/rtl8188fu/core/rtw_cmd.o:rtw_cmd.c:(.text+0x214): first defined here drivers/net/wireless/rtl8188fu/core/rtw_debug.o: In function `is_zero_mac_addr': rtw_debug.c:(.text+0xa4): multiple definition of `is_zero_mac_addr' drivers/net/wireless/rtl8188fu/core/rtw_cmd.o:rtw_cmd.c:(.text+0x298): first defined here drivers/net/wireless/rtl8188fu/core/rtw_io.o: In function `is_multicast_mac_addr': rtw_io.c:(.text+0x0): multiple definition of `is_multicast_mac_addr' drivers/net/wireless/rtl8188fu/core/rtw_cmd.o:rtw_cmd.c:(.text+0x1f4): first defined here drivers/net/wireless/rtl8188fu/core/rtw_io.o: In function `is_broadcast_mac_addr': rtw_io.c:(.text+0x20): multiple definition of `is_broadcast_mac_addr' drivers/net/wireless/rtl8188fu/core/rtw_cmd.o:rtw_cmd.c:(.text+0x214): first defined here drivers/net/wireless/rtl8188fu/core/rtw_io.o: In function `is_zero_mac_addr': rtw_io.c:(.text+0xa4): multiple definition of `is_zero_mac_addr' drivers/net/wireless/rtl8188fu/core/rtw_cmd.o:rtw_cmd.c:(.text+0x298): first defined here drivers/net/wireless/rtl8188fu/core/rtw_ioctl_query.o: In function `is_multicast_mac_addr': rtw_ioctl_query.c:(.text+0x0): multiple definition of `is_multicast_mac_addr' drivers/net/wireless/rtl8188fu/core/rtw_cmd.o:rtw_cmd.c:(.text+0x1f4): first defined here drivers/net/wireless/rtl8188fu/core/rtw_ioctl_query.o: In function `is_broadcast_mac_addr': rtw_ioctl_query.c:(.text+0x20): multiple definition of `is_broadcast_mac_addr' drivers/net/wireless/rtl8188fu/core/rtw_cmd.o:rtw_cmd.c:(.text+0x214): first defined here drivers/net/wireless/rtl8188fu/core/rtw_ioctl_query.o: In function `is_zero_mac_addr': rtw_ioctl_query.c:(.text+0xa4): multiple definition of `is_zero_mac_addr' drivers/net/wireless/rtl8188fu/core/rtw_cmd.o:rtw_cmd.c:(.text+0x298): first defined here drivers/net/wireless/rtl8188fu/core/rtw_ioctl_set.o: In function `is_multicast_mac_addr': rtw_ioctl_set.c:(.text+0x0): multiple definition of `is_multicast_mac_addr' drivers/net/wireless/rtl8188fu/core/rtw_cmd.o:rtw_cmd.c:(.text+0x1f4): first defined here drivers/net/wireless/rtl8188fu/core/rtw_ioctl_set.o: In function `is_broadcast_mac_addr': rtw_ioctl_set.c:(.text+0x20): multiple definition of `is_broadcast_mac_addr' drivers/net/wireless/rtl8188fu/core/rtw_cmd.o:rtw_cmd.c:(.text+0x214): first defined here drivers/net/wireless/rtl8188fu/core/rtw_ioctl_set.o: In function `is_zero_mac_addr': rtw_ioctl_set.c:(.text+0xa4): multiple definition of `is_zero_mac_addr' drivers/net/wireless/rtl8188fu/core/rtw_cmd.o:rtw_cmd.c:(.text+0x298): first defined here drivers/net/wireless/rtl8188fu/core/rtw_ieee80211.o: In function `is_multicast_mac_addr': rtw_ieee80211.c:(.text+0x58): multiple definition of `is_multicast_mac_addr' drivers/net/wireless/rtl8188fu/core/rtw_cmd.o:rtw_cmd.c:(.text+0x1f4): first defined here drivers/net/wireless/rtl8188fu/core/rtw_ieee80211.o: In function `is_broadcast_mac_addr': rtw_ieee80211.c:(.text+0x78): multiple definition of `is_broadcast_mac_addr' drivers/net/wireless/rtl8188fu/core/rtw_cmd.o:rtw_cmd.c:(.text+0x214): first defined here drivers/net/wireless/rtl8188fu/core/rtw_ieee80211.o: In function `is_zero_mac_addr': rtw_ieee80211.c:(.text+0xfc): multiple definition of `is_zero_mac_addr' drivers/net/wireless/rtl8188fu/core/rtw_cmd.o:rtw_cmd.c:(.text+0x298): first defined here drivers/net/wireless/rtl8188fu/core/rtw_mlme.o: In function `is_multicast_mac_addr': rtw_mlme.c:(.text+0x3b4): multiple definition of `is_multicast_mac_addr' drivers/net/wireless/rtl8188fu/core/rtw_cmd.o:rtw_cmd.c:(.text+0x1f4): first defined here drivers/net/wireless/rtl8188fu/core/rtw_mlme.o: In function `is_broadcast_mac_addr': rtw_mlme.c:(.text+0x3d4): multiple definition of `is_broadcast_mac_addr' drivers/net/wireless/rtl8188fu/core/rtw_cmd.o:rtw_cmd.c:(.text+0x214): first defined here drivers/net/wireless/rtl8188fu/core/rtw_mlme.o: In function `is_zero_mac_addr': rtw_mlme.c:(.text+0x458): multiple definition of `is_zero_mac_addr' drivers/net/wireless/rtl8188fu/core/rtw_cmd.o:rtw_cmd.c:(.text+0x298): first defined here drivers/net/wireless/rtl8188fu/core/rtw_mlme_ext.o: In function `is_multicast_mac_addr': rtw_mlme_ext.c:(.text+0x10bc): multiple definition of `is_multicast_mac_addr' drivers/net/wireless/rtl8188fu/core/rtw_cmd.o:rtw_cmd.c:(.text+0x1f4): first defined here drivers/net/wireless/rtl8188fu/core/rtw_mlme_ext.o: In function `is_broadcast_mac_addr': rtw_mlme_ext.c:(.text+0x10dc): multiple definition of `is_broadcast_mac_addr' drivers/net/wireless/rtl8188fu/core/rtw_cmd.o:rtw_cmd.c:(.text+0x214): first defined here drivers/net/wireless/rtl8188fu/core/rtw_mlme_ext.o: In function `is_zero_mac_addr': rtw_mlme_ext.c:(.text+0x1160): multiple definition of `is_zero_mac_addr' drivers/net/wireless/rtl8188fu/core/rtw_cmd.o:rtw_cmd.c:(.text+0x298): first defined here drivers/net/wireless/rtl8188fu/core/rtw_mi.o: In function `is_multicast_mac_addr': rtw_mi.c:(.text+0x7f8): multiple definition of `is_multicast_mac_addr' drivers/net/wireless/rtl8188fu/core/rtw_cmd.o:rtw_cmd.c:(.text+0x1f4): first defined here drivers/net/wireless/rtl8188fu/core/rtw_mi.o: In function `is_broadcast_mac_addr': rtw_mi.c:(.text+0x818): multiple definition of `is_broadcast_mac_addr' drivers/net/wireless/rtl8188fu/core/rtw_cmd.o:rtw_cmd.c:(.text+0x214): first defined here drivers/net/wireless/rtl8188fu/core/rtw_mi.o: In function `is_zero_mac_addr': rtw_mi.c:(.text+0x89c): multiple definition of `is_zero_mac_addr' drivers/net/wireless/rtl8188fu/core/rtw_cmd.o:rtw_cmd.c:(.text+0x298): first defined here drivers/net/wireless/rtl8188fu/core/rtw_wlan_util.o: In function `is_multicast_mac_addr': rtw_wlan_util.c:(.text+0x0): multiple definition of `is_multicast_mac_addr' drivers/net/wireless/rtl8188fu/core/rtw_cmd.o:rtw_cmd.c:(.text+0x1f4): first defined here drivers/net/wireless/rtl8188fu/core/rtw_wlan_util.o: In function `is_broadcast_mac_addr': rtw_wlan_util.c:(.text+0x20): multiple definition of `is_broadcast_mac_addr' drivers/net/wireless/rtl8188fu/core/rtw_cmd.o:rtw_cmd.c:(.text+0x214): first defined here drivers/net/wireless/rtl8188fu/core/rtw_wlan_util.o: In function `is_zero_mac_addr': rtw_wlan_util.c:(.text+0xa4): multiple definition of `is_zero_mac_addr' drivers/net/wireless/rtl8188fu/core/rtw_cmd.o:rtw_cmd.c:(.text+0x298): first defined here drivers/net/wireless/rtl8188fu/core/rtw_vht.o: In function `is_multicast_mac_addr': rtw_vht.c:(.text+0x0): multiple definition of `is_multicast_mac_addr' drivers/net/wireless/rtl8188fu/core/rtw_cmd.o:rtw_cmd.c:(.text+0x1f4): first defined here drivers/net/wireless/rtl8188fu/core/rtw_vht.o: In function `is_broadcast_mac_addr': rtw_vht.c:(.text+0x20): multiple definition of `is_broadcast_mac_addr' drivers/net/wireless/rtl8188fu/core/rtw_cmd.o:rtw_cmd.c:(.text+0x214): first defined here drivers/net/wireless/rtl8188fu/core/rtw_vht.o: In function `is_zero_mac_addr': rtw_vht.c:(.text+0xa4): multiple definition of `is_zero_mac_addr' drivers/net/wireless/rtl8188fu/core/rtw_cmd.o:rtw_cmd.c:(.text+0x298): first defined here drivers/net/wireless/rtl8188fu/core/rtw_pwrctrl.o: In function `is_multicast_mac_addr': rtw_pwrctrl.c:(.text+0xb4): multiple definition of `is_multicast_mac_addr' drivers/net/wireless/rtl8188fu/core/rtw_cmd.o:rtw_cmd.c:(.text+0x1f4): first defined here drivers/net/wireless/rtl8188fu/core/rtw_pwrctrl.o: In function `is_broadcast_mac_addr': rtw_pwrctrl.c:(.text+0xd4): multiple definition of `is_broadcast_mac_addr' drivers/net/wireless/rtl8188fu/core/rtw_cmd.o:rtw_cmd.c:(.text+0x214): first defined here drivers/net/wireless/rtl8188fu/core/rtw_pwrctrl.o: In function `is_zero_mac_addr': rtw_pwrctrl.c:(.text+0x158): multiple definition of `is_zero_mac_addr' drivers/net/wireless/rtl8188fu/core/rtw_cmd.o:rtw_cmd.c:(.text+0x298): first defined here drivers/net/wireless/rtl8188fu/core/rtw_rf.o: In function `is_multicast_mac_addr': rtw_rf.c:(.text+0x0): multiple definition of `is_multicast_mac_addr' drivers/net/wireless/rtl8188fu/core/rtw_cmd.o:rtw_cmd.c:(.text+0x1f4): first defined here drivers/net/wireless/rtl8188fu/core/rtw_rf.o: In function `is_broadcast_mac_addr': rtw_rf.c:(.text+0x20): multiple definition of `is_broadcast_mac_addr' drivers/net/wireless/rtl8188fu/core/rtw_cmd.o:rtw_cmd.c:(.text+0x214): first defined here drivers/net/wireless/rtl8188fu/core/rtw_rf.o: In function `is_zero_mac_addr': rtw_rf.c:(.text+0xa4): multiple definition of `is_zero_mac_addr' drivers/net/wireless/rtl8188fu/core/rtw_cmd.o:rtw_cmd.c:(.text+0x298): first defined here drivers/net/wireless/rtl8188fu/core/rtw_recv.o: In function `is_multicast_mac_addr': rtw_recv.c:(.text+0x770): multiple definition of `is_multicast_mac_addr' drivers/net/wireless/rtl8188fu/core/rtw_cmd.o:rtw_cmd.c:(.text+0x1f4): first defined here drivers/net/wireless/rtl8188fu/core/rtw_recv.o: In function `is_broadcast_mac_addr': rtw_recv.c:(.text+0x790): multiple definition of `is_broadcast_mac_addr' drivers/net/wireless/rtl8188fu/core/rtw_cmd.o:rtw_cmd.c:(.text+0x214): first defined here drivers/net/wireless/rtl8188fu/core/rtw_recv.o: In function `is_zero_mac_addr': rtw_recv.c:(.text+0x814): multiple definition of `is_zero_mac_addr' drivers/net/wireless/rtl8188fu/core/rtw_cmd.o:rtw_cmd.c:(.text+0x298): first defined here drivers/net/wireless/rtl8188fu/core/rtw_sta_mgt.o: In function `is_multicast_mac_addr': rtw_sta_mgt.c:(.text+0x50): multiple definition of `is_multicast_mac_addr' drivers/net/wireless/rtl8188fu/core/rtw_cmd.o:rtw_cmd.c:(.text+0x1f4): first defined here drivers/net/wireless/rtl8188fu/core/rtw_sta_mgt.o: In function `is_broadcast_mac_addr': rtw_sta_mgt.c:(.text+0x70): multiple definition of `is_broadcast_mac_addr' drivers/net/wireless/rtl8188fu/core/rtw_cmd.o:rtw_cmd.c:(.text+0x214): first defined here drivers/net/wireless/rtl8188fu/core/rtw_sta_mgt.o: In function `is_zero_mac_addr': rtw_sta_mgt.c:(.text+0xf4): multiple definition of `is_zero_mac_addr' drivers/net/wireless/rtl8188fu/core/rtw_cmd.o:rtw_cmd.c:(.text+0x298): first defined here drivers/net/wireless/rtl8188fu/core/rtw_ap.o: In function `is_multicast_mac_addr': rtw_ap.c:(.text+0x1bc): multiple definition of `is_multicast_mac_addr' drivers/net/wireless/rtl8188fu/core/rtw_cmd.o:rtw_cmd.c:(.text+0x1f4): first defined here drivers/net/wireless/rtl8188fu/core/rtw_ap.o: In function `is_broadcast_mac_addr': rtw_ap.c:(.text+0x1dc): multiple definition of `is_broadcast_mac_addr' drivers/net/wireless/rtl8188fu/core/rtw_cmd.o:rtw_cmd.c:(.text+0x214): first defined here drivers/net/wireless/rtl8188fu/core/rtw_ap.o: In function `is_zero_mac_addr': rtw_ap.c:(.text+0x260): multiple definition of `is_zero_mac_addr' drivers/net/wireless/rtl8188fu/core/rtw_cmd.o:rtw_cmd.c:(.text+0x298): first defined here drivers/net/wireless/rtl8188fu/core/rtw_xmit.o: In function `is_multicast_mac_addr': rtw_xmit.c:(.text+0xa4): multiple definition of `is_multicast_mac_addr' drivers/net/wireless/rtl8188fu/core/rtw_cmd.o:rtw_cmd.c:(.text+0x1f4): first defined here drivers/net/wireless/rtl8188fu/core/rtw_xmit.o: In function `is_broadcast_mac_addr': rtw_xmit.c:(.text+0xc4): multiple definition of `is_broadcast_mac_addr' drivers/net/wireless/rtl8188fu/core/rtw_cmd.o:rtw_cmd.c:(.text+0x214): first defined here drivers/net/wireless/rtl8188fu/core/rtw_xmit.o: In function `is_zero_mac_addr': rtw_xmit.c:(.text+0x148): multiple definition of `is_zero_mac_addr' drivers/net/wireless/rtl8188fu/core/rtw_cmd.o:rtw_cmd.c:(.text+0x298): first defined here drivers/net/wireless/rtl8188fu/core/rtw_p2p.o: In function `is_multicast_mac_addr': rtw_p2p.c:(.text+0x858): multiple definition of `is_multicast_mac_addr' drivers/net/wireless/rtl8188fu/core/rtw_cmd.o:rtw_cmd.c:(.text+0x1f4): first defined here drivers/net/wireless/rtl8188fu/core/rtw_p2p.o: In function `is_broadcast_mac_addr': rtw_p2p.c:(.text+0x878): multiple definition of `is_broadcast_mac_addr' drivers/net/wireless/rtl8188fu/core/rtw_cmd.o:rtw_cmd.c:(.text+0x214): first defined here drivers/net/wireless/rtl8188fu/core/rtw_p2p.o: In function `is_zero_mac_addr': rtw_p2p.c:(.text+0x8fc): multiple definition of `is_zero_mac_addr' drivers/net/wireless/rtl8188fu/core/rtw_cmd.o:rtw_cmd.c:(.text+0x298): first defined here drivers/net/wireless/rtl8188fu/core/rtw_tdls.o: In function `is_multicast_mac_addr': rtw_tdls.c:(.text+0x0): multiple definition of `is_multicast_mac_addr' drivers/net/wireless/rtl8188fu/core/rtw_cmd.o:rtw_cmd.c:(.text+0x1f4): first defined here drivers/net/wireless/rtl8188fu/core/rtw_tdls.o: In function `is_broadcast_mac_addr': rtw_tdls.c:(.text+0x20): multiple definition of `is_broadcast_mac_addr' drivers/net/wireless/rtl8188fu/core/rtw_cmd.o:rtw_cmd.c:(.text+0x214): first defined here drivers/net/wireless/rtl8188fu/core/rtw_tdls.o: In function `is_zero_mac_addr': rtw_tdls.c:(.text+0xa4): multiple definition of `is_zero_mac_addr' drivers/net/wireless/rtl8188fu/core/rtw_cmd.o:rtw_cmd.c:(.text+0x298): first defined here drivers/net/wireless/rtl8188fu/core/rtw_br_ext.o: In function `is_multicast_mac_addr': rtw_br_ext.c:(.text+0x734): multiple definition of `is_multicast_mac_addr' drivers/net/wireless/rtl8188fu/core/rtw_cmd.o:rtw_cmd.c:(.text+0x1f4): first defined here drivers/net/wireless/rtl8188fu/core/rtw_br_ext.o: In function `is_broadcast_mac_addr': rtw_br_ext.c:(.text+0x754): multiple definition of `is_broadcast_mac_addr' drivers/net/wireless/rtl8188fu/core/rtw_cmd.o:rtw_cmd.c:(.text+0x214): first defined here drivers/net/wireless/rtl8188fu/core/rtw_br_ext.o: In function `is_zero_mac_addr': rtw_br_ext.c:(.text+0x7d8): multiple definition of `is_zero_mac_addr' drivers/net/wireless/rtl8188fu/core/rtw_cmd.o:rtw_cmd.c:(.text+0x298): first defined here drivers/net/wireless/rtl8188fu/core/rtw_iol.o: In function `is_multicast_mac_addr': rtw_iol.c:(.text+0x0): multiple definition of `is_multicast_mac_addr' drivers/net/wireless/rtl8188fu/core/rtw_cmd.o:rtw_cmd.c:(.text+0x1f4): first defined here drivers/net/wireless/rtl8188fu/core/rtw_iol.o: In function `is_broadcast_mac_addr': rtw_iol.c:(.text+0x20): multiple definition of `is_broadcast_mac_addr' drivers/net/wireless/rtl8188fu/core/rtw_cmd.o:rtw_cmd.c:(.text+0x214): first defined here drivers/net/wireless/rtl8188fu/core/rtw_iol.o: In function `is_zero_mac_addr': rtw_iol.c:(.text+0xa4): multiple definition of `is_zero_mac_addr' drivers/net/wireless/rtl8188fu/core/rtw_cmd.o:rtw_cmd.c:(.text+0x298): first defined here drivers/net/wireless/rtl8188fu/core/rtw_sreset.o: In function `is_multicast_mac_addr': rtw_sreset.c:(.text+0x0): multiple definition of `is_multicast_mac_addr' drivers/net/wireless/rtl8188fu/core/rtw_cmd.o:rtw_cmd.c:(.text+0x1f4): first defined here drivers/net/wireless/rtl8188fu/core/rtw_sreset.o: In function `is_broadcast_mac_addr': rtw_sreset.c:(.text+0x20): multiple definition of `is_broadcast_mac_addr' drivers/net/wireless/rtl8188fu/core/rtw_cmd.o:rtw_cmd.c:(.text+0x214): first defined here drivers/net/wireless/rtl8188fu/core/rtw_sreset.o: In function `is_zero_mac_addr': rtw_sreset.c:(.text+0xa4): multiple definition of `is_zero_mac_addr' drivers/net/wireless/rtl8188fu/core/rtw_cmd.o:rtw_cmd.c:(.text+0x298): first defined here drivers/net/wireless/rtl8188fu/core/rtw_btcoex_wifionly.o: In function `is_multicast_mac_addr': rtw_btcoex_wifionly.c:(.text+0x0): multiple definition of `is_multicast_mac_addr' drivers/net/wireless/rtl8188fu/core/rtw_cmd.o:rtw_cmd.c:(.text+0x1f4): first defined here drivers/net/wireless/rtl8188fu/core/rtw_btcoex_wifionly.o: In function `is_broadcast_mac_addr': rtw_btcoex_wifionly.c:(.text+0x20): multiple definition of `is_broadcast_mac_addr' drivers/net/wireless/rtl8188fu/core/rtw_cmd.o:rtw_cmd.c:(.text+0x214): first defined here drivers/net/wireless/rtl8188fu/core/rtw_btcoex_wifionly.o: In function `is_zero_mac_addr': rtw_btcoex_wifionly.c:(.text+0xa4): multiple definition of `is_zero_mac_addr' drivers/net/wireless/rtl8188fu/core/rtw_cmd.o:rtw_cmd.c:(.text+0x298): first defined here drivers/net/wireless/rtl8188fu/core/rtw_beamforming.o: In function `is_multicast_mac_addr': rtw_beamforming.c:(.text+0x0): multiple definition of `is_multicast_mac_addr' drivers/net/wireless/rtl8188fu/core/rtw_cmd.o:rtw_cmd.c:(.text+0x1f4): first defined here drivers/net/wireless/rtl8188fu/core/rtw_beamforming.o: In function `is_broadcast_mac_addr': rtw_beamforming.c:(.text+0x20): multiple definition of `is_broadcast_mac_addr' drivers/net/wireless/rtl8188fu/core/rtw_cmd.o:rtw_cmd.c:(.text+0x214): first defined here drivers/net/wireless/rtl8188fu/core/rtw_beamforming.o: In function `is_zero_mac_addr': rtw_beamforming.c:(.text+0xa4): multiple definition of `is_zero_mac_addr' drivers/net/wireless/rtl8188fu/core/rtw_cmd.o:rtw_cmd.c:(.text+0x298): first defined here drivers/net/wireless/rtl8188fu/core/rtw_odm.o: In function `is_multicast_mac_addr': rtw_odm.c:(.text+0x0): multiple definition of `is_multicast_mac_addr' drivers/net/wireless/rtl8188fu/core/rtw_cmd.o:rtw_cmd.c:(.text+0x1f4): first defined here drivers/net/wireless/rtl8188fu/core/rtw_odm.o: In function `is_broadcast_mac_addr': rtw_odm.c:(.text+0x20): multiple definition of `is_broadcast_mac_addr' drivers/net/wireless/rtl8188fu/core/rtw_cmd.o:rtw_cmd.c:(.text+0x214): first defined here drivers/net/wireless/rtl8188fu/core/rtw_odm.o: In function `is_zero_mac_addr': rtw_odm.c:(.text+0xa4): multiple definition of `is_zero_mac_addr' drivers/net/wireless/rtl8188fu/core/rtw_cmd.o:rtw_cmd.c:(.text+0x298): first defined here drivers/net/wireless/rtl8188fu/core/efuse/rtw_efuse.o: In function `is_multicast_mac_addr': rtw_efuse.c:(.text+0xd8): multiple definition of `is_multicast_mac_addr' drivers/net/wireless/rtl8188fu/core/rtw_cmd.o:rtw_cmd.c:(.text+0x1f4): first defined here drivers/net/wireless/rtl8188fu/core/efuse/rtw_efuse.o: In function `is_broadcast_mac_addr': rtw_efuse.c:(.text+0xf8): multiple definition of `is_broadcast_mac_addr' drivers/net/wireless/rtl8188fu/core/rtw_cmd.o:rtw_cmd.c:(.text+0x214): first defined here drivers/net/wireless/rtl8188fu/core/efuse/rtw_efuse.o: In function `is_zero_mac_addr': rtw_efuse.c:(.text+0x17c): multiple definition of `is_zero_mac_addr' drivers/net/wireless/rtl8188fu/core/rtw_cmd.o:rtw_cmd.c:(.text+0x298): first defined here drivers/net/wireless/rtl8188fu/os_dep/osdep_service.o: In function `is_multicast_mac_addr': osdep_service.c:(.text+0x178): multiple definition of `is_multicast_mac_addr' drivers/net/wireless/rtl8188fu/core/rtw_cmd.o:rtw_cmd.c:(.text+0x1f4): first defined here drivers/net/wireless/rtl8188fu/os_dep/osdep_service.o: In function `is_broadcast_mac_addr': osdep_service.c:(.text+0x198): multiple definition of `is_broadcast_mac_addr' drivers/net/wireless/rtl8188fu/core/rtw_cmd.o:rtw_cmd.c:(.text+0x214): first defined here drivers/net/wireless/rtl8188fu/os_dep/osdep_service.o: In function `is_zero_mac_addr': osdep_service.c:(.text+0x21c): multiple definition of `is_zero_mac_addr' drivers/net/wireless/rtl8188fu/core/rtw_cmd.o:rtw_cmd.c:(.text+0x298): first defined here drivers/net/wireless/rtl8188fu/os_dep/linux/os_intfs.o: In function `is_multicast_mac_addr': os_intfs.c:(.text+0x6c4): multiple definition of `is_multicast_mac_addr' drivers/net/wireless/rtl8188fu/core/rtw_cmd.o:rtw_cmd.c:(.text+0x1f4): first defined here drivers/net/wireless/rtl8188fu/os_dep/linux/os_intfs.o: In function `is_broadcast_mac_addr': os_intfs.c:(.text+0x6e4): multiple definition of `is_broadcast_mac_addr' drivers/net/wireless/rtl8188fu/core/rtw_cmd.o:rtw_cmd.c:(.text+0x214): first defined here drivers/net/wireless/rtl8188fu/os_dep/linux/os_intfs.o: In function `is_zero_mac_addr': os_intfs.c:(.text+0x768): multiple definition of `is_zero_mac_addr' drivers/net/wireless/rtl8188fu/core/rtw_cmd.o:rtw_cmd.c:(.text+0x298): first defined here drivers/net/wireless/rtl8188fu/os_dep/linux/usb_intf.o: In function `is_multicast_mac_addr': usb_intf.c:(.text+0x454): multiple definition of `is_multicast_mac_addr' drivers/net/wireless/rtl8188fu/core/rtw_cmd.o:rtw_cmd.c:(.text+0x1f4): first defined here drivers/net/wireless/rtl8188fu/os_dep/linux/usb_intf.o: In function `is_broadcast_mac_addr': usb_intf.c:(.text+0x474): multiple definition of `is_broadcast_mac_addr' drivers/net/wireless/rtl8188fu/core/rtw_cmd.o:rtw_cmd.c:(.text+0x214): first defined here drivers/net/wireless/rtl8188fu/os_dep/linux/usb_intf.o: In function `is_zero_mac_addr': usb_intf.c:(.text+0x4f8): multiple definition of `is_zero_mac_addr' drivers/net/wireless/rtl8188fu/core/rtw_cmd.o:rtw_cmd.c:(.text+0x298): first defined here drivers/net/wireless/rtl8188fu/os_dep/linux/usb_ops_linux.o: In function `is_multicast_mac_addr': usb_ops_linux.c:(.text+0x5a8): multiple definition of `is_multicast_mac_addr' drivers/net/wireless/rtl8188fu/core/rtw_cmd.o:rtw_cmd.c:(.text+0x1f4): first defined here drivers/net/wireless/rtl8188fu/os_dep/linux/usb_ops_linux.o: In function `is_broadcast_mac_addr': usb_ops_linux.c:(.text+0x5c8): multiple definition of `is_broadcast_mac_addr' drivers/net/wireless/rtl8188fu/core/rtw_cmd.o:rtw_cmd.c:(.text+0x214): first defined here drivers/net/wireless/rtl8188fu/os_dep/linux/usb_ops_linux.o: In function `is_zero_mac_addr': usb_ops_linux.c:(.text+0x64c): multiple definition of `is_zero_mac_addr' drivers/net/wireless/rtl8188fu/core/rtw_cmd.o:rtw_cmd.c:(.text+0x298): first defined here drivers/net/wireless/rtl8188fu/os_dep/linux/ioctl_linux.o: In function `is_multicast_mac_addr': ioctl_linux.c:(.text+0xa838): multiple definition of `is_multicast_mac_addr' drivers/net/wireless/rtl8188fu/core/rtw_cmd.o:rtw_cmd.c:(.text+0x1f4): first defined here drivers/net/wireless/rtl8188fu/os_dep/linux/ioctl_linux.o: In function `is_broadcast_mac_addr': ioctl_linux.c:(.text+0xa858): multiple definition of `is_broadcast_mac_addr' drivers/net/wireless/rtl8188fu/core/rtw_cmd.o:rtw_cmd.c:(.text+0x214): first defined here drivers/net/wireless/rtl8188fu/os_dep/linux/ioctl_linux.o: In function `is_zero_mac_addr': ioctl_linux.c:(.text+0xa8dc): multiple definition of `is_zero_mac_addr' drivers/net/wireless/rtl8188fu/core/rtw_cmd.o:rtw_cmd.c:(.text+0x298): first defined here drivers/net/wireless/rtl8188fu/os_dep/linux/xmit_linux.o: In function `is_multicast_mac_addr': xmit_linux.c:(.text+0x0): multiple definition of `is_multicast_mac_addr' drivers/net/wireless/rtl8188fu/core/rtw_cmd.o:rtw_cmd.c:(.text+0x1f4): first defined here drivers/net/wireless/rtl8188fu/os_dep/linux/xmit_linux.o: In function `is_broadcast_mac_addr': xmit_linux.c:(.text+0x20): multiple definition of `is_broadcast_mac_addr' drivers/net/wireless/rtl8188fu/core/rtw_cmd.o:rtw_cmd.c:(.text+0x214): first defined here drivers/net/wireless/rtl8188fu/os_dep/linux/xmit_linux.o: In function `is_zero_mac_addr': xmit_linux.c:(.text+0xa4): multiple definition of `is_zero_mac_addr' drivers/net/wireless/rtl8188fu/core/rtw_cmd.o:rtw_cmd.c:(.text+0x298): first defined here drivers/net/wireless/rtl8188fu/os_dep/linux/mlme_linux.o: In function `is_multicast_mac_addr': mlme_linux.c:(.text+0x0): multiple definition of `is_multicast_mac_addr' drivers/net/wireless/rtl8188fu/core/rtw_cmd.o:rtw_cmd.c:(.text+0x1f4): first defined here drivers/net/wireless/rtl8188fu/os_dep/linux/mlme_linux.o: In function `is_broadcast_mac_addr': mlme_linux.c:(.text+0x20): multiple definition of `is_broadcast_mac_addr' drivers/net/wireless/rtl8188fu/core/rtw_cmd.o:rtw_cmd.c:(.text+0x214): first defined here drivers/net/wireless/rtl8188fu/os_dep/linux/mlme_linux.o: In function `is_zero_mac_addr': mlme_linux.c:(.text+0xa4): multiple definition of `is_zero_mac_addr' drivers/net/wireless/rtl8188fu/core/rtw_cmd.o:rtw_cmd.c:(.text+0x298): first defined here drivers/net/wireless/rtl8188fu/os_dep/linux/recv_linux.o: In function `is_multicast_mac_addr': recv_linux.c:(.text+0x0): multiple definition of `is_multicast_mac_addr' drivers/net/wireless/rtl8188fu/core/rtw_cmd.o:rtw_cmd.c:(.text+0x1f4): first defined here drivers/net/wireless/rtl8188fu/os_dep/linux/recv_linux.o: In function `is_broadcast_mac_addr': recv_linux.c:(.text+0x20): multiple definition of `is_broadcast_mac_addr' drivers/net/wireless/rtl8188fu/core/rtw_cmd.o:rtw_cmd.c:(.text+0x214): first defined here drivers/net/wireless/rtl8188fu/os_dep/linux/recv_linux.o: In function `is_zero_mac_addr': recv_linux.c:(.text+0xa4): multiple definition of `is_zero_mac_addr' drivers/net/wireless/rtl8188fu/core/rtw_cmd.o:rtw_cmd.c:(.text+0x298): first defined here drivers/net/wireless/rtl8188fu/os_dep/linux/ioctl_cfg80211.o: In function `is_multicast_mac_addr': ioctl_cfg80211.c:(.text+0x5144): multiple definition of `is_multicast_mac_addr' drivers/net/wireless/rtl8188fu/core/rtw_cmd.o:rtw_cmd.c:(.text+0x1f4): first defined here drivers/net/wireless/rtl8188fu/os_dep/linux/ioctl_cfg80211.o: In function `is_broadcast_mac_addr': ioctl_cfg80211.c:(.text+0x5164): multiple definition of `is_broadcast_mac_addr' drivers/net/wireless/rtl8188fu/core/rtw_cmd.o:rtw_cmd.c:(.text+0x214): first defined here drivers/net/wireless/rtl8188fu/os_dep/linux/ioctl_cfg80211.o: In function `is_zero_mac_addr': ioctl_cfg80211.c:(.text+0x51e8): multiple definition of `is_zero_mac_addr' drivers/net/wireless/rtl8188fu/core/rtw_cmd.o:rtw_cmd.c:(.text+0x298): first defined here drivers/net/wireless/rtl8188fu/os_dep/linux/rtw_cfgvendor.o: In function `is_multicast_mac_addr': rtw_cfgvendor.c:(.text+0x0): multiple definition of `is_multicast_mac_addr' drivers/net/wireless/rtl8188fu/core/rtw_cmd.o:rtw_cmd.c:(.text+0x1f4): first defined here drivers/net/wireless/rtl8188fu/os_dep/linux/rtw_cfgvendor.o: In function `is_broadcast_mac_addr': rtw_cfgvendor.c:(.text+0x20): multiple definition of `is_broadcast_mac_addr' drivers/net/wireless/rtl8188fu/core/rtw_cmd.o:rtw_cmd.c:(.text+0x214): first defined here drivers/net/wireless/rtl8188fu/os_dep/linux/rtw_cfgvendor.o: In function `is_zero_mac_addr': rtw_cfgvendor.c:(.text+0xa4): multiple definition of `is_zero_mac_addr' drivers/net/wireless/rtl8188fu/core/rtw_cmd.o:rtw_cmd.c:(.text+0x298): first defined here drivers/net/wireless/rtl8188fu/os_dep/linux/wifi_regd.o: In function `is_multicast_mac_addr': wifi_regd.c:(.text+0x130): multiple definition of `is_multicast_mac_addr' drivers/net/wireless/rtl8188fu/core/rtw_cmd.o:rtw_cmd.c:(.text+0x1f4): first defined here drivers/net/wireless/rtl8188fu/os_dep/linux/wifi_regd.o: In function `is_broadcast_mac_addr': wifi_regd.c:(.text+0x150): multiple definition of `is_broadcast_mac_addr' drivers/net/wireless/rtl8188fu/core/rtw_cmd.o:rtw_cmd.c:(.text+0x214): first defined here drivers/net/wireless/rtl8188fu/os_dep/linux/wifi_regd.o: In function `is_zero_mac_addr': wifi_regd.c:(.text+0x1d4): multiple definition of `is_zero_mac_addr' drivers/net/wireless/rtl8188fu/core/rtw_cmd.o:rtw_cmd.c:(.text+0x298): first defined here drivers/net/wireless/rtl8188fu/os_dep/linux/rtw_android.o: In function `is_multicast_mac_addr': rtw_android.c:(.text+0x0): multiple definition of `is_multicast_mac_addr' drivers/net/wireless/rtl8188fu/core/rtw_cmd.o:rtw_cmd.c:(.text+0x1f4): first defined here drivers/net/wireless/rtl8188fu/os_dep/linux/rtw_android.o: In function `is_broadcast_mac_addr': rtw_android.c:(.text+0x20): multiple definition of `is_broadcast_mac_addr' drivers/net/wireless/rtl8188fu/core/rtw_cmd.o:rtw_cmd.c:(.text+0x214): first defined here drivers/net/wireless/rtl8188fu/os_dep/linux/rtw_android.o: In function `is_zero_mac_addr': rtw_android.c:(.text+0xa4): multiple definition of `is_zero_mac_addr' drivers/net/wireless/rtl8188fu/core/rtw_cmd.o:rtw_cmd.c:(.text+0x298): first defined here drivers/net/wireless/rtl8188fu/os_dep/linux/rtw_proc.o: In function `is_multicast_mac_addr': rtw_proc.c:(.text+0x4698): multiple definition of `is_multicast_mac_addr' drivers/net/wireless/rtl8188fu/core/rtw_cmd.o:rtw_cmd.c:(.text+0x1f4): first defined here drivers/net/wireless/rtl8188fu/os_dep/linux/rtw_proc.o: In function `is_broadcast_mac_addr': rtw_proc.c:(.text+0x46b8): multiple definition of `is_broadcast_mac_addr' drivers/net/wireless/rtl8188fu/core/rtw_cmd.o:rtw_cmd.c:(.text+0x214): first defined here drivers/net/wireless/rtl8188fu/os_dep/linux/rtw_proc.o: In function `is_zero_mac_addr': rtw_proc.c:(.text+0x473c): multiple definition of `is_zero_mac_addr' drivers/net/wireless/rtl8188fu/core/rtw_cmd.o:rtw_cmd.c:(.text+0x298): first defined here drivers/net/wireless/rtl8188fu/os_dep/linux/ioctl_mp.o: In function `is_multicast_mac_addr': ioctl_mp.c:(.text+0x0): multiple definition of `is_multicast_mac_addr' drivers/net/wireless/rtl8188fu/core/rtw_cmd.o:rtw_cmd.c:(.text+0x1f4): first defined here drivers/net/wireless/rtl8188fu/os_dep/linux/ioctl_mp.o: In function `is_broadcast_mac_addr': ioctl_mp.c:(.text+0x20): multiple definition of `is_broadcast_mac_addr' drivers/net/wireless/rtl8188fu/core/rtw_cmd.o:rtw_cmd.c:(.text+0x214): first defined here drivers/net/wireless/rtl8188fu/os_dep/linux/ioctl_mp.o: In function `is_zero_mac_addr': ioctl_mp.c:(.text+0xa4): multiple definition of `is_zero_mac_addr' drivers/net/wireless/rtl8188fu/core/rtw_cmd.o:rtw_cmd.c:(.text+0x298): first defined here drivers/net/wireless/rtl8188fu/hal/hal_intf.o: In function `is_multicast_mac_addr': hal_intf.c:(.text+0x0): multiple definition of `is_multicast_mac_addr' drivers/net/wireless/rtl8188fu/core/rtw_cmd.o:rtw_cmd.c:(.text+0x1f4): first defined here drivers/net/wireless/rtl8188fu/hal/hal_intf.o: In function `is_broadcast_mac_addr': hal_intf.c:(.text+0x20): multiple definition of `is_broadcast_mac_addr' drivers/net/wireless/rtl8188fu/core/rtw_cmd.o:rtw_cmd.c:(.text+0x214): first defined here drivers/net/wireless/rtl8188fu/hal/hal_intf.o: In function `is_zero_mac_addr': hal_intf.c:(.text+0xa4): multiple definition of `is_zero_mac_addr' drivers/net/wireless/rtl8188fu/core/rtw_cmd.o:rtw_cmd.c:(.text+0x298): first defined here drivers/net/wireless/rtl8188fu/hal/hal_com.o: In function `is_multicast_mac_addr': hal_com.c:(.text+0x0): multiple definition of `is_multicast_mac_addr' drivers/net/wireless/rtl8188fu/core/rtw_cmd.o:rtw_cmd.c:(.text+0x1f4): first defined here drivers/net/wireless/rtl8188fu/hal/hal_com.o: In function `is_broadcast_mac_addr': hal_com.c:(.text+0x20): multiple definition of `is_broadcast_mac_addr' drivers/net/wireless/rtl8188fu/core/rtw_cmd.o:rtw_cmd.c:(.text+0x214): first defined here drivers/net/wireless/rtl8188fu/hal/hal_com.o: In function `is_zero_mac_addr': hal_com.c:(.text+0xa4): multiple definition of `is_zero_mac_addr' drivers/net/wireless/rtl8188fu/core/rtw_cmd.o:rtw_cmd.c:(.text+0x298): first defined here drivers/net/wireless/rtl8188fu/hal/hal_com_phycfg.o: In function `is_multicast_mac_addr': hal_com_phycfg.c:(.text+0x174): multiple definition of `is_multicast_mac_addr' drivers/net/wireless/rtl8188fu/core/rtw_cmd.o:rtw_cmd.c:(.text+0x1f4): first defined here drivers/net/wireless/rtl8188fu/hal/hal_com_phycfg.o: In function `is_broadcast_mac_addr': hal_com_phycfg.c:(.text+0x194): multiple definition of `is_broadcast_mac_addr' drivers/net/wireless/rtl8188fu/core/rtw_cmd.o:rtw_cmd.c:(.text+0x214): first defined here drivers/net/wireless/rtl8188fu/hal/hal_com_phycfg.o: In function `is_zero_mac_addr': hal_com_phycfg.c:(.text+0x218): multiple definition of `is_zero_mac_addr' drivers/net/wireless/rtl8188fu/core/rtw_cmd.o:rtw_cmd.c:(.text+0x298): first defined here drivers/net/wireless/rtl8188fu/hal/hal_phy.o: In function `is_multicast_mac_addr': hal_phy.c:(.text+0x0): multiple definition of `is_multicast_mac_addr' drivers/net/wireless/rtl8188fu/core/rtw_cmd.o:rtw_cmd.c:(.text+0x1f4): first defined here drivers/net/wireless/rtl8188fu/hal/hal_phy.o: In function `is_broadcast_mac_addr': hal_phy.c:(.text+0x20): multiple definition of `is_broadcast_mac_addr' drivers/net/wireless/rtl8188fu/core/rtw_cmd.o:rtw_cmd.c:(.text+0x214): first defined here drivers/net/wireless/rtl8188fu/hal/hal_phy.o: In function `is_zero_mac_addr': hal_phy.c:(.text+0xa4): multiple definition of `is_zero_mac_addr' drivers/net/wireless/rtl8188fu/core/rtw_cmd.o:rtw_cmd.c:(.text+0x298): first defined here drivers/net/wireless/rtl8188fu/hal/hal_dm.o: In function `is_multicast_mac_addr': hal_dm.c:(.text+0x0): multiple definition of `is_multicast_mac_addr' drivers/net/wireless/rtl8188fu/core/rtw_cmd.o:rtw_cmd.c:(.text+0x1f4): first defined here drivers/net/wireless/rtl8188fu/hal/hal_dm.o: In function `is_broadcast_mac_addr': hal_dm.c:(.text+0x20): multiple definition of `is_broadcast_mac_addr' drivers/net/wireless/rtl8188fu/core/rtw_cmd.o:rtw_cmd.c:(.text+0x214): first defined here drivers/net/wireless/rtl8188fu/hal/hal_dm.o: In function `is_zero_mac_addr': hal_dm.c:(.text+0xa4): multiple definition of `is_zero_mac_addr' drivers/net/wireless/rtl8188fu/core/rtw_cmd.o:rtw_cmd.c:(.text+0x298): first defined here drivers/net/wireless/rtl8188fu/hal/hal_btcoex_wifionly.o: In function `is_multicast_mac_addr': hal_btcoex_wifionly.c:(.text+0x0): multiple definition of `is_multicast_mac_addr' drivers/net/wireless/rtl8188fu/core/rtw_cmd.o:rtw_cmd.c:(.text+0x1f4): first defined here drivers/net/wireless/rtl8188fu/hal/hal_btcoex_wifionly.o: In function `is_broadcast_mac_addr': hal_btcoex_wifionly.c:(.text+0x20): multiple definition of `is_broadcast_mac_addr' drivers/net/wireless/rtl8188fu/core/rtw_cmd.o:rtw_cmd.c:(.text+0x214): first defined here drivers/net/wireless/rtl8188fu/hal/hal_btcoex_wifionly.o: In function `is_zero_mac_addr': hal_btcoex_wifionly.c:(.text+0xa4): multiple definition of `is_zero_mac_addr' drivers/net/wireless/rtl8188fu/core/rtw_cmd.o:rtw_cmd.c:(.text+0x298): first defined here drivers/net/wireless/rtl8188fu/hal/hal_mp.o: In function `is_multicast_mac_addr': hal_mp.c:(.text+0x0): multiple definition of `is_multicast_mac_addr' drivers/net/wireless/rtl8188fu/core/rtw_cmd.o:rtw_cmd.c:(.text+0x1f4): first defined here drivers/net/wireless/rtl8188fu/hal/hal_mp.o: In function `is_broadcast_mac_addr': hal_mp.c:(.text+0x20): multiple definition of `is_broadcast_mac_addr' drivers/net/wireless/rtl8188fu/core/rtw_cmd.o:rtw_cmd.c:(.text+0x214): first defined here drivers/net/wireless/rtl8188fu/hal/hal_mp.o: In function `is_zero_mac_addr': hal_mp.c:(.text+0xa4): multiple definition of `is_zero_mac_addr' drivers/net/wireless/rtl8188fu/core/rtw_cmd.o:rtw_cmd.c:(.text+0x298): first defined here drivers/net/wireless/rtl8188fu/hal/hal_hci/hal_usb.o: In function `is_multicast_mac_addr': hal_usb.c:(.text+0x208): multiple definition of `is_multicast_mac_addr' drivers/net/wireless/rtl8188fu/core/rtw_cmd.o:rtw_cmd.c:(.text+0x1f4): first defined here drivers/net/wireless/rtl8188fu/hal/hal_hci/hal_usb.o: In function `is_broadcast_mac_addr': hal_usb.c:(.text+0x228): multiple definition of `is_broadcast_mac_addr' drivers/net/wireless/rtl8188fu/core/rtw_cmd.o:rtw_cmd.c:(.text+0x214): first defined here drivers/net/wireless/rtl8188fu/hal/hal_hci/hal_usb.o: In function `is_zero_mac_addr': hal_usb.c:(.text+0x2ac): multiple definition of `is_zero_mac_addr' drivers/net/wireless/rtl8188fu/core/rtw_cmd.o:rtw_cmd.c:(.text+0x298): first defined here drivers/net/wireless/rtl8188fu/hal/led/hal_usb_led.o: In function `is_multicast_mac_addr': hal_usb_led.c:(.text+0x5c): multiple definition of `is_multicast_mac_addr' drivers/net/wireless/rtl8188fu/core/rtw_cmd.o:rtw_cmd.c:(.text+0x1f4): first defined here drivers/net/wireless/rtl8188fu/hal/led/hal_usb_led.o: In function `is_broadcast_mac_addr': hal_usb_led.c:(.text+0x7c): multiple definition of `is_broadcast_mac_addr' drivers/net/wireless/rtl8188fu/core/rtw_cmd.o:rtw_cmd.c:(.text+0x214): first defined here drivers/net/wireless/rtl8188fu/hal/led/hal_usb_led.o: In function `is_zero_mac_addr': hal_usb_led.c:(.text+0x100): multiple definition of `is_zero_mac_addr' drivers/net/wireless/rtl8188fu/core/rtw_cmd.o:rtw_cmd.c:(.text+0x298): first defined here drivers/net/wireless/rtl8188fu/hal/HalPwrSeqCmd.o: In function `is_multicast_mac_addr': HalPwrSeqCmd.c:(.text+0x0): multiple definition of `is_multicast_mac_addr' drivers/net/wireless/rtl8188fu/core/rtw_cmd.o:rtw_cmd.c:(.text+0x1f4): first defined here drivers/net/wireless/rtl8188fu/hal/HalPwrSeqCmd.o: In function `is_broadcast_mac_addr': HalPwrSeqCmd.c:(.text+0x20): multiple definition of `is_broadcast_mac_addr' drivers/net/wireless/rtl8188fu/core/rtw_cmd.o:rtw_cmd.c:(.text+0x214): first defined here drivers/net/wireless/rtl8188fu/hal/HalPwrSeqCmd.o: In function `is_zero_mac_addr': HalPwrSeqCmd.c:(.text+0xa4): multiple definition of `is_zero_mac_addr' drivers/net/wireless/rtl8188fu/core/rtw_cmd.o:rtw_cmd.c:(.text+0x298): first defined here drivers/net/wireless/rtl8188fu/hal/rtl8188f/Hal8188FPwrSeq.o: In function `is_multicast_mac_addr': Hal8188FPwrSeq.c:(.text+0x0): multiple definition of `is_multicast_mac_addr' drivers/net/wireless/rtl8188fu/core/rtw_cmd.o:rtw_cmd.c:(.text+0x1f4): first defined here drivers/net/wireless/rtl8188fu/hal/rtl8188f/Hal8188FPwrSeq.o: In function `is_broadcast_mac_addr': Hal8188FPwrSeq.c:(.text+0x20): multiple definition of `is_broadcast_mac_addr' drivers/net/wireless/rtl8188fu/core/rtw_cmd.o:rtw_cmd.c:(.text+0x214): first defined here drivers/net/wireless/rtl8188fu/hal/rtl8188f/Hal8188FPwrSeq.o: In function `is_zero_mac_addr': Hal8188FPwrSeq.c:(.text+0xa4): multiple definition of `is_zero_mac_addr' drivers/net/wireless/rtl8188fu/core/rtw_cmd.o:rtw_cmd.c:(.text+0x298): first defined here drivers/net/wireless/rtl8188fu/hal/rtl8188f/rtl8188f_sreset.o: In function `is_multicast_mac_addr': rtl8188f_sreset.c:(.text+0x0): multiple definition of `is_multicast_mac_addr' drivers/net/wireless/rtl8188fu/core/rtw_cmd.o:rtw_cmd.c:(.text+0x1f4): first defined here drivers/net/wireless/rtl8188fu/hal/rtl8188f/rtl8188f_sreset.o: In function `is_broadcast_mac_addr': rtl8188f_sreset.c:(.text+0x20): multiple definition of `is_broadcast_mac_addr' drivers/net/wireless/rtl8188fu/core/rtw_cmd.o:rtw_cmd.c:(.text+0x214): first defined here drivers/net/wireless/rtl8188fu/hal/rtl8188f/rtl8188f_sreset.o: In function `is_zero_mac_addr': rtl8188f_sreset.c:(.text+0xa4): multiple definition of `is_zero_mac_addr' drivers/net/wireless/rtl8188fu/core/rtw_cmd.o:rtw_cmd.c:(.text+0x298): first defined here drivers/net/wireless/rtl8188fu/hal/rtl8188f/rtl8188f_hal_init.o: In function `is_multicast_mac_addr': rtl8188f_hal_init.c:(.text+0x1bec): multiple definition of `is_multicast_mac_addr' drivers/net/wireless/rtl8188fu/core/rtw_cmd.o:rtw_cmd.c:(.text+0x1f4): first defined here drivers/net/wireless/rtl8188fu/hal/rtl8188f/rtl8188f_hal_init.o: In function `is_broadcast_mac_addr': rtl8188f_hal_init.c:(.text+0x1c0c): multiple definition of `is_broadcast_mac_addr' drivers/net/wireless/rtl8188fu/core/rtw_cmd.o:rtw_cmd.c:(.text+0x214): first defined here drivers/net/wireless/rtl8188fu/hal/rtl8188f/rtl8188f_hal_init.o: In function `is_zero_mac_addr': rtl8188f_hal_init.c:(.text+0x1c90): multiple definition of `is_zero_mac_addr' drivers/net/wireless/rtl8188fu/core/rtw_cmd.o:rtw_cmd.c:(.text+0x298): first defined here drivers/net/wireless/rtl8188fu/hal/rtl8188f/rtl8188f_phycfg.o: In function `is_multicast_mac_addr': rtl8188f_phycfg.c:(.text+0x234): multiple definition of `is_multicast_mac_addr' drivers/net/wireless/rtl8188fu/core/rtw_cmd.o:rtw_cmd.c:(.text+0x1f4): first defined here drivers/net/wireless/rtl8188fu/hal/rtl8188f/rtl8188f_phycfg.o: In function `is_broadcast_mac_addr': rtl8188f_phycfg.c:(.text+0x254): multiple definition of `is_broadcast_mac_addr' drivers/net/wireless/rtl8188fu/core/rtw_cmd.o:rtw_cmd.c:(.text+0x214): first defined here drivers/net/wireless/rtl8188fu/hal/rtl8188f/rtl8188f_phycfg.o: In function `is_zero_mac_addr': rtl8188f_phycfg.c:(.text+0x2d8): multiple definition of `is_zero_mac_addr' drivers/net/wireless/rtl8188fu/core/rtw_cmd.o:rtw_cmd.c:(.text+0x298): first defined here drivers/net/wireless/rtl8188fu/hal/rtl8188f/rtl8188f_rf6052.o: In function `is_multicast_mac_addr': rtl8188f_rf6052.c:(.text+0x0): multiple definition of `is_multicast_mac_addr' drivers/net/wireless/rtl8188fu/core/rtw_cmd.o:rtw_cmd.c:(.text+0x1f4): first defined here drivers/net/wireless/rtl8188fu/hal/rtl8188f/rtl8188f_rf6052.o: In function `is_broadcast_mac_addr': rtl8188f_rf6052.c:(.text+0x20): multiple definition of `is_broadcast_mac_addr' drivers/net/wireless/rtl8188fu/core/rtw_cmd.o:rtw_cmd.c:(.text+0x214): first defined here drivers/net/wireless/rtl8188fu/hal/rtl8188f/rtl8188f_rf6052.o: In function `is_zero_mac_addr': rtl8188f_rf6052.c:(.text+0xa4): multiple definition of `is_zero_mac_addr' drivers/net/wireless/rtl8188fu/core/rtw_cmd.o:rtw_cmd.c:(.text+0x298): first defined here drivers/net/wireless/rtl8188fu/hal/rtl8188f/rtl8188f_dm.o: In function `is_multicast_mac_addr': rtl8188f_dm.c:(.text+0x0): multiple definition of `is_multicast_mac_addr' drivers/net/wireless/rtl8188fu/core/rtw_cmd.o:rtw_cmd.c:(.text+0x1f4): first defined here drivers/net/wireless/rtl8188fu/hal/rtl8188f/rtl8188f_dm.o: In function `is_broadcast_mac_addr': rtl8188f_dm.c:(.text+0x20): multiple definition of `is_broadcast_mac_addr' drivers/net/wireless/rtl8188fu/core/rtw_cmd.o:rtw_cmd.c:(.text+0x214): first defined here drivers/net/wireless/rtl8188fu/hal/rtl8188f/rtl8188f_dm.o: In function `is_zero_mac_addr': rtl8188f_dm.c:(.text+0xa4): multiple definition of `is_zero_mac_addr' drivers/net/wireless/rtl8188fu/core/rtw_cmd.o:rtw_cmd.c:(.text+0x298): first defined here drivers/net/wireless/rtl8188fu/hal/rtl8188f/rtl8188f_rxdesc.o: In function `is_multicast_mac_addr': rtl8188f_rxdesc.c:(.text+0x0): multiple definition of `is_multicast_mac_addr' drivers/net/wireless/rtl8188fu/core/rtw_cmd.o:rtw_cmd.c:(.text+0x1f4): first defined here drivers/net/wireless/rtl8188fu/hal/rtl8188f/rtl8188f_rxdesc.o: In function `is_broadcast_mac_addr': rtl8188f_rxdesc.c:(.text+0x20): multiple definition of `is_broadcast_mac_addr' drivers/net/wireless/rtl8188fu/core/rtw_cmd.o:rtw_cmd.c:(.text+0x214): first defined here drivers/net/wireless/rtl8188fu/hal/rtl8188f/rtl8188f_rxdesc.o: In function `is_zero_mac_addr': rtl8188f_rxdesc.c:(.text+0xa4): multiple definition of `is_zero_mac_addr' drivers/net/wireless/rtl8188fu/core/rtw_cmd.o:rtw_cmd.c:(.text+0x298): first defined here drivers/net/wireless/rtl8188fu/hal/rtl8188f/rtl8188f_cmd.o: In function `is_multicast_mac_addr': rtl8188f_cmd.c:(.text+0x0): multiple definition of `is_multicast_mac_addr' drivers/net/wireless/rtl8188fu/core/rtw_cmd.o:rtw_cmd.c:(.text+0x1f4): first defined here drivers/net/wireless/rtl8188fu/hal/rtl8188f/rtl8188f_cmd.o: In function `is_broadcast_mac_addr': rtl8188f_cmd.c:(.text+0x20): multiple definition of `is_broadcast_mac_addr' drivers/net/wireless/rtl8188fu/core/rtw_cmd.o:rtw_cmd.c:(.text+0x214): first defined here drivers/net/wireless/rtl8188fu/hal/rtl8188f/rtl8188f_cmd.o: In function `is_zero_mac_addr': rtl8188f_cmd.c:(.text+0xa4): multiple definition of `is_zero_mac_addr' drivers/net/wireless/rtl8188fu/core/rtw_cmd.o:rtw_cmd.c:(.text+0x298): first defined here drivers/net/wireless/rtl8188fu/hal/rtl8188f/hal8188f_fw.o: In function `is_multicast_mac_addr': hal8188f_fw.c:(.text+0x0): multiple definition of `is_multicast_mac_addr' drivers/net/wireless/rtl8188fu/core/rtw_cmd.o:rtw_cmd.c:(.text+0x1f4): first defined here drivers/net/wireless/rtl8188fu/hal/rtl8188f/hal8188f_fw.o: In function `is_broadcast_mac_addr': hal8188f_fw.c:(.text+0x20): multiple definition of `is_broadcast_mac_addr' drivers/net/wireless/rtl8188fu/core/rtw_cmd.o:rtw_cmd.c:(.text+0x214): first defined here drivers/net/wireless/rtl8188fu/hal/rtl8188f/hal8188f_fw.o: In function `is_zero_mac_addr': hal8188f_fw.c:(.text+0xa4): multiple definition of `is_zero_mac_addr' drivers/net/wireless/rtl8188fu/core/rtw_cmd.o:rtw_cmd.c:(.text+0x298): first defined here drivers/net/wireless/rtl8188fu/hal/rtl8188f/usb/usb_halinit.o: In function `is_multicast_mac_addr': usb_halinit.c:(.text+0x73c): multiple definition of `is_multicast_mac_addr' drivers/net/wireless/rtl8188fu/core/rtw_cmd.o:rtw_cmd.c:(.text+0x1f4): first defined here drivers/net/wireless/rtl8188fu/hal/rtl8188f/usb/usb_halinit.o: In function `is_broadcast_mac_addr': usb_halinit.c:(.text+0x75c): multiple definition of `is_broadcast_mac_addr' drivers/net/wireless/rtl8188fu/core/rtw_cmd.o:rtw_cmd.c:(.text+0x214): first defined here drivers/net/wireless/rtl8188fu/hal/rtl8188f/usb/usb_halinit.o: In function `is_zero_mac_addr': usb_halinit.c:(.text+0x7e0): multiple definition of `is_zero_mac_addr' drivers/net/wireless/rtl8188fu/core/rtw_cmd.o:rtw_cmd.c:(.text+0x298): first defined here drivers/net/wireless/rtl8188fu/hal/rtl8188f/usb/rtl8188fu_led.o: In function `is_multicast_mac_addr': rtl8188fu_led.c:(.text+0x84): multiple definition of `is_multicast_mac_addr' drivers/net/wireless/rtl8188fu/core/rtw_cmd.o:rtw_cmd.c:(.text+0x1f4): first defined here drivers/net/wireless/rtl8188fu/hal/rtl8188f/usb/rtl8188fu_led.o: In function `is_broadcast_mac_addr': rtl8188fu_led.c:(.text+0xa4): multiple definition of `is_broadcast_mac_addr' drivers/net/wireless/rtl8188fu/core/rtw_cmd.o:rtw_cmd.c:(.text+0x214): first defined here drivers/net/wireless/rtl8188fu/hal/rtl8188f/usb/rtl8188fu_led.o: In function `is_zero_mac_addr': rtl8188fu_led.c:(.text+0x128): multiple definition of `is_zero_mac_addr' driver
PassMark BurnInTest V5.3 Copyright (C) 1999-2008 PassMark Software All Rights Reserved http://www.passmark.com Overview ======== Passmark's BurnInTest is a software tool that allows all the major sub-systems of a computer to be simultaneously tested for reliability and stability. Status ====== This is a shareware program. This means that you need to buy it if you would like to continue using it after the evaluation period. Installation ============ 1) Uninstall any previous version of BurnInTest 2) Double click (or Open) the downloaded ".exe" file 3) Follow the prompts UnInstallation ============== Use the Windows control panel, Add / Remove Programs Requirements ============ - Operating System: Windows 2000, XP, 2003 server, Vista (*) - RAM: 32 Meg - Disk space: 6 Meg of free hard disk space (plus an additional 10Meg to run the Disk test) - DirectX 9.0c or above software for 3D graphics and video tests (plus working DirectX drivers for your video card) - SSE compatible CPU for SSE tests - A printer to run the printer test, set-up as the default printer in Windows. - A CD ROM + 1 Music CD or Data CD to run the CD test. - A CD-RW to run the CD burn test. - A network connection and the TCP/IP networking software installed for the Network Tests Pro version only: - A serial port loop back plug for the serial port test. - A parallel port loop back plug for the parallel port test. - A USB port loop back plug for the USB port test. - A USB 2.0 port loop back plug for the USB 2.0 port test. - PassMark ModemTest V1.3 1010 (or higher) for Plugin Modem testing. - PassMark KeyboardTest V2.2 1011 (or higher) for Plugin Keyboard testing. - PassMark Firewire Plugin V1.0 1000 (or higher) and a 揔anguru FireFlash?drive for Plugin Firewire testing. (*) Windows 2000 does not support the CD-RW burn test. The advanced RAM test is only available under Windows 2000 and Windows XP professional (the other RAM tests are supported under the other OS's). Users must have administrator privileges. Windows 98 and Windows ME ========================= Windows 98 and ME are not supported in BurnInTest version 5.3 and above. Use a version of BurnInTest prior to 5.2 for compatibility with W98 and ME. Windows 95 and Windows NT ========================= Windows 95 and NT are not supported in BurnInTest version 4.0 and above. Use a version of BurnInTest prior to 3.1 for compatibility with W95 and NT. Version History =============== Here is a summary of all changes that have been made in each version of BurnInTest. Release 5.3 build 1035 revision 4 WIN32 release 10 November 2008 - Lenovo China specific build. Lenovo system detection changes. Release 5.3 build 1035 revision 3 WIN32 release 7 November 2008 - Lenovo China specific build. Lenovo system detection changes. Release 5.3 build 1035 revision 2 WIN32 release 6 November 2008 - Lenovo China specific build. Lenovo logo and Lenovo system detection changes. Release 5.3 build 1035 WIN32 release 5 November 2008 - Lenovo China specific build. Changes include: Lenovo logo added, Lenovo system support only, 32-bit BurnInTest restricted to 32-bit Windows and BurnInTest run as administrator. Release 5.3 build 1034 WIN32 release 3 October 2008 - Correction to setting the CD burn test drive in preferences. - Changed the mechanism to check for the required DirectX Direct3D as the previous method did not work on some system (some W2003 servers). - Enhanced the mechanism to report memory hardware errors in the Memory torture test. Release 5.3 build 1033 WIN32 release 1 October 2008 - Changes to correct a BurnInTest crash problem on some systems. When the disk and standard RAM tests are run for many hours, BurnInTest may have disappeared with no error message. Release 5.3 build 1030 WIN32 release 25 September 2008 - Changes to investigate a BurnInTest crash problem on XP SP3. Release 5.3 build 1028 WIN32 release 11 September 2008 - Two 2D Video memory test crash bug workarounds implemented. Crashes in (i) DirectX DirectShow and (ii) ATI atiumdag.dll library. - A hang on startup has been corrected. A 2 minute timeout has been added to the collection of system information. - Video playback, Hard disk and CD/DVD test 'no operations' error reporting changed. - When BurnInTest crashes, it will not generate a "minidump" file. Minidumps will need to be sent to Microsoft as per the normal process. However, a log entry will be added to the normal BurnInTest log. - Changes to trace logging to reduce activity when trace logging is not turned on. - Note: We have seen a report of the Video Playback failing (crash) due to a faulty video codec, ffdshow.ax. If you are using this we suggest you try a different Video file and codec. Release 5.3 build 1027 revision 0003 WIN32 release 19 August 2008 - Changed the 2D test to wait for the Video Playback test in order to allow memory allocation for the Video playback test. - Changed the Memory test to wait for the Video Playback test and 3D test to allow memory allocation for these tests. - Minor changes to the No operation error watchdog timer for the CD and Hard disk tests. - Minor correction to the Butterfly seek test. - Video playback trace logging increased. Release 5.3 build 1027 revision 0002 WIN32 release 19 August 2008 - Video playback trace logging increased. Release 5.3 build 1027 WIN32 release 31 July 2008 - Corrected a bug where BurnInTest would fail to start if Activity trace level 2 logging (debug level logging) was turned on and the Logging Summarize option was also selected. - Minor change to the serial port test where, if "Disable RTS/CTS and DSR/DTR test phase" was selected the DTR and RTS lines would be explicitly disabled to prevent any toggling of these lines. Previously these where enabled, but not explicitly toggled. Release 5.3 build 1026 WIN32 release 17 July 2008 - Updated Level 2 and Level 3 CPU cache information for newer Intel CPU's. - Updated the detection of Hyperthreading and the number of logical CPUs for a new Intel CPU. Release 5.3 build 1025 WIN32 release 11 July 2008 - Corrected a Disk test bug where on rare occasions a verification error is incorrectly displayed. This is during the random seeking phase of the "Random data with random seeking" test mode and only occurs with some specific test settings. Release 5.3 build 1024 WIN32 release 10 July 2008 - Workaround for the rare crash bug in Vista in atklumdisp.dll at address 0x730676ae. - Added trace debug information for BurnInTest startup and the 3D test. Release 5.3 build 1022 WIN32 release 12 June 2008 - Corrected a bug where the 2D video memory test in BurnInTest v5.3.1020 and v5.3.1021 would report a "Not enough video memory available for test" error if the test was run a couple of times (without closing BurnInTest). Release 5.3 build 1021 WIN32 release 5 June 2008 - 32-bit BurnInTest PRO 5.3.1020 would not start on Windows 2000. This has been corrected. Release 5.3 build 1020 WIN32 release 29 May 2008 - BurnInTest could have crashed on accessing bad video memory hardware in the 2D test. This problem is now just reported as an error (and BurnInTest) continues. - When BurnInTest crashes, it should now generate a "minidump" file to help debug which system component caused the failure (32-bit Pro version only). - Other minor changes. Release 5.3 build 1019 WIN32 release 16 May 2008 - Corrected rare crash bugs in the 2D and Video tests. - Added a hot Key, F4, to set the auto run flag and run the tests (i.e. set "-r" and then run the tests). - Other minor changes. Release 5.3 build 1018 WIN32 release 16 April 2008 - Added an operation watchdog timer for all tests. In rare cases, a single test can stop in the operating system - i.e. there is a problem in the operating system/ device driver that prevents control being returned to the BurnInTest for that test. This was added for specialized serial port hardware that could lockup after several hours of testing. Release 5.3 build 1017 WIN32 release 3 April 2008 - Corrected the Advanced Network test to run on non-English Operating Systems. Release 5.3 build 1016 WIN32 release 17 March 2008 - Added additional USB 2.0 Loopback plug test initialization to ensure plugs are in a 'clean' state when starting the USB tests. This was added due to reported USB data verification errors after scripted USB testing across multiple reboots. Release 5.3 build 1015 WIN32 release 27 February 2008 - Increased error reporting detail for the standard RAM test, when the -v command line option is used. Release 5.3 build 1014 WIN32 release 30 January 2008 - Corrected a problem where the loopback sound test could run out of memory if run for several days. Release 5.3 build 1013 WIN32 release 31 December 2007 - Improved the reporting of COM port errors such that in the rare case a COM port locks up in the Operating System, the error is still reported. - Corrected a bug, where in rare cases, the result summary could be duplicated in a log file. - Updated license management, in an attempt to remove a rare crash on startup. Release 5.3 build 1012.0002 WIN32 release 31 October 2007 - New build of Rebooter (64-bit Windows correction). - Clarifications in the help file. Release 5.3 build 1012 WIN32 release 17 October 2007 - Changed the Standard Network Test, "Test all available NICs" such that the number of Network Addresses specified in Preferences->Network will be the number of NICs tested. This will error faulty NICs that are not detected by the BurnInTest auto NIC detection mechanism. - Minor change to the 2D memory test when run with the 3D test (multiple large windows) and the RAM test. Aimed at correcting sympton: Access Violation 0x00404CF9. - Corrections to the mapping of paths with ".\". Release 5.3 build 1011 rev 2 WIN32 release 17 September 2007 - Modified the Multi-Process torture test to better describe a new error message introduced in V5.3.1010. Release 5.3 build 1011 - Public release WIN32 release 11 September 2007 - Corrected a bug where "Limited Evaluation Version" could be displayed even after BUrnInTest is licensed (problem introduced in 32-bit BITPRO V5.3.1010). - Changed the Sound test to allow any of the tests (Wave, Midi or MP3) to be excluded from testing by blanking the filename. - The Command line parameter "-j" (cycle disk test patterns after each test file) could fail during the Random data test due to the mechanism used in BurnInTest. The Random data test is now excluded from the test when (and only when) the "-j" command line parameter is specified. - In rare circumstances, the 2D test number of operations could potentially overflow and become negative. This has been corrected. - In rare circumstances, BurnInTest could hang if there was a system problem in rebooting the system (ie. it failed to shutdown) using PassMark Rebooter. This has been corrected. Release 5.3 build 1010 - Public release WIN32 release 28 August 2007 WIN64 release 28 August 2007 - As BurnInTest exercises system components, it is possible for faulty hardware or device drivers to cause software exceptions. These are normally seen as Windows reporting an "Access Violation". Changes have been made to handle these errors for the memory tests (for faulty RAM) and direct device driver access (for some device driver errors), as well as overarching more generic handling of these types of errors. - Corrected a software failure bug on startup (particularly Vista) where a DirectX function was causing software failures in "dsetup.dll". - Updated the "Activity Event" generated with the periodic results summary report to be numbered (from 1 upwards) such that when "Logging->Summarize", these events are not summarized. - Corrected a bug where the HTML log name could include a duplicate of the filename prefix. - Updated to the Common Errors section of help. Release 5.3 build 1009 - Public release WIN32 release 16 August 2007 - Corrected a 'zip' version cleanup problem. Release 5.3 build 1008 - Komputer Swiat Expert magazine version WIN32 STD release 14 August 2007 Release 5.3 build 1007 - Public release WIN32 release 7 August 2007 - Corrected a disk test startup problem for some large RAID systems when SMART testing is selected. - Added additional logging for the disk test when an error occurs. - Changed the 3D test when run with the 2D EMC test to be 'behind' the EMC scrolling H's test. Allowed the test to be easily exited when running the 3D test in Fullscreen mode. - Minor corrections to the Advanced Network test. - Changed the log file reference of "Network Name" to "Computer Name". WIN64 specific: - MMX and 3DNow! are obsolete for native 64-bit applications. BurnInTest has been changed to show "NA" (Not applicable) in the test window for these tests. Release 5.3 build 1006 - Limited release WIN32 release 17 July 2007 - Standard Network Test changes: - Increased the number of destination IP addresses from 4 to 6. - Added an option (default) "Test all available NICs", which will force traffic down every system NIC with a basic algorithm of NIC1 to IP Address 1, NIC2 to IP Address 2 etc. - Advanced Network test changes: - Simplified the test. - Removed the UDP and FTP options. The Standard Network test can be used as a UDP test. - Removed the Advanced Network test specific logging, and included all relevant logging in the standard BurnInTest logging mechanism. - Replaced the complicated dynamic balancing of any system NIC to any Endpoint NIC with a simpler static allocation on test startup. - Changed the error detection mechanism to detect errors much more quickly. - Re-worked the errors reported. - Changed the CPU throttling mechanism to reduce the CPU load. - Updated endpoint.exe. - Removed checkend.exe (now obsolete). - Changed the logging rollover to work with the output of interim results (e.g. per 1 minute). Previously rollover only occurred on error events written to the log. This also corrected an issue where interim results summary logging could be written to the physical disk with some delay (based on Windows disk caching). - Corrected the "Unknown" reporting of some operating systems. - Added the skipping of the Butterfly seek disk test when run on Vista and insufficient privileges. A notification of this is logged. - Intel Quad core L2 cache size reporting has been added. - Added new SMART threshold descriptions. - Added new disk test options, accessed via command line parameters: /ka: keep disk test files in all cases (c.f. /k keep disk test files on error). /j: cycle patterns between test files. Note: Random seeking will be skipped in this case. This option has been added to allow multiple test patterns to be used across very large disks. - Added an option to make some test settings unavailable to the user. An example configuration file available on request. Release 5.3 build 1005 0001 (STD only) - Public release WIN32 release 29 June 2007 - Corrected a bug introduced in v5.3.1005.0000 STD (only) where the disk test would use up more and more system resources, thus causing test failures. Release 5.3 build 1005 rev 0003 (PRO only) - Limited public release WIN32 release 21 June 2007 - Correction to the behavior of a static RAM test pattern (rather than the default Cyclic pattern). Release 5.3 build 1005 rev 0002 (PRO only) - Limited public release WIN32 release 15 June 2007 - The "Select all CD/DVD drives" preferences option has been made user configurable, rather than using pre-defined test settings. Release 5.3 build 1005 rev 0001 (PRO only) - Limited public release WIN32 release 13 June 2007 - Bug correction for the CD auto selection feature. Release 5.3 build 1005 - Public release WIN32 release 18 May 2007 WIN64 release 18 May 2007 - In a number of cases, such as when specifying the post test application, uppercase application names were not accepted. This has been corrected. - The default font height in the 2D scrolling H's test should have been Arial 9. This has been changed. - The BurnInTest Video playback test incompatibility with Nero 6 and Nero 7 has been resolved. - The BurnInTest disk test throughput for dual core systems has been improved. Release 5.3 build 1004 rev2 - Limited release WIN32 release 8 May 2007 - Changed the Standard Network Test to better report packet error ratios. In addition, a new warning has been added to indicate that errors have been detected but not enough packets have been attempted to be sent to determine accurately whether the configured error ratio has been exceeded. - Corrected a bug where the "append to existing" logging option did not work across scripted reboots, and a new log file was created instead of appending to the existing log file. - If the 3D test was running, then BurnInTest blocked a forced close of BurnInTest, this blocking has been removed. - Changed the PASS and FAIL windows so they can now also be closed by selecting the Windows Close "X" button. Release 5.3 build 1004 - Public release WIN32 release 10 April 2007 WIN64 release 10 April 2007 - Corrected a problem introduced in BurnInTest v5.2 where BurnInTest could run out of memory (the main symptom) when tests where run for long periods (> 12hours). WIN64 specific: - Corrected a bug where the number of cores reported on a Quad core system was incorrectly reported as CPU packages. Release 5.3 build 1003 - Limited release WIN32 release 3 April 2007 - A new 2D GUI (Graphical User Interface) test has been added to the standard 2D graphics test. - Resolved an issue where BurnInTest would fail to start on Vista systems with DEP enabled for all programs. - On some systems, the Disk test could pause momentarily even when a duty cycle of 100% was specified. This pause has been removed. - When running the CD test under BartPE (Pre-install environment) 4 additional specific files are skipped as they are unavailable for testing. - Minor bug corrections. Release 5.3 build 1002 rev 0001 - Limited release WIN32 release 16 March 2007 - Changes to the new 3D test: - Added a Full screen non-windowed test for the primary monitor, where the resolution can be selected from those supported by the Graphics card. - Added the user option of changes the vertical sync in the full screen non-windowed test to be either the Maximum rate of the graphics card, or to be the rate of the monitor (this may prevent some flicker). - Added a more complex water texture using DirectX Vertex Shader 2.0 and Pixel Shader 2.0 effects (if supported by the graphics card). This applies to 3D test windows that are 800x600 or larger. - Changed some error messages from window displays (that require user intervention) to standard error reporting. Added new 3D error messages and more detail in the error reporting. - Changed the definition of an operation to be a successfully displayed frame. - Changed the definition of a cycle to be 2000 frames. - Changed 2D video memory test to wait until the 3D test starts (as per V5.2 and earlier). - A new version of rebooter has been included. - If BurnInTest is started with the -p command line parameter (to use the bit.exe directory for files such as the configuration file), then BurnInTest will start rebooter with the -p option. This can be useful when running BurnInTest and Rebooter from a USB drive. Release 5.3 build 1002 - Limited release WIN32 release 19 March 2007 - Corrected a bug introduced in V5.2 where selecting accumulated logging could lead to rebooter failing to launch. Release 5.3 build 1001 - Limited release WIN32 release 16 March 2007 - The 3D test has been improved. The 3D ball test has been replaced with a more complex 3D terrain test. This will more thoroughly exercise modern graphics cards. Further, the 3D test has been changed to support multi- monitor testing (up to 4 monitors). Accordingly, a new preferences section has been added for the 3D test. The multi-monitor test options are only available in BurnInTest Professional. Release 5.3 build 1001 - Limited release WIN32 release 16 March 2007 - The 3D test has been improved. The 3D ball test has been replaced with a more complex 3D terrain test. This will more thoroughly exercise modern graphics cards. Further, the 3D test has been changed to support multi- monitor testing (up to 4 monitors). Accordingly, a new preferences section has been added for the 3D test. The multi-monitor test options are only available in BurnInTest Professional. - BurnInTest uses DirectX 9.0c. This version of BurnInTest uses a more recent version of the Microsoft DirectX Direct3D component, October 2006. BurnInTest has been modified to detect and install this component (file) if it does not exist. - A command line parameter -X has been added to skip the DirectX version checking on BurnInTest start-up. - With the recent introduction of multi-monitor support for the Video Playback test, it is now more likely that the system will run out of memory when running multiple video tests simultaneously, particularly when more memory intensive codecs are used. A specific Insufficient resources to complete test message has been added in this case, rather than the previous more generic unrecoverable error message. The video test have been changed to attempt recovery from this and the more generic unrecoverable error, by closing the current video and opening the next. The logging detail has been increased. - Note: The BurnIntest sample video pack has been altered with the DivX Compressed Video file being removed due to the DivX codec failing with this Video file when used with multiple simultaneous Video playbacks. Access Violation: 0x69756e65. See: http://www.passmark.com/download/bit_download.htm - The video description is now collected for a larger range of Vista systems. - Windows 98 and ME are no longer supported. Please see www.passmark.com for a link to an older version of BurnInTest that will support W98/ME. Release 5.3 build 1000 rev2 - Limited release WIN32 release 9 March 2007 - A command line parameter -P has been added to allow the BurnInTest directory to be used rather than the User's personal directory. This may be useful when running BurnInTest from a USB drive for example. - When running the CD test under BartPE (Pre-install environment) 4 additional specific files are skipped as they are unavailable for testing. - A change has been made to support Hmonitor temperature monitoring on Vista. - A number of undocumented command line parameters have been documented: -B: BurnInTest will generate additional Serial port test information when activity trace level 2 logging is set. -E [data]: Specifies the test data to use in the serial port test. -M: Automatically display the Machine ID Window when BurnInTest is started. -U: Force BurnInTest to set logging on at startup. Release 5.3 build 1000 - Limited release WIN32 release 8 March 2007 - Changed the 2D and Video playback tests to support multi-monitor testing. - When running the CD test under BartPE (Pre-install environment) 4 specific files are skipped as they are unavailable for testing. Release 5.2 build 1006 - Limited release WIN32 release 1 March 2007 - Corrected a bug where BurnInTest would fail to start on certain Vista systems. - Corrected a bug where some files where the full path was not specified would be incorrectly referenced in the Program Files directory, rather than the user personal directory. Release 5.2 build 1005 - Public release WIN32 release 21 February 2007 WIN64 release 21 February 2007 - Updated the Graphics card description for Windows Vista systems. - Updated the Advanced Network test to indicate that elevated administrator privileges are required when running on Vista. - Moved files from the Program files directory for the Advanced Network Test (BurnInTest, EndPoint and CheckEnd). Specifically, the User Application directory is now used for the temporary test FTP files and the User Personal directory is now used for the log and configuration files. - Updated the cleanup process for when running the "zip" version of BurnInTest Professional from a CD or flash drive. - Updated the help link from the Windows Start, All Programs, BurnInTest menu for the browser based help. - Corrected a bug where Disk preferences displayed in the Preferences window would be incorrect when the system had no Floppy drive. - Corrected a bug where the Advanced Network test might not have been displayed until after entering the Duty Cycle selection (ie. just chaning from the standard network test to the advanced test). - Corrected a USB bug in Beta 5.2.1003 where the test would not run if there where there insufficient USB loopback plugs attached to the system. - Included a new version of PassMark Rebooter that supports Windows Vista. Release 5.2 build 1004 - Public Pre-release WIN32 release 13 February 2007 - Updated the reported Operating system for the various Vista product editions. - Disk test settings can be configured for "Automatically Select all Hard Disks", rather than using defaults. - When running the CD test under BartPE (Pre-install environment) 4 specific files are skipped as they are unavailable for testing. - Corrected a bug where temperature information could be duplicated in the HTML report. - Corrected a bug certain 'save report' warning messages could be truncated. - Help file updated. Release 5.2 build 1003 - BETA RELEASE ONLY WIN32 release 23 January 2007 - Changed the USB preferences and test to more completely check for the PassMark USB Loopback plugs and ignore any device that is not a PassMark USB Loopback plug (due to reported incorrect detection with another hardware device). - Increased Trace level debugging for Intel temperature monitoring. - Corrected a bug with the disk test introduced in 5.2.1001 Release 5.2 build 1002 - BETA RELEASE ONLY WIN32 release 22 January 2007 - Increased the number of disks that can be tested from 20 to 26. - Updated BurnInTest to reflect that Temperature monitoring with Intel Desktop utilities is supported. Intel Desktop utilities essentially is a replacement for Intel Active Monitor for newer Intel motherboards. - Increased Trace level debugging for Intel temperature monitoring. Release 5.2 build 1001 - BETA RELEASE ONLY WIN32 release 19 January 2007 - Windows Vista support. - The Block size used in the disk test is now configurable per disk. The default block size has been increased from 16KB to 32KB. - An option has been added to automatically detect all of the CD and DVD drives for the CD test (as per the disk test). This may be useful when testing across many systems with different optical drive configurations. - Increased Trace level debugging for Intel temperature monitoring. - Bugs corrected: - Disk preferences - in rare cases invalid default values could be set for a disk, an invalid value error would occur and the values would need to be manually corrected. Release 5.2 build 1000 - limited release WIN32 release 8 January 2007 - Windows Vista support. - Reduced the need for elevated administrator privileges: - Changed the location of the disk test files from the root directory of the test volume to a BurnInTest data files subdirectory (e.g from "C:\" to "C:\BurnInTest test files\") - Moved many of the files from the Program Files directory to the User directory for Windows 2000, XP and Vista. When running BurnInTest on Windows 98, ME or from a key.dat file (e.g. from a USB drive with a licensed key.dat) BurnInTest will store these files in the BurnInTest program directory. Specifically, the following files have been moved from the Program Files directory to the User Personal directory, e.g. Vista - "C:\Users\\Documents\PassMark\BurnInTest\" XP - "My Documents\PassMark\BurnInTest\" Files: Configuration file, Configuration load/save default directory, Save log file and image default directory, parallel port override "ioports.dat" directory, default command line script directory, log file directory, video file directory, Plugin directory, machine id file directory, Run as script default directory, CD burn image, Advanced network FTP temp files. - Replaced the Help system with Browser based help. - Changed the Disk test block size from 16KB to 256KB. It is planned to make this user configurable in the next build. Release 5.1 build 1014 WIN32 release 2 November 2006 WIN64 release 2 November 2006 - Corrected a bug when running on Vista, where the Standard network test would report a checksum error when the transmitted data was correct. - Corrected a bug where BurnInTest would not stop the tests based on the number of test cycles for the Plugin test or the Advanced Network test. - Made the "Could not set USB2Test mode" USB error message more specific by adding an error for insufficient system resources. - Changed the preferences Window to fit on an 800x600 resolution screen. - Corrected a minor bug in Activity level 2 trace logging with the 'hide duplicate' preference setting. - Corrected a minor memory leak if the 2D test failed to initialize (such as due to a DirectX problem). - The Parallel port test may now be used on Windows Vista. Specifically, the PassMark device driver used for the parallel port test could not be loaded on 64-bit Windows Vista as it was not digitally signed. It is now digitally signed. Release 5.1 build 1013 revision 0002 WIN32 release 19 September 2006 WIN64 release 19 September 2006 - Corrected an Access Violation problem reported by a customer on a particular MB. Release 5.1 build 1013 WIN32 release 7 September 2006 WIN64 release 7 September 2006 - The "Notes" section has been added to the Customer results certificate. - Some additional configuration range validation has been added. Release 5.1 build 1012 WIN32 release 15 August 2006 - Corrected a false report of a "Unable to get disk volume extent information" for the disk butterfly seek test. - Advanced Network test changes for errors: "Corrupt header - packet discarded" and "Advanced Network test timed out" - Advanced Network test Endpoint changes for problems on non-English Operating Systems and systems with the Windows "Network Interface" performance statistics disabled. - SMART parameters on a Samsung Hard Disk caused BurnInTest to fail when running the disk test with SMART thresholds enabled. This has been corrected. - The 2D scrolling H's test could display corrupt characters on the second and subsequent test run. This has been corrected. - A problem with the Integer maths test where the results could display a negative number of operations has been resolved. - Minor improvements to the help file. - HTML help file added for Windows Vista and Longhorn Server. - Minor improvements to the Error Classification file (error descriptions). - Some CD Trace level 1 logging has been moved to trace level 2. - Trace level 1 logging has been added to the test closing software. - New build of Endpoint.exe (1.0 1010). Release 5.1 build 1011 WIN32 release 6 July 2006 - New Advanced Network test error reporting added in the previous build V5.1 1010 has been removed. - A broader range of USB 2.0 Loopback plugs can now be used with BurnInTest. Release 5.1 build 1010 WIN32 release 4 July 2006 - Corrected the HTML report description of the L2/L3 CPU cache when the L3 cache size could not be determined. Advanced network changes: - Endpoints ran at 100% CPU load as they contained no throttling. This impacted their ability to effectively handle multiple threads handling TCP/UDP messaging. Throttling has been added to the EndPoint side to reduce CPU load. This does not greatly impact Network load. - Throttling on the BurnInTest side contained a sleep that was not insignificant. This could have impacted the BurnInTest data test thread to to handle incoming TCP and particularly UDP messages. This sleep has been reduced and other throttling parameters changed to suit. (ie. smaller sleeps more often). - EndPoint systems with x NICs (where x > 1), reported themselves as an Endpoint with x NICs, x times. Effectively registering with BurnInTest as x * x EndPoint NICS. This impacted the effectiveness of the load distribution to EndPoint NICs. An Endpoint system now only registers the once with BurnInTest. - The BurnInTest side did not report data verification Checksum errors for full duplex testing. This error determination has been corrected and reporting added. - The Test statistics sent from the Endpoint to BurnInTest could fail if the statistics block is split across 2 lower level TCP send packets. This could lead to problems like incorrect reporting of Endpoint determined checksum errors, Endpoint load and load balancing. Further it would lead to an Endpoint testthread being put into an endless TCP send loop. This would eventually bring the Endpoint system to its knees as more and more of these test threads go into this state. This has been corrected. - The Data Received reported by BurnInTest was double counted. This has been corrected. Release 5.1 build 1009 WIN32 release 23 June 2006 - Plugin test error classifications were incorrect in the log file detailed description. - Corrections to the advanced network test (BurnInTest and EndPoint). Release 5.1 build 1008 - limited release WIN32 release 20 June 2006 - Advanced network changes corrections. Most notably, a bug where part of the payload data could be lost if the payload block (eg. 1000 bytes) was split across 2 (or more) lower level TCP packets. - Added version reporting for Endpoints. Release 5.1 build 1007 - limited release WIN32 release 16 June 2006 Advanced network changes: - Corrected a BurnInTest access Violation introduced in V5.1 1006. - The Endpoint now reports its version and build to BurnInTest and BurnInTest reports this in the log file if it is an earlier version than expected. This is to help avoid the situation where old Endpoints are run on the Network, that may not be compatible with the version of BurnInTest being run by the user. - Removed a timeout report in a specific instance where a timeout is not an error. - Changed the Endpoint rebalancing and polling to occur less often after the test has been running 3 minutes. This is to help allowing the handling of polling from a larger number of multiple copies of BurnInTest on the Network. - Added a connection retries on failure for the Endpoint. - Corrected a memory leak in the Endpoint. - Increased the number of sockets supported. - Corrected some Advanced Network error classifications. Release 5.1 build 1006 - limited release WIN32 release 14 June 2006 - Improvements to the Advanced Network test (both BurnInTest V5.1 1006 and EndPoint V1.0 1004) to remove corrupted false packet corruption errors. Improved the timeout recovery mechanism. Added some validation to the Windows Network performance data used for NIC utilization. - Changes to the collection of Disk drive information on startup to try to resolve a startup issue on Systems with a large number of physical drives and 'unusual' WMI namings. Release 5.1 build 1005 WIN32 release 2 June 2006 - Corrected a bug in the Advanced network test where the test would not recover from timeout errors. The test appears to be running, but the results are 0 and the number of connected End Points are 0. Also improved the retry on timeout mechanism. - Removed some duplication in error reporting in the Advanced Network test. - Changed the Advanced Network display of Utilization to ensure a maximum of 100% displayed. - Corrected an Advanced Network test bug where the number of Errors reported in the test window would not take into account the corrupt packet threshold, and an error would be added for each occurrence of the corrupt packet (rather than when the user set threshold was reached). Release 5.1 build 1004b WIN32 release 25 May 2006 (not publicly released) - Corrected the default Advanced network corrupt packet threshold value. - Updated the data entry fields in the CD preferences when a different CD drive is selected. - The Advanced Network specific log files should be concatenated for a script run. This was only occurring for the first NIC under test. The concatenation will now occur for each NIC under test, when run from a script. - Corrected a bug where a log file name specified with no directory path could be incorrect. - Corrected a bug where the customer "Test Certificate" report incorrectly translated the "%" character from a customer specific HTML template. eg would be translated to . - The "Advanced Network test error" (215) has been removed and replaced with other existing error messages 214, 219, 220, 221 or 222. - Added the Customer name and Technician name to the text and HTMl reports. Previously, this information was only included in the "Test Certificate" report. - We have added a commandline option to specify the Serial port test data as a constant value. To specify specific data for the Serial port test you should specify e.g. "bit.exe /E 23" from the command line where 23 is in decimal and will be used for all test data (instead of random data). The vales should be between 0 and 255. Release 5.1 build 1004 WIN32 release 19 April 2006 (not publicly released) - Added the COM port speed of 921600 Kbits/s for RS 422/RS485 testing. - Changed the CD test to ensure that the entire test CD data is not cached on systems with a large amount of RAM. - Added a -M command line option to display the Machine ID window automatically when BurninTest starts. - Changed the 2D EMC scrolling H's test to work on multiple monitors were the resolution on each is different. - Changed log files such the syntax "..\" could be used for files in the directory up a level. - Minor correction to the advanced network test. Release 5.1 build 1003 WIN32 release 18 April 2006 WIN64 release 18 April 2006 - Changed the Advanced network test to allow a corrupt packet threshold value up to 1 million. - Bundled a new version of rebooter. Release 5.1 build 1002 WIN32 release 11 April 2006 WIN64 release 11 April 2006 - Corrections to the translation of V4.0 to V5 configuration files. Note: Configuration files in V5.x builds prior to V5.1 1002 could become corrupted if a V4.0 configuration file is loaded. - Corrected a bug where the main Window size and location were not restored on restarting BurnInTest. - Changes to the SMART attribute logging to support a greater range of Disk drive device drivers. Added additional Activity Level 2 trace logging. - Added an option to use CTS (Clear To Send) flow control in the loop back stage of the COM port test. - Corrected a bug where the CPU L3 cache could be reported as -1. - Help file updates. Release 5.1 build 1001 WIN32 release 30/March/2006 - Digitally signed the BurnInTest application to allow it to run under Windows Server "Longhorn". Note, previously only the installation package was digitally signed. - Updated the reported Operating system descriptions, including: - Windows Vista - Windows Server "Longhorn" - Corrected a bug where the Advanced network information was not displayed on the main window when it was run from a script. - The Advanced Network Corrupt threshold packet has been changed to produce an error every time the error is received after the threshold is reached. - Corrected the reporting of "Network, Packet discarded due to corrupt header" as a Network test error. - Corrected a bug where a new log file was not created if (only) the log prefix changed during the running of a script file. - Split the "Network, Advanced Network test error" error into 6 errors: "Network, Advanced Network test error" "Advanced Network Socket error" "Advanced Network Send error" "Advanced Network Send error - no data sent" "Advanced Network Receive error" "Advanced Network Receive error - no data received" Added either activity trace 1 or trace 2 logging for each of the errors, with additional information where available. - Added additional Serial port activity trace 2 logging. Including the logging of all transmit buffer data when the /B command line is used. Release 5.1 build 1000 WIN32 release 27/March/2006 (not a public release) Added the following features: - Create the log file directory specified in the Logging Options if it does not exist. - Condense the Advanced Network Test log files to one log file per IP address per script run, when run from a script. - Added an option to summarize duplicate errors in the log file. - Color coded errors based on severity in the Detailed event log Window and the HTML log file. - Added an option to only create a log file when BurnIn actually runs a test as opposed to every time BurnIn is executed. - Added a warning if a test thread completes with 0 cycles and 0 operations. - In the results summary html file, inserted more spacing between the 揘otes? and 揇etailed Event Log? - Changed the Activity Trace file format to be the same as the log file, ie. text or HTML, rather than always text. - The 2D 揝crolling H抯?test will now display across multiple screens/displays ?i.e. all active displays. - A threshold has been added for the 揷orrupt header ?packet discarded?event in the advanced network options so that a 揊ail?is not produced when that is the only thing that produces errors. - Added looping capability in scripting. LOOP n { ? } where n is the number of times to repeat the commands in the brackets. - Corrected a bug where PASS could be displayed if the Advanced Network test was the only test running, but it failed. Release 5.0 build 1001 WIN32 release 9/March/2006 - Corrected a bug where Network directory paths were not accepted, eg. for the log file name and post test application file name. - The CPU maths test has been improved to better load up all CPU's. Previously BurnInTest started a maths test thread per physical CPU package. BurnInTest has been changed to start a maths test thread per CPU (= num. physical CPU packages x num. CPU cores x num. logical CPUs). - The CPU preferences have been changed to allow the CPU maths test to be locked to any CPU (ie. select a CPU from a list of CPU's where the number of CPU's = num. physical CPU packages x num. CPU cores x num. logical CPUs). - The Parallel and Serial port error message have been modified in the case where a test plug may not have been connected to indicate that the user should check this. - Corrected a bug where a licenced version could display the message "[limited evaluation version]" Release 5.0 build 1000 WIN32 release 24/February/2006 WIN64 release 24/February/2006 NEW TESTS & IMPROVEMENTS TO EXISTING TESTS BurnInTest Standard and Professional versions. - Added a customer style results certificate. This will save the log file in HTML format but from the perspective of a end customer. This report style can be tailored by the user (through changing an HTML template). - An MP3 playback test has been added to the Sound test. - A color printer test has been added. - A new post test option to allow the results to be printed automatically at the end of a test has been added. - Added new Post-test action options of: - Optionally allow the user to "run an external program & exit" after BIT has been manually stopped. Modify the $RESULT variable to "PASS (manual abort)" or "FAIL (manual abort)" for this case. - Allow the results window to be displayed for all post test options (except Reboot). - Added new Pre-test actions to allow an external application to be run and have BIT wait for the application to exit. On continuing, BIT will run the subscript file (of scripting commands) if it has been created. - Changed the manual Stop buttons, to abort the running of a script (rather than just the current test). BurnInTest Professional specific. - Added a "Plugin" test that allows users to develop their own BurnInTest test modules for specialized hardware. Three external plugins may be specified at once. - A Modem test has been added to BurnInTest as a Plugin. PassMark's ModemTest Version V1.3 (latest build) is required. - A KeyBoard Test has been added to BurnInTest as a Plugin. PassMark's KeyboardTest Version V2.2 (latest build) is required. - A Firewire Test has been added to BurnInTest as a Plugin. PassMark's free Firewire plugin is required and a "Kanguru FireFlash" drive is required. - A new advanced network test has been added. BurnInTest Professional only. - The Memory test now allows the user to specify the type of test pattern to be used. - Testing with the USB 2.0 Loopback plug has been improved. When used with USB 2.0 Loopback device driver V2.0.1002, error details will now be reported for: CRC error reported by USB Host controller BIT STUFF error reported by USB Host controller DATA TOGGLE MISMATCH error reported by USB Host controller STALL PID error reported by USB Host controller DEVICE NOT RESPONDING error reported by USB Host controller PID CHECK FAILURE error reported by USB Host controller UNEXPECTED PID error reported by USB Host controller DATA OVERRUN error reported by USB Host controller DATA UNDERRUN error reported by USB Host controller BUFFER OVERRUN error reported by USB Host controller BUFFER UNDERRUN error reported by USB Host controller NOT ACCESSED error reported by USB Host controller FIFO error reported by USB Host controller TRANSACTION (XACT) ERROR reported by USB Host controller BABBLE DETECTED error reported by USB Host controller DATA BUFFER ERROR reported by USB Host controller In the case of these errors, BurnInTest will re-attempt the operation. The user can set the Error reporting to be skipped for the initial recovery attempt. IMPROVEMENTS TO TESTING FACILITIES - Added a disk autoconfig, such that when tests are started, the disk drives and settings will be defaults to all disks (exc. CD/DVD). This may be useful when testing multiple systems with different hard disk drive letters. - Store the position of the Main window on exiting BurnInTest. On starting BurnInTest, position the main window as saved; on starting tests, position the test windows as saved. - Allow a "drag & drop" of the Configuration file directly on the BurnInTest program icon. - Allow testing 99.5% to 100% of disk, instead of 94%, for disks that do not contain the Windows directory and do not contain a swap file. - Added the ability to log interim results, which may be useful for unstable systems. - AMD and Intel Dual core reporting added. - New L2 CPU cache sizes added to reports. - CPU support for SSE3, DEP and PAE added to reports. - Shortcut of "F1" for contextual help added to all Windows. - Improve the flexibility in specifying the EXECUTEWAIT scripting command for sleeper. - Updated logging header information with the hard and optical drive model. - The 2D and 3D tests have been updated to use DirectX 9.0c. - User interface updated. - The HTML report format has been improved. - The BurnInTest configuration file extension has been renamed from .cfg to use .bitcfg, to ensure the configuration file is associated with BurnInTest. - An error message indicating that accumulated log files are not supported when run from CD or DVD has been added. - To allow smaller test files with very large disks, the minimum disk test file size has been reduced from 0.1% to 0.01% of the disk space. - Log events were previously shown as "INFORMATION" if they were low level errors, or simply additional information (not errors). "INFORMATION" now refers to a low level error, and "LOG NOTE" now refers to additional information (that is not in the error count). - Improved the specific detail of the Serial Port errors detected. BurnInTest now reports framing errors, buffer overrun errors, input buffer overflow errors, parity errors and Transmit buffer full errors as specific error messages (rather than a broader error description). - Added the /k command line so the user can specify not to delete HDD test files if an error occurs. - Increased Activity trace level 1 error logging for Serial port testing. - Increased Activity trace level 1 error logging for Hyper threading detection. - Bundled a new version of the Rebooter program. - Improved the Serial port error logging (displaying baud rate) and increased Activity trace level 1 error logging (displaying erroneous data). - Modified the Window sizes to help improve navigation on smaller displays (i.e. 640x480). - The CPU load for the Standard and Torture RAM tests has been made more linear with the duty cycle setting. Note: This means that compared to the previous build of BurnInTest, less RAM test operations will be run per second (when the duty cycle is less than 100). - Additional debug code and very minor changes in the Loopback sound test. - The Post test option of "Run external application and exit" has been modified such that if no external file is specified, this Post test option will just exit BurnInTest. - Allowed the full range of PassMark USB1 loopback plugs to be used with BurnInTest Professional. - Added additional Activity Trace level 2 logging. - The delay inserted between packets in the USB2 test, when the duty cycle is less than 50, has been changed from at least 1ms to at least 1ms to 50ms (for a Duty Cycle of 49 down to 0). - The subscript commands to configure BurnInTest from an external application (i.e. specified in the bit-script-input.txt file and run by specifying either a pre-test or EXECUTEWAIT application) has been changed to allow "LOAD" commands (in addition to "SET" scripting commands). - Renamed the "Error" log to "Event" log. - Changed the order of the items in an Event log line, such that the Severity is the first item. - The EXECUTEWAIT script command has been modified such that the external application may provide an input script file (of SET... commands) to be run after the EXECUTEWAIT application closes. This allows external applications to define test environment parameters (such as the serial number and machine type). - Added scripting commands: SETSERIAL "1234-shdfgdhs-GHGHG" SETMACHINETYPE "HP XPS800" SETNOTES "Test notes defined by the external application." SETLOG "\Program Files\Plugin\plugin_log" SETPLUGIN "\Program Files\Plugin\plugin.exe" - Added POST TEST application parameter substitution to allow values to be passed to an external application at the end of a test. These are: $RESULT - "PASS" or "FAIL" will be substituted. $SERIAL - The serial number will be substituted. $MACHINETYPE - The machine type will be substituted. $NOTES - The notes will be substituted. - Added extra logging for memory allocation errors in the disk test - Added "log bad sector increase" and "bad sector threshold" options to disk test. This resulted in a change to the configuration file format and required additional code to automatically convert from old formats. - Modified the user interface in the preferences window for the disk test and the CD test - Improved the handling of USB 2.0 loopback plugs recovery from sleep states. BUG CORRECTIONS - Corrected a bug where the System and Application events logged in the BurnInTest Trace logs were wrong if the event log had reached its maximum size. - Checks that the Sound test files (WAV and MIDI) exist have been added. - The continuous auto updating of the USB image (USB Loopback plug vs. USB 2.0 Loopback plug) on the main window has been removed. This is now updated on BIT startup, selecting Refresh in USB preferences or on starting a test. If there is a serious USB problem, this (together with the USB 2.0 Loopback device driver, V2.0.1002) will avoid the possibility of BurnInTest locking up. - Corrected a bug with the Butterfly seek mode of the Disk test. This was found to occur with FAT32 disks where the Cylinder size was relatively small and the Sector size relatively large. - Reset Defaults on the Configuration Page now resets the Auto Stop Value. - Reset Defaults on the Configuration Page now resets the color indicators. - The CD test has been modified to skip invalid files either with "?"'s , to avoid reporting errors that are due to the CD test media filenames. - The Network test results window scroll bar has been corrected. - The Memory torture test could fail on some systems with a small amount of RAM and relatively high memory fragmentation. This has been corrected. - Scripting correction for .cmd files. - Corrected a bug that caused problems when running the disk test with SMART monitoring turned on. This problem only occurs on a small number of HDD's. - Corrected memory leaks - On occasion, the measured waveform from the loopback sound test may have been slightly altered on starting or stopping all tests, possibly enough to trigger an error. This has been resolved. - If an error occurred in the final second of a test, the error may have been logged but not included in the big PASS/FAIL results window. This has been corrected. - After running a script file that loaded a configuration file, that had a full path specified, the Save and Load configuration menu options no longer worked. This has been corrected. - Previously, the Version of BurnInTest was only written in the First log file after starting BurnInTest. This log line is now written in all log files. - For USB2 tests that have read or write failures, the Windows error codes are now included in the level 2 Activity trace log. - Command line parameters may now be passed to a PreTest application. - Log files may now use a single static filename. This may be useful when the log file is to be parsed by an external program. - Corrected a bug where the Plugin test would stop prematurely. - Corrected the specification of the Scripting EXECUTEWAIT filename. - Changed Script processing such that a script is aborted if a scripting error is encountered and Stop on error is selected. - Added an indication on the main window that a script is currently running ("Script currently running"). - Corrected the serial port test to identify non-existing plugs when the Disable RTS/CTS and DSR/DTR testing has been selected. - Corrected the display of strange results (666666) reported by a user, related to copy protection. - Fixed a memory leak bug in the MBM interface which caused memory allocation errors. - Added BIT version number to the ASCII log file. - Fixed a bug with the 3D Test that was causing it to stop before the autostop timer period - Changed an error in the tape drive test to a warning if tape drive doesn't support setting drive parameters. History of earlier releases: Please see http://passmark.com/products/bit_history.htm Documentation ============= All the documentation is included in the help file. It can be accessed from the help menu. There is also a PDF format Users guide available for download from the PassMark web site. Support ======= For technical support, questions, suggestions, please check the help file for our email address or visit our web page at http://www.passmark.com Ordering / Registration ======================= All the details are in the help file documentation or you can visit our sales information page http://www.passmark.com/sales Compatibility issues with the Network & Parallel Port Tests =========================================================== If you are running Windows 2000 or XP, you need to have administrator privileges to run this test. Enjoy.. The PassMark Development team
全志R16平台的android6.0.1系统下的RTL8188EU的配置V1.0 2017/5/31 10:30 1、R:\wyb\rtl8188eu_r16m_20161208\android\device\softwinner\astar-evb30\overlay\frameworks\base\core\res\res\values\config.xml "wlan0" RTL8188EU没有BT,需要干掉BT的配置(不要显示): "bt-pan" 2、 R:\wyb\rtl8188eu_r16m_20161208\android\device\softwinner\astar-evb30\astar_evb30.mk PRODUCT_COPY_FILES += \ frameworks/native/data/etc/android.hardware.camera.xml:system/etc/permissions/android.hardware.camera.xml \ frameworks/native/data/etc/android.hardware.camera.front.xml:system/etc/permissions/android.hardware.camera.front.xml \ frameworks/native/data/etc/android.hardware.ethernet.xml:system/etc/permissions/android.hardware.ethernet.xml \ (干掉BT部分)frameworks/native/data/etc/android.hardware.bluetooth.xml:system/etc/permissions/android.hardware.bluetooth.xml 开启ADB,方便调试: PRODUCT_PROPERTY_OVERRIDES += \ persist.sys.usb.config=mtp \ ro.adb.secure=1 \ ro.sys.mutedrm=true \ rw.logger=0 修改为: PRODUCT_PROPERTY_OVERRIDES += \ persist.sys.usb.config=mass_storage,adb \ ro.adb.secure=0 \ ro.sys.mutedrm=true \ rw.logger=0 3、 R:\wyb\rtl8188eu_r16m_20161208\android\device\softwinner\astar-evb30\BoardConfig.mk # wifi and bt configuration # 1. Wifi Configuration # 1.1 realtek wifi support # 1.1 realtek wifi configuration # BOARD_USR_WIFI: rtl8188eu/rtl8723bs/rtl8723bs_vq0/rtl8723cs (打开realtek这个开关,并配置为rtl8188eu,默认为:rtl8723bs_vq0) BOARD_WIFI_VENDOR := realtek ifeq ($(BOARD_WIFI_VENDOR), realtek) WPA_SUPPLICANT_VERSION := VER_0_8_X BOARD_WPA_SUPPLICANT_DRIVER := NL80211 BOARD_WPA_SUPPLICANT_PRIVATE_LIB := lib_driver_cmd_rtl BOARD_HOSTAPD_DRIVER := NL80211 BOARD_HOSTAPD_PRIVATE_LIB := lib_driver_cmd_rtl #BOARD_USR_WIFI := rtl8723bs_vq0 BOARD_USR_WIFI := rtl8188eu BOARD_WLAN_DEVICE := rtl8188eu include hardware/realtek/wlan/config/config.mk endif # 1.2 broadcom wifi support (关闭) #BOARD_WIFI_VENDOR := broadcom ifeq ($(BOARD_WIFI_VENDOR), broadcom) BOARD_WPA_SUPPLICANT_DRIVER := NL80211 WPA_SUPPLICANT_VERSION := VER_0_8_X BOARD_WPA_SUPPLICANT_PRIVATE_LIB := lib_driver_cmd_bcmdhd BOARD_HOSTAPD_DRIVER := NL80211 BOARD_HOSTAPD_PRIVATE_LIB := lib_driver_cmd_bcmdhd BOARD_WLAN_DEVICE := bcmdhd WIFI_DRIVER_FW_PATH_PARAM := "/sys/module/bcmdhd/parameters/firmware_path" BOARD_USR_WIFI := ap6212 include hardware/broadcom/wlan/bcmdhd/firmware/$(BOARD_USR_WIFI)/device-bcm.mk endif (关闭) ## 2. Bluetooth Configuration ## make sure BOARD_HAVE_BLUETOOTH is true for every bt vendor #BOARD_HAVE_BLUETOOTH := true #BOARD_HAVE_BLUETOOTH_BCM := true #BOARD_HAVE_BLUETOOTH_NAME := ap6212 #BOARD_BLUETOOTH_BDROID_BUILDCFG_INCLUDE_DIR := device/softwinner/astar-evb30/bluetooth 4、 R:\wyb\rtl8188eu_r16m_20161208\android\device\softwinner\astar-evb30\init.sun8i.rc # network (关闭博通:AP6212,打开realtek) #insmod /system/vendor/modules/bcmdhd.ko #insmod /system/vendor/modules/bcm_btlpm.ko insmod /system/vendor/modules/8188eu.ko insmod /system/vendor/modules/usbnet.ko insmod /system/vendor/modules/asix.ko insmod /system/vendor/modules/qf9700.ko insmod /system/vendor/modules/mcs7830.ko insmod /system/vendor/modules/smsc95xx.ko insmod /system/vendor/modules/rtl8150.ko insmod /system/vendor/modules/cdc_ether.ko (关闭) ## bluetooth # # UART device # chmod 0660 /dev/ttyS1 # chown bluetooth net_bt_stack /dev/ttyS1 # # # power up/down interface # chmod 0660 /sys/class/rfkill/rfkill0/state # chmod 0660 /sys/class/rfkill/rfkill0/type # chown bluetooth net_bt_stack /sys/class/rfkill/rfkill0/state # chown bluetooth net_bt_stack /sys/class/rfkill/rfkill0/type # # # bluetooth MAC address programming # chown bluetooth net_bt_stack ro.bt.bdaddr_path # chown bluetooth net_bt_stack /system/etc/bluetooth # chown bluetooth net_bt_stack /data/misc/bluetooth # setprop ro.bt.bdaddr_path "/data/misc/bluetooth/bdaddr" # # # bluetooth LPM # chmod 0220 /proc/bluetooth/sleep/lpm # chmod 0220 /proc/bluetooth/sleep/btwrite # chown bluetooth net_bt_stack /proc/bluetooth/sleep/lpm # chown bluetooth net_bt_stack /proc/bluetooth/sleep/btwrite (关闭博通的部分:AP6212) ## broadcom wifi service ## 1 broadcom wifi sta service #service wpa_supplicant /system/bin/wpa_supplicant \ # -iwlan0 -Dnl80211 -c/data/misc/wifi/wpa_supplicant.conf \ # -I/system/etc/wifi/wpa_supplicant_overlay.conf \ # -O/data/misc/wifi/sockets \ # -e/data/misc/wifi/entropy.bin -g@android:wpa_wlan0 # # we will start as root and wpa_supplicant will switch to user wifi # # after setting up the capabilities required for WEXT # # user wifi # # group wifi inet keystore # class main # socket wpa_wlan0 dgram 660 wifi wifi # disabled # oneshot # ## 2 broadcom wifi sta p2p concurrent service #service p2p_supplicant /system/bin/wpa_supplicant \ # -iwlan0 -Dnl80211 -c/data/misc/wifi/wpa_supplicant.conf \ # -I/system/etc/wifi/wpa_supplicant_overlay.conf \ # -O/data/misc/wifi/sockets -N \ # -ip2p0 -Dnl80211 -c/data/misc/wifi/p2p_supplicant.conf \ # -I/system/etc/wifi/p2p_supplicant_overlay.conf \ # -puse_p2p_group_interface=1 -e/data/misc/wifi/entropy.bin \ # -g@android:wpa_wlan0 # # we will start as root and wpa_supplicant will switch to user wifi # # after setting up the capabilities required for WEXT # # user wifi # # group wifi inet keystore # class main # socket wpa_wlan0 dgram 660 wifi wifi # disabled # oneshot (增加rtl8188eu部分) # realtek wifi service service wpa_supplicant /system/bin/logwrapper /system/bin/wpa_supplicant \ -iwlan0 -Dnl80211 -c/data/misc/wifi/wpa_supplicant.conf \ -O/data/misc/wifi/sockets \ -e/data/misc/wifi/entropy.bin -g@android:wpa_wlan0 class main socket wpa_wlan0 dgram 660 wifi wifi disabled oneshot # 1.2 realtek wifi sta p2p concurrent service service p2p_supplicant /system/bin/logwrapper /system/bin/wpa_supplicant \ -ip2p0 -Dnl80211 -c/data/misc/wifi/p2p_supplicant.conf \ -e/data/misc/wifi/entropy.bin -N \ -iwlan0 -Dnl80211 -c/data/misc/wifi/wpa_supplicant.conf \ -O/data/misc/wifi/sockets \ -g@android:wpa_wlan0 class main socket wpa_wlan0 dgram 660 wifi wifi disabled oneshot 5、 R:\wyb\rtl8188eu_r16m_20161208\android\hardware\realtek\bluetooth\firmware\rtlbtfw_cfg.mk $(LOCAL_PATH)/rtl8703b_config:system/etc/firmware/rtl8703bs_config (关闭realtek的BT,否则会编译出错:) #$(TOP_DIR)device/softwinner/$(basename $(TARGET_DEVICE))/bluetooth/rtkbt.conf:system/etc/bluetooth/rtkbt.conf \ make: *** 没有规则可以创建“out/target/product/astar-evb30/system/etc/bluetooth/rtkbt.conf”需要的目标“device/softwinner/astar-evb30/bluetooth/rtkbt.conf”。 停止。 Export includes file: external/sqlite/dist/Android.mk -- out/target/product/astar-evb30/obj/EXECUTABLES/sqlite3_intermediates/export_includes Notice file: external/sqlite/dist/NOTICE -- out/target/product/astar-evb30/obj/NOTICE_FILES/src//system/xbin/sqlite3.txt Import includes file: out/target/product/astar-evb30/obj/EXECUTABLES/strace_intermediates/import_includes Export includes file: external/strace/Android.mk -- out/target/product/astar-evb30/obj/EXECUTABLES/strace_intermediates/export_includes Import includes file: out/target/product/astar-evb30/obj/EXECUTABLES/su_intermediates/import_includes Export includes file: system/extras/su/Android.mk -- out/target/product/astar-evb30/obj/EXECUTABLES/su_intermediates/export_includes Notice file: system/extras/su/NOTICE -- out/target/product/astar-evb30/obj/NOTICE_FILES/src//system/xbin/su.txt Import includes file: out/target/product/astar-evb30/obj/EXECUTABLES/taskstats_intermediates/import_includes Export includes file: system/extras/taskstats/Android.mk -- out/target/product/astar-evb30/obj/EXECUTABLES/taskstats_intermediates/export_includes Notice file: system/extras/taskstats/NOTICE -- out/target/product/astar-evb30/obj/NOTICE_FILES/src//system/xbin/taskstats.txt Import includes file: out/target/product/astar-evb30/obj/EXECUTABLES/tcpdump_intermediates/import_includes Export includes file: external/tcpdump/Android.mk -- out/target/product/astar-evb30/obj/EXECUTABLES/tcpdump_intermediates/export_includes Import includes file: out/target/product/astar-evb30/obj/EXECUTABLES/timeinfo_intermediates/import_includes Export includes file: system/extras/timeinfo/Android.mk -- out/target/product/astar-evb30/obj/EXECUTABLES/timeinfo_intermediates/export_includes Notice file: system/extras/timeinfo/NOTICE -- out/target/product/astar-evb30/obj/NOTICE_FILES/src//system/xbin/timeinfo.txt make: *** 没有规则可以创建“out/target/product/astar-evb30/system/etc/bluetooth/rtkbt.conf”需要的目标“device/softwinner/astar-evb30/bluetooth/rtkbt.conf”。 停止。 make: *** 正在等待未完成的任务.... 12585 unique nodes, 42861 total 注: 某些输入文件使用或覆盖了已过时的 API。 注: 有关详细信息, 请使用 -Xlint:deprecation 重新编译。 注: 某些输入文件使用了未经检查或不安全的操作。 注: 有关详细信息, 请使用 -Xlint:unchecked 重新编译。 12585 unique nodes, 42861 total 21515 unique nodes, 102669 total #### make failed to build some targets (01:21 (mm:ss)) #### rootroot@cm-System-Product-Name:/home/rediron/r16m/rtl8188eu_r16m_20161208/android$ grep rtkbt.conf . -R Z:\home\rediron\r16m\rtl8188eu_r16m_20161208\android\hardware\realtek\bluetooth\firmware\rtlbtfw_cfg.mk 6、 R:\wyb\rtl8188eu_r16m_20161208\lichee\tools\pack\chips\sun8iw5p1\configs\evb-30\sys_config.fex (关闭BT) ;-------------------------------------------------------------------------------- ;bluetooth configuration ;bt_used: 0- no used, 1- used ;bt_uard_id: 0- uart0, 1- uart1, 2- uart2 ;bt_rst_n: bt function enable io ;bt_wake: host wake-up bluetooth device ;bt_wak_host: bt device wake-up host ;bt_host_wake_invert: whether bt_host_wake use inverter between ap and module ; 0: not used, 1: used ;-------------------------------------------------------------------------------- [bt_para] bt_used = 0 bt_uart_id = 1 bt_rst_n = port:PL08<1><0> bt_wake = port:PL10<1><0> bt_host_wake = port:PL09<4><0> bt_host_wake_invert = 0 7、配置USB1(接RTL8188EU) rootroot@cm-System-Product-Name:/home/rediron/r16m/rtl8188eu_r16m_20161208$ rootroot@cm-System-Product-Name:/home/rediron/r16m/rtl8188eu_r16m_20161208$ cd lichee/ rootroot@cm-System-Product-Name:/home/rediron/r16m/rtl8188eu_r16m_20161208/lichee$ cd linux-3.4/ rootroot@cm-System-Product-Name:/home/rediron/r16m/rtl8188eu_r16m_20161208/lichee/linux-3.4$ rootroot@cm-System-Product-Name:/home/rediron/r16m/rtl8188eu_r16m_20161208/lichee/linux-3.4$ make ARCH=arm menuconfig Device Drivers ---> [*] USB support ---> <*> SoftWinner SUNXI USB Host Controller support <*> SoftWinner SUNXI USB Host Controller0 <*> SoftWinner SUNXI USB HCI <*> SoftWinner SUNXI USB EHCI0 < > SoftWinner SUNXI USB EHCI1 修改为: <*> SoftWinner SUNXI USB EHCI1 <*> SoftWinner SUNXI USB OHCI0 < > SoftWinner SUNXI USB OHCI1 修改为: <*> SoftWinner SUNXI USB OHCI1 < > SoftWinner SUNXI USB EHCI2 < > SoftWinner SUNXI USB OHCI2 < > SoftWinner SUNXI USB EHCI3 < > SoftWinner SUNXI USB OHCI3 < > SoftWinner SUNXI USB HSIC 不加这里内核报错,但是不影响上网! shell@astar-evb30:/ $ shell@astar-evb30:/ $ [ 30.993687] hci: ERR: not support sunxi_usb_enable_ehci [ 30.999650] hci: ERR: not support sunxi_usb_enable_ohci shell@astar-evb30:/ $ shell@astar-evb30:/ $
调通sina33m下的ap6181版本 大文实验室/大文哥 壹捌陆捌零陆捌捌陆捌贰 wb4916 AT qq.com 完成时间:2017/7/7 18:11 版本:V1.0 SDK:Android6.0.1 开发板:SC3817R 1、关闭“设置”中的“蓝牙”选项: R:\wyb\ap6181_sina33m_sc3817r\android\device\softwinner\astar-d7\overlay\frameworks\base\core\res\res\values\config.xml (干掉这里:) "bt-pan" 2、打开WIFI,关闭BT: R:\wyb\ap6181_sina33m_sc3817r\android\device\softwinner\astar-d7\astar_d7.mk PRODUCT_PACKAGES += Launcher3 PRODUCT_PACKAGES += \ ESFileExplorer \ VideoPlayer #Bluetooth PRODUCT_COPY_FILES += \ frameworks/native/data/etc/android.hardware.camera.xml:system/etc/permissions/android.hardware.camera.xml \ frameworks/native/data/etc/android.hardware.camera.front.xml:system/etc/permissions/android.hardware.camera.front.xml \ frameworks/native/data/etc/android.hardware.ethernet.xml:system/etc/permissions/android.hardware.ethernet.xml \ frameworks/native/data/etc/android.hardware.wifi.xml:system/etc/permissions/android.hardware.wifi.xml \ frameworks/native/data/etc/android.hardware.wifi.direct.xml:system/etc/permissions/android.hardware.wifi.direct.xml #frameworks/native/data/etc/android.hardware.bluetooth.xml:system/etc/permissions/android.hardware.bluetooth.xml \ #frameworks/native/data/etc/android.hardware.bluetooth_le.xml:system/etc/permissions/android.hardware.bluetooth_le.xml #PRODUCT_COPY_FILES += \ # device/softwinner/astar-d7/bluetooth/bt_vendor.conf:system/etc/bluetooth/bt_vendor.conf # bootanimation PRODUCT_COPY_FILES += \ device/softwinner/astar-d7/media/bootanimation.zip:system/media/bootanimation.zip # camera config for camera detector #PRODUCT_COPY_FILES += \ # device/softwinner/astar-d7/hawkview/sensor_list_cfg.ini:system/etc/hawkview/sensor_list_cfg.ini # Realtek wifi efuse map #PRODUCT_COPY_FILES += \ #device/softwinner/astar-d7/wifi_efuse_8723bs-vq0.map:system/etc/wifi/wifi_efuse_8723bs-vq0.map PRODUCT_PROPERTY_OVERRIDES += \ persist.sys.usb.config=mass_storage,adb \ ro.adb.secure=0 \ ro.sys.mutedrm=true \ rw.logger=0 #$(call inherit-product-if-exists, vendor/google/products/gms_base.mk) #for 8723bs-vq0,should setmacaddr #PRODUCT_PACKAGES += setmacaddr #for 8723bs-vq0,should setbtmacaddr #PRODUCT_PACKAGES += setbtmacaddr 3、修改WIFI为AP6181: R:\wyb\ap6181_sina33m_sc3817r\android\device\softwinner\astar-d7\BoardConfig.mk # 1.2 broadcom wifi support # BOARD_USR_WIFI:ap6181/ap6210/ap6212/ap6330/ap6335 BOARD_WIFI_VENDOR := broadcom ifeq ($(BOARD_WIFI_VENDOR), broadcom) BOARD_WPA_SUPPLICANT_DRIVER := NL80211 WPA_SUPPLICANT_VERSION := VER_0_8_X BOARD_WPA_SUPPLICANT_PRIVATE_LIB := lib_driver_cmd_bcmdhd BOARD_HOSTAPD_DRIVER := NL80211 BOARD_HOSTAPD_PRIVATE_LIB := lib_driver_cmd_bcmdhd BOARD_WLAN_DEVICE := bcmdhd WIFI_DRIVER_FW_PATH_PARAM := "/sys/module/bcmdhd/parameters/firmware_path" BOARD_USR_WIFI := ap6181 include hardware/broadcom/wlan/bcmdhd/firmware/$(BOARD_USR_WIFI)/device-bcm.mk endif # 2. Bluetooth Configuration # make sure BOARD_HAVE_BLUETOOTH is true for every bt vendor # BOARD_HAVE_BLUETOOTH_NAME:rtl8723bs/rtl8723bs_vq0/rtl8723cs/ap6210/ap6212/ap6330/ap6335/ #BOARD_HAVE_BLUETOOTH := true # #BOARD_HAVE_BLUETOOTH_BCM := true #BOARD_HAVE_BLUETOOTH_NAME := ap6212 #BOARD_HAVE_BLUETOOTH_RTK_COEX := true #BOARD_HAVE_BLUETOOTH_RTK := true #BLUETOOTH_HCI_USE_RTK_H5 := true #BOARD_BLUETOOTH_BDROID_BUILDCFG_INCLUDE_DIR := device/softwinner/astar-d7/bluetooth 4、关闭BT: R:\wyb\ap6181_sina33m_sc3817r\android\device\softwinner\astar-d7\init.sun8i.rc # tp & sensors init_dev_detect # network insmod /system/vendor/modules/bcmdhd.ko #insmod /system/vendor/modules/bcm_btlpm.ko insmod /system/vendor/modules/usbnet.ko insmod /system/vendor/modules/asix.ko insmod /system/vendor/modules/qf9700.ko #insmod /system/vendor/modules/mcs7830.ko #insmod /system/vendor/modules/smsc95xx.ko insmod /system/vendor/modules/rtl8152.ko #insmod /system/vendor/modules/cdc_ether.ko # GPS # chmod 777 /system/bin/glgps # chown root system /system/bin/glgps # chmod 777 /system/lib/hw/gps.default.so # chown root system /system/lib/hw/gps.default.so # mkdir /data/gps # chmod 770 /data/gps # chown system net_bt_stack /data/gps # to observe dnsmasq.leases file for dhcp information of soft ap. chown dhcp system /data/misc/dhcp on post-fs-data mkdir /data/media 0770 media_rw media_rw # bluetooth MAC address programming #chown bluetooth net_bt_stack ro.bt.bdaddr_path #chown bluetooth net_bt_stack /system/etc/bluetooth #chown bluetooth net_bt_stack /data/misc/bluetooth #setprop ro.bt.bdaddr_path "/data/misc/bluetooth/bdaddr" # Set indication (checked by vold) that we have finished this action setprop vold.post_fs_data_done 1 # to force to start sdcard # class_start late_start # This module write data to /data should insmod in post-fs-data # due to encryption on boot chown system system /sys/devices/system/cpu/cpu0/cpufreq/scaling_governor chmod 0660 /sys/devices/system/cpu/cpu0/cpufreq/scaling_governor chown system system /sys/kernel/autohotplug/enable chmod 0660 /sys/kernel/autohotplug/enable chown system system /sys/devices/system/cpu/cpu0/cpufreq/boot_lock chmod 0660 /sys/devices/system/cpu/cpu0/cpufreq/boot_lock chown system system /sys/devices/platform/sunxi-budget-cooling/roomage chmod 0660 /sys/devices/platform/sunxi-budget-cooling/roomage chown system system /sys/class/devfreq/sunxi-ddrfreq/dsm/scene chmod 0660 /sys/class/devfreq/sunxi-ddrfreq/dsm/scene on charger insmod disp.ko insmod lcd.ko class_start charger write /sys/module/printk/parameters/console_suspend N write /proc/sys/kernel/printk 0 on fs # UDISK would be mounted as data partition when multiple user enabled. #format_userdata /dev/block/by-name/UDISK ASTAR #bluesleep #insmod /system/vendor/modules/rtl_bluesleep.ko ## bluetooth ## UART device #chmod 0660 /dev/ttyS1 #chown bluetooth net_bt_stack /dev/ttyS1 # ## power up/down interface #chmod 0660 /sys/class/rfkill/rfkill0/state #chmod 0660 /sys/class/rfkill/rfkill0/type #chown bluetooth net_bt_stack /sys/class/rfkill/rfkill0/state #chown bluetooth net_bt_stack /sys/class/rfkill/rfkill0/type # # ## bluetooth LPM #chmod 0220 /proc/bluetooth/sleep/lpm #chmod 0220 /proc/bluetooth/sleep/btwrite #chown bluetooth net_bt_stack /proc/bluetooth/sleep/lpm #chown bluetooth net_bt_stack /proc/bluetooth/sleep/btwrite #write /proc/bluetooth/sleep/lpm 1 5、可选: R:\wyb\ap6181_sina33m_sc3817r\android\device\softwinner\astar-d7\ueventd.sun8i.rc #/dev/video1 0777 media media /dev/snd/pcmC0D0c 0777 media media /dev/snd/pcmC0D0p 0777 media media #/dev/ttyS1 0660 bluetooth bluetooth 6、可选: R:\wyb\ap6181_sina33m_sc3817r\android\frameworks\base\packages\SettingsProvider\res\values\defaults.xml 1800000 true 7、请严重注意,全志在这里埋坑了!(坑爹无敌!) Android里面调入配置文件:nvram.txt,里面里面调入:nvram_ap6181.txt。 R:\wyb\ap6181_sina33m_sc3817r\android\hardware\broadcom\wlan\bcmdhd\firmware\ap6181\config.txt R:\wyb\ap6181_sina33m_sc3817r\android\hardware\broadcom\wlan\bcmdhd\firmware\ap6181\device-bcm.mk # # Copyright (C) 2008 The Android Open Source Project # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # -include hardware/broadcom/wlan/bcmdhd/config/config-bcm.mk WIFI_DRIVER_FW_PATH_STA := "/system/vendor/modules/fw_bcm40181a2.bin" WIFI_DRIVER_FW_PATH_P2P := "/system/vendor/modules/fw_bcm40181a2_p2p.bin" WIFI_DRIVER_FW_PATH_AP := "/system/vendor/modules/fw_bcm40181a2_apsta.bin" PRODUCT_COPY_FILES += \ hardware/broadcom/wlan/bcmdhd/firmware/ap6181/fw_bcm40181a2_p2p.bin:system/vendor/modules/fw_bcm40181a2_p2p.bin \ hardware/broadcom/wlan/bcmdhd/firmware/ap6181/fw_bcm40181a2_apsta.bin:system/vendor/modules/fw_bcm40181a2_apsta.bin \ hardware/broadcom/wlan/bcmdhd/firmware/ap6181/fw_bcm40181a2.bin:system/vendor/modules/fw_bcm40181a2.bin \ hardware/broadcom/wlan/bcmdhd/firmware/ap6181/nvram_ap6181.txt:system/vendor/modules/nvram_ap6181.txt \ hardware/broadcom/wlan/bcmdhd/firmware/ap6181/config.txt:system/vendor/modules/config.txt R:\wyb\ap6181_sina33m_sc3817r\android\hardware\broadcom\wlan\bcmdhd\firmware\ap6181\fw_bcm40181a2.bin R:\wyb\ap6181_sina33m_sc3817r\android\hardware\broadcom\wlan\bcmdhd\firmware\ap6181\fw_bcm40181a2_apsta.bin R:\wyb\ap6181_sina33m_sc3817r\android\hardware\broadcom\wlan\bcmdhd\firmware\ap6181\fw_bcm40181a2_p2p.bin R:\wyb\ap6181_sina33m_sc3817r\android\hardware\broadcom\wlan\bcmdhd\firmware\ap6181\nvram_ap6181.txt 8、可选: R:\wyb\ap6181_sina33m_sc3817r\android\packages\apps\Camera2\src\com\android\camera\CameraActivity.java 9、可选: R:\wyb\ap6181_sina33m_sc3817r\lichee\linux-3.4\arch\arm\mach-sunxi\rf\bt_pm.c static int rfkill_set_power(void *data, bool blocked) { unsigned int mod_sel = wifi_pm_get_mod_type(); RF_MSG("rfkill set power %d\n", blocked); switch (mod_sel) { case 2: /* ap6210 */ if (!blocked) { wifi_pm_gpio_ctrl("ap6xxx_bt_regon", 1); } else { wifi_pm_gpio_ctrl("ap6xxx_bt_regon", 0); } break; case 4: /* realtek rtl8723au */ if (!blocked) { wifi_pm_gpio_ctrl("rtl8723au_bt", 1); } else { wifi_pm_gpio_ctrl("rtl8723au_bt", 0); } break; case 5: /* realtek rtl8723bs */ if (!blocked) { wifi_pm_gpio_ctrl("rtl8723bs_bt_regon", 1); } else { wifi_pm_gpio_ctrl("rtl8723bs_bt_regon", 0); } break; case 7: /* ap6476 */ if (!blocked) { wifi_pm_gpio_ctrl("ap6xxx_bt_regon", 1); } else { wifi_pm_gpio_ctrl("ap6xxx_bt_regon", 0); } break; case 9: /* ap6212 */ if (!blocked) { wifi_pm_gpio_ctrl("ap6xxx_bt_regon", 1); } else { wifi_pm_gpio_ctrl("ap6xxx_bt_regon", 0); } break; default: RF_MSG("no bt module matched !!\n"); } msleep(10); return 0; } 10、可选: R:\wyb\ap6181_sina33m_sc3817r\lichee\linux-3.4\arch\arm\mach-sunxi\rf\wifi_pm.c struct wifi_pm_ops wifi_select_pm_ops; static char* wifi_mod[] = {" ", "ap6181", /* 1 - AP6181*/ "ap6210", /* 2 - AP6210*/ "rtl8188eu", /* 3 - RTL8188EU*/ "rtl8723au", /* 4 - RTL8723AU*/ "rtl8723bs", /* 5 - RTL8723BS*/ "esp8089", /* 6 - ESP8089*/ "ap6476", /* 7 - AP6476*/ "rtl8189es", /* 8 - rtl8189es*/ "ap6212", /* 9 - AP6212*/ "ap6330", /* 10- AP6330*/ "gb9663", /* 11- GB9663*/ }; static int __devinit wifi_pm_probe(struct platform_device *pdev) { struct wifi_pm_ops *ops = &wifi_select_pm_ops; switch (ops->module_sel.val) { case 1: /* AP6181 */ ap6xxx_gpio_init(); break; case 2: /* AP6210 */ ap6xxx_gpio_init(); break; case 3: /* RTL8188EU */ rtl8188eu_gpio_init(); break; case 4: /* RTL8723AU */ rtl8723au_gpio_init(); break; case 5: /* RTL8723BS */ rtl8723bs_gpio_init(); break; case 6: /* ESP8089 */ esp8089_gpio_init(); break; case 7: /* AP6476 */ ap6xxx_gpio_init(); break; case 8: /* rtl8189es */ rtl8189es_gpio_init(); break; case 9: /* AP6212 */ ap6xxx_gpio_init(); break; default: wifi_pm_msg("wrong sdio module select %d !\n", ops->module_sel.val); } awwifi_procfs_attach(); wifi_pm_msg("wifi gpio init is OK !!\n"); return 0; } 11、可选: R:\wyb\ap6181_sina33m_sc3817r\lichee\linux-3.4\drivers\net\wireless\bcmdhd\include\bcmdevs.h #define BCM4350_CHIP_ID 0x4350 #define BCM43430_CHIP_ID 43430 /* 43430 chipcommon chipid 0xa9a6 */ #define BCM4342_CHIP_ID 4342 R:\wyb\ap6181_sina33m_sc3817r\lichee\linux-3.4\drivers\net\wireless\bcmdhd\dhd_common.c void dhd_common_init(osl_t *osh) { int select_type = 0; //aw checkout which wifi had select //select_type = wifi_pm_get_mod_type(); select_type = 1; #ifdef CONFIG_BCMDHD_FW_PATH //select ap6181 or ap6210 or ap6476 if (select_type == 1 || select_type == 2 || select_type == 7) { bcm_strncpy_s(fw_path, sizeof(fw_path), "/system/vendor/modules/fw_bcm40181a2.bin", MOD_PARAM_PATHLEN-1); } #else /* CONFIG_BCMDHD_FW_PATH */ fw_path[0] = '\0'; #endif /* CONFIG_BCMDHD_FW_PATH */ #ifdef CONFIG_BCMDHD_NVRAM_PATH switch (select_type) { //ap6181 case 1: bcm_strncpy_s(nv_path, sizeof(nv_path), "/system/vendor/modules/nvram_ap6181.txt", MOD_PARAM_PATHLEN-1); break; //ap6210 case 2: bcm_strncpy_s(nv_path, sizeof(nv_path), "/system/vendor/modules/nvram_ap6210.txt", MOD_PARAM_PATHLEN-1); break; //ap6476 case 7: bcm_strncpy_s(nv_path, sizeof(nv_path), "/system/vendor/modules/nvram_ap6476.txt", MOD_PARAM_PATHLEN-1); break; //ap6212 case 9: bcm_strncpy_s(nv_path, sizeof(nv_path), "/system/vendor/modules/nvram.txt", MOD_PARAM_PATHLEN-1); break; default: break; } #else /* CONFIG_BCMDHD_NVRAM_PATH */ nv_path[0] = '\0'; #endif /* CONFIG_BCMDHD_NVRAM_PATH */ #ifdef CONFIG_BCMDHD_CONFIG_PATH bcm_strncpy_s(conf_path, sizeof(conf_path), "/system/vendor/modules/config.txt", MOD_PARAM_PATHLEN-1); #else /* CONFIG_BCMDHD_CONFIG_PATH */ conf_path[0] = '\0'; #endif /* CONFIG_BCMDHD_CONFIG_PATH */ #ifdef SOFTAP fw_path2[0] = '\0'; #endif } R:\wyb\ap6181_sina33m_sc3817r\lichee\linux-3.4\drivers\net\wireless\bcmdhd\dhd_linux.c int dhd_bus_start(dhd_pub_t *dhdp) { int ret = -1; dhd_info_t *dhd = (dhd_info_t*)dhdp->info; unsigned long flags; ASSERT(dhd); DHD_TRACE(("Enter %s:\n", __FUNCTION__)); #ifdef DHDTHREAD if (dhd->threads_only) dhd_os_sdlock(dhdp); #endif /* DHDTHREAD */ /* try to download image and nvram to the dongle */ if ((dhd->pub.busstate == DHD_BUS_DOWN) && (fw_path[0] != '\0') && (nv_path[0] != '\0')) { #ifdef SHOW_NVRAM_TYPE { /* Show nvram type in the kernel log */ int i; for (i = 0; nv_path[i] != '\0'; ++i) { if (nv_path[i] == '.') { ++i; break; } } DHD_ERROR(("%s: nvram_type = [%s]\n", __FUNCTION__, &nv_path[i])); } #endif /* SHOW_NVRAM_TYPE */ /* wake lock moved to dhdsdio_download_firmware */ if (!(dhd_bus_download_firmware(dhd->pub.bus, dhd->pub.osh, fw_path, nv_path, conf_path))) { DHD_ERROR(("%s: dhdsdio_probe_download failed. firmware = %s nvram = %s config = %s\n", __FUNCTION__, fw_path, nv_path, conf_path)); #ifdef DHDTHREAD if (dhd->threads_only) dhd_os_sdunlock(dhdp); #endif /* DHDTHREAD */ // 2017/6/23 18:40 wenyuanbo download ap6212 fail not return error!!!! //return -1; } } if (dhd->pub.busstate != DHD_BUS_LOAD) { #ifdef DHDTHREAD if (dhd->threads_only) dhd_os_sdunlock(dhdp); #endif /* DHDTHREAD */ return -ENETDOWN; } /* Start the watchdog timer */ dhd->pub.tickcnt = 0; dhd_os_wd_timer(&dhd->pub, dhd_watchdog_ms); /* Bring up the bus */ if ((ret = dhd_bus_init(&dhd->pub, FALSE)) != 0) { DHD_ERROR(("%s, dhd_bus_init failed %d\n", __FUNCTION__, ret)); #ifdef DHDTHREAD if (dhd->threads_only) dhd_os_sdunlock(dhdp); #endif /* DHDTHREAD */ return ret; } bcmsdh_set_drvdata(dhdp); // terence 20130427: fix for null pointer issue #if defined(OOB_INTR_ONLY) /* Host registration for OOB interrupt */ if (bcmsdh_register_oob_intr(dhdp)) { /* deactivate timer and wait for the handler to finish */ flags = dhd_os_spin_lock(&dhd->pub); dhd->wd_timer_valid = FALSE; dhd_os_spin_unlock(&dhd->pub, flags); del_timer_sync(&dhd->timer); DHD_ERROR(("%s Host failed to register for OOB\n", __FUNCTION__)); #ifdef DHDTHREAD if (dhd->threads_only) dhd_os_sdunlock(dhdp); #endif /* DHDTHREAD */ DHD_OS_WD_WAKE_UNLOCK(&dhd->pub); return -ENODEV; } /* Enable oob at firmware */ dhd_enable_oob_intr(dhd->pub.bus, TRUE); #endif /* If bus is not ready, can't come up */ if (dhd->pub.busstate != DHD_BUS_DATA) { flags = dhd_os_spin_lock(&dhd->pub); dhd->wd_timer_valid = FALSE; dhd_os_spin_unlock(&dhd->pub, flags); del_timer_sync(&dhd->timer); DHD_ERROR(("%s failed bus is not ready\n", __FUNCTION__)); #ifdef DHDTHREAD if (dhd->threads_only) dhd_os_sdunlock(dhdp); #endif /* DHDTHREAD */ DHD_OS_WD_WAKE_UNLOCK(&dhd->pub); return -ENODEV; } #ifdef DHDTHREAD if (dhd->threads_only) dhd_os_sdunlock(dhdp); #endif /* DHDTHREAD */ dhd_process_cid_mac(dhdp, TRUE); /* Bus is ready, do any protocol initialization */ if ((ret = dhd_prot_init(&dhd->pub)) < 0) return ret; dhd_process_cid_mac(dhdp, FALSE); #ifdef ARP_OFFLOAD_SUPPORT if (dhd->pend_ipaddr) { #ifdef AOE_IP_ALIAS_SUPPORT aoe_update_host_ipv4_table(&dhd->pub, dhd->pend_ipaddr, TRUE, 0); #endif /* AOE_IP_ALIAS_SUPPORT */ dhd->pend_ipaddr = 0; } #endif /* ARP_OFFLOAD_SUPPORT */ return 0; } R:\wyb\ap6181_sina33m_sc3817r\lichee\linux-3.4\drivers\net\wireless\bcmdhd\dhd_sdio.c static bool dhdsdio_chipmatch(uint16 chipid) { if (chipid == BCM4325_CHIP_ID) return TRUE; if (chipid == BCM4329_CHIP_ID) return TRUE; if (chipid == BCM4315_CHIP_ID) return TRUE; if (chipid == BCM4319_CHIP_ID) return TRUE; if (chipid == BCM4336_CHIP_ID) return TRUE; if (chipid == BCM4330_CHIP_ID) return TRUE; if (chipid == BCM43237_CHIP_ID) return TRUE; if (chipid == BCM43362_CHIP_ID) return TRUE; if (chipid == BCM4314_CHIP_ID) return TRUE; if (chipid == BCM43242_CHIP_ID) return TRUE; if (chipid == BCM43340_CHIP_ID) return TRUE; if (chipid == BCM43341_CHIP_ID) return TRUE; if (chipid == BCM43143_CHIP_ID) return TRUE; if (chipid == BCM43342_CHIP_ID) return TRUE; if (chipid == BCM4334_CHIP_ID) return TRUE; if (chipid == BCM43239_CHIP_ID) return TRUE; if (chipid == BCM4324_CHIP_ID) return TRUE; if (chipid == BCM4335_CHIP_ID) return TRUE; if (chipid == BCM4339_CHIP_ID) return TRUE; if (chipid == BCM4350_CHIP_ID) return TRUE; if (chipid == BCM43430_CHIP_ID) return TRUE; return FALSE; } R:\wyb\ap6181_sina33m_sc3817r\lichee\tools\pack\chips\sun8iw5p1\configs\d7\sys_config.fex [power_sply] dcdc1_vol = 3000 dcdc2_vol = 1100 dcdc3_vol = 1200 dcdc4_vol = 0 dcdc5_vol = 1500 aldo1_vol = 3300 aldo2_vol = 2500 aldo3_vol = 3000 dldo1_vol = 3300 dldo2_vol = 3300 dldo3_vol = 2800 ;gpio0_vol = 2800 ldoio0_vol = 2800 [jtag_para] jtag_enable = 0 ;***************************************************************************** ;sdram configuration ; ;***************************************************************************** [dram_para] dram_clk = 552 [wakeup_src_para] cpu_en = 0 cpu_freq = 48 ; (cpu:apb:ahb) pll_ratio = 0x111 dram_selfresh_en= 1 dram_freq = 36 wakeup_src_wl = port:PL07<4><0> ;wakeup_src_bt = port:PL09<4><0> ;bb_wake_ap = port:PL02<4><0> [uart0] uart_used = 1 uart_port = 0 uart_type = 2 uart_tx = port:PF02<3><1> uart_rx = port:PF04<3><1> ;---------------------------------------------------------------------------------- ;capacitor tp configuration ;ctp_twi_id : twi controller ID ;ctp_twi_addr : I2C slave address, 7bit ;ctp_screen_max_x/_y : resolution of touch panel ;ctp_revert_x/_y_flag : whether need to revert x/y ;ctp_exchange_x_y_flag: whether need to exchange the value of x and y ;ctp_int_port : port for tp's interrupt signal ;ctp_wakeup : port for wakeup tp ;---------------------------------------------------------------------------------- [ctp_para] ctp_used = 1 ctp_name = "gt82x" ctp_twi_id = 0 ctp_twi_addr = 0x5d ctp_screen_max_x = 1280 ctp_screen_max_y = 800 ctp_revert_x_flag = 1 ctp_revert_y_flag = 1 ctp_exchange_x_y_flag = 1 ctp_int_port = port:PL04<4> ctp_wakeup = port:PL03<1><1> ctp_power_ldo = ctp_power_ldo_vol = ctp_power_io = ;-------------------------------------------------------------------------------- ; CTP automatic detection configuration ;ctp_detect_used --- Whether startup automatic inspection function. 1:used,0:unused ;Module name postposition 1 said detection, 0 means no detection. ;-------------------------------------------------------------------------------- [ctp_list_para] ctp_det_used = 1 ft5x_ts = 1 gt82x = 1 gslX680 = 1 gslX680new = 0 gt9xx_ts = 1 gt9xxf_ts = 0 tu_ts = 0 gt818_ts = 1 zet622x = 1 aw5306_ts = 1 icn83xx_ts = 0 [motor_para] motor_used = 0 ;---------------------------------------------------------------------------------- ;lcd0 configuration ;lcd_if: 0:hv(sync+de); 1:8080; 2:ttl; 3:lvds; 4:dsi; 5:edp; 6:extend dsi ;lcd_x: lcd horizontal resolution ;lcd_y: lcd vertical resolution ;lcd_width: width of lcd in mm ;lcd_height: height of lcd in mm ;lcd_dclk_freq: in MHZ unit ;lcd_pwm_freq: in HZ unit ;lcd_pwm_pol: lcd backlight PWM polarity ;lcd_pwm_max_limit lcd backlight PWM max limit(<=255) ;lcd_hbp: hsync back porch ;lcd_ht: hsync total cycle ;lcd_vbp: vsync back porch ;lcd_vt: vysnc total cycle ;lcd_hspw: hsync plus width ;lcd_vspw: vysnc plus width ;lcd_lvds_if: 0:single link; 1:dual link ;lcd_lvds_colordepth: 0:8bit; 1:6bit ;lcd_lvds_mode: 0:NS mode; 1:JEIDA mode ;lcd_frm: 0:disable; 1:enable rgb666 dither; 2:enable rgb656 dither ;lcd_io_phase: 0:noraml; 1:intert phase(0~3bit: vsync phase; 4~7bit:hsync phase; ; 8~11bit:dclk phase; 12~15bit:de phase) ;lcd_gamma_en lcd gamma correction enable ;lcd_bright_curve_en lcd bright curve correction enable ;lcd_cmap_en lcd color map function enable ;deu_mode 0:smoll lcd screen; 1:large lcd screen(larger than 10inch) ;lcdgamma4iep: Smart Backlight parameter, lcd gamma vale * 10; ; decrease it while lcd is not bright enough; increase while lcd is too bright ;smart_color 90:normal lcd screen 65:retina lcd screen(9.7inch) ;---------------------------------------------------------------------------------- [lcd0_para] lcd_used = 1 lcd_driver_name = "default_lcd" lcd_if = 3 lcd_x = 1280 lcd_y = 800 lcd_width = 150 lcd_height = 94 lcd_dclk_freq = 71 lcd_pwm_used = 1 lcd_pwm_ch = 0 lcd_pwm_freq = 50000 lcd_pwm_pol = 1 lcd_hbp = 20 lcd_ht = 1418 lcd_hspw = 10 lcd_vbp = 10 lcd_vt = 830 lcd_vspw = 5 lcd_lvds_if = 0 lcd_lvds_colordepth = 1 lcd_lvds_mode = 0 lcd_frm = 1 lcd_gamma_en = 0 lcd_bright_curve_en = 0 lcd_cmap_en = 0 deu_mode = 0 lcdgamma4iep = 22 smart_color = 90 lcd_bl_en = port:PD13<1><0><1> ;ap6xxx_wl_regon = port:PL06<1><0> ;lcd_bl_en = port:PL06<1><0><1> lcd_power = "axp22_dc1sw" lcdd0 = port:PD18<3><0> lcdd1 = port:PD19<3><0> lcdd2 = port:PD20<3><0> lcdd3 = port:PD21<3><0> lcdd4 = port:PD22<3><0> lcdd5 = port:PD23<3><0> lcdd6 = port:PD24<3><0> lcdd7 = port:PD25<3><0> lcdd8 = port:PD26<3><0> lcdd9 = port:PD27<3><0> ;---------------------------------------------------------------------------------- ;pwm config ;---------------------------------------------------------------------------------- [pwm0_para] pwm_used = 0 pwm_positive = port:PH00<2><0> [pwm1_para] pwm_used = 1 pwm_positive = port:PH01<2><0> [usbc0] usb_used = 1 usb_port_type = 2 usb_detect_type = 1 usb_id_gpio = port:PD10<0><1> usb_det_vbus_gpio = "axp_ctrl" usb_drv_vbus_gpio = port:power4<1><0><0> usb_restrict_gpio = usb_host_init_state = 0 usb_restric_flag = 0 usb_restric_voltage = 3550000 usb_restric_capacity= 5 usb_regulator_io = "nocare" usb_regulator_vol = 0 usb_regulator_id_vbus = "axp22_dcdc1" usb_regulator_id_vbus_vol = 3000000 [usbc1] usb_used = 1 usb_drv_vbus_gpio = port:PD12<1><0><0> usb_restrict_gpio = usb_host_init_state = 1 usb_restric_flag = 0 usb_regulator_io = "nocare" usb_regulator_vol = 0 usb_not_suspend = 0 ;-------------------------------------------------------------------------------- ;wifi/bt/fm/gps/nfc modules configuration ;module_num: ; 0- none ; 1- ap6181(wifi) ; 2- ap6210(wifi+bt) ; 3- rtl8188eu(wifi) ; 4- rtl8723au(wifi+bt) ; 5- rtl8723bs(wifi+bt) ; 6- esp8089(wifi) ; 7- ap6476(wifi+bt+fm+gps) ; 8- rtl8189es(wifi) ; 9- ap6212(wifi+bt+fm) ; 10- ap6330(wifi+bt+fm) ; 11- gb9663(wifi+bt+fm) ;module_power1: ""- bat, "axp_dldo1"- axp dldo1 ;module_power1_vol: power1 voltage, mv; not used for module_power1 is "" ;module_power2: ""- bat, "axp_dldo2"- axp dldo2 ;module_power2_vol: power2 voltage, mv; not used for module_power2 is "" ;module_power3: ""- bat, "axp_dldo2"- axp dldo2 ;module_power3_vol: power3 voltage, mv; not used for module_power3 is "" ;power_switch: module power switch io when bat supply ;chip_en: enable chip io ;lpo_use_apclk: ""- not use, "losc_out"- a23/33, "ac10032k1"、"ac10032k2"、"ac10032k3"- a80/a83 ;-------------------------------------------------------------------------------- [rf_para] module_num = 1 module_power1 = "axp22_aldo1" module_power1_vol = 3000000 module_power2 = "" module_power2_vol = 3000000 module_power3 = "" module_power3_vol = 3000000 power_switch = chip_en = lpo_use_apclk = "losc_out" ;-------------------------------------------------------------------------------- ;wifi configuration ;wifi_used: 0-not use, 1- use ;wifi_sdc_id: 0- SDC0, 1- SDC1, 2- SDC2, 3- SDC3 ;wifi_usbc_id: 0- USB0, 1- USB1, 2- USB2 ;wifi_usbc_type: 1- EHCI(speed 2.0), 2- OHCI(speed 1.0) ;wl_reg_on: wifi function enable io ;wl_host_wake: wifi device wake-up host ;wl_host_wake_invert: whether wl_host_wake use inverter between ap and module ; 0: not used, 1: used ;-------------------------------------------------------------------------------- [wifi_para] wifi_used = 1 wifi_sdc_id = 1 wifi_usbc_id = 1 wifi_usbc_type = 1 wifi_mod_sel = 1 wifi_power = "" wifi_power_ext1 = "" wifi_power_ext2 = "" ; 1 - ap6181 sdio wifi gpio config ;ap6xxx_wl_regon = port:PL06<1><0> ;ap6xxx_wl_host_wake = port:PL07<4><0> ;ap6xxx_lpo_use_apclk = 1 ; 2 - ap6210 sdio wifi gpio config ap6xxx_wl_regon = port:PL06<1><0> ap6xxx_wl_host_wake = port:PL07<4><0> ;ap6xxx_bt_regon = port:PL08<1><0> ;ap6xxx_bt_wake = port:PL10<1><0> ;ap6xxx_bt_host_wake = port:PL09<4><0> ap6xxx_lpo_use_apclk = 1 ; 3 - rtl8188eu usb wifi gpio conifg ; 4 - rtl8723au usb wifi + bt ; 5 - rtl8723bs sdio wifi + bt ;rtl8723bs_chip_en = port:PL11<1><0> ;rtl8723bs_wl_regon = port:PL06<1><0> ;rtl8723bs_wl_host_wake = port:PL07<4><0> ;rtl8723bs_bt_regon = port:PL08<1><0> ;rtl8723bs_bt_wake = port:PL10<1><0> ;rtl8723bs_bt_host_wake = port:PL09<4><0> ;rtl8723bs_lpo_use_apclk = 0 ; 6 - eagle sdio wifi ;esp_wl_chip_en = port:PL03<1><0> ;esp_wl_rst = port:PL02<1><0> ; 7 - ap6476 sdio wifi gpio config ;ap6xxx_wl_regon = port:PL06<1><0> ;ap6xxx_wl_host_wake = port:PL07<4><0> ;ap6xxx_bt_regon = port:PL08<1><0> ;ap6xxx_bt_wake = port:PL10<1><0> ;ap6xxx_bt_host_wake = port:PL09<4><0> ;ap6xxx_lpo_use_apclk = 1 ; 8 - rtl8189es sdio wifi gpio conifg ;rtl8189es_shdn = port:PL06<1><0> ;rtl8189es_host_wake = port:PL07<4><0> usb_vbus_power_ctrl = port:PL11<1><1> usb_eth_power_ctrl = port:PL04<1><1> ;-------------------------------------------------------------------------------- ;bluetooth configuration ;bt_used: 0- no used, 1- used ;bt_uard_id: 0- uart0, 1- uart1, 2- uart2 ;bt_rst_n: bt function enable io ;bt_wake: host wake-up bluetooth device ;bt_wak_host: bt device wake-up host ;bt_wake_invert: whether bt_wake use inverter between ap and module ; 0: not used, 1: used ;bt_host_wake_invert: whether bt_host_wake use inverter between ap and module ; 0: not used, 1: used ;-------------------------------------------------------------------------------- [bt_para] bt_used = 0 bt_uart_id = 1 bt_rst_n = port:PL08<1><0> bt_wake = port:PL10<1><0> bt_host_wake = port:PL09<4><0> bt_wake_invert = 0 bt_host_wake_invert = 0 ls_int = port:PB07<1><0> pcm_ch = port:PB05<1><0> [gy_list_para] gy_det_used = 0 [ls_list_para] ls_det_used = 0 power_start = 3 pmu_temp_enable = 0

19,502

社区成员

发帖
与我相关
我的任务
社区描述
硬件/嵌入开发 嵌入开发(WinCE)
社区管理员
  • 嵌入开发(WinCE)社区
加入社区
  • 近7日
  • 近30日
  • 至今
社区公告
暂无公告

试试用AI创作助手写篇文章吧