카메라의 Wi-Fi를 제대로 켜는 방법을 모르겠습니다. 이것은 ANAKA 3918 SoC 및 ssv6x5x Wi-Fi 칩을 기반으로 제작된 저렴한 중국 카메라입니다.
Wi-Fi 드라이버 모듈을 로드할 수 있고 드라이버가 인스턴스화되었지만 시작하려는 시도가 실패합니다.
echo 1 > /sys/user-gpio/wifi_en #Enable WiFi device
lsmod #show mods status
# Tainted: G
# ak_info_dump 1227 0 - Live 0xbf019000
# akcamera 14136 2 ak_info_dump, Live 0xbf011000
# sensor_H63 4066 0 - Live 0xbf00d000 (O)
# sensor_h62 3136 0 - Live 0xbf009000
# sensor_gc1054 4313 0 - Live 0xbf004000 (O)
# sensor_gc1034 3813 0 - Live 0xbf000000
Ifconfig #show network devices status
# Lo Link encap:Local Loopback
# inet addr:127.0.0.1 Mask:255.0.0.0
# UP LOOPBACK RUNNING MTU:16436 Metric:1
# RX packets:0 errors:0 dropped:0 overruns:0 frame:0
# TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
# collisions:0 txqueuelen:0
# RX bytes:0 (0.0 B) TX bytes:0 (0.0 B)
insmod /usr/modeules/ssv6x5x.ko #insert wifi driver
lsmod #show mods status, note ss6x5x driver loaded
# Tainted: G
# ssv6x5x 414810 0 - Live 0xbf01d000 (O)
# ak_info_dump 1227 0 - Live 0xbf019000
# akcamera 14136 2 ak_info_dump, Live 0xbf011000
# sensor_H63 4066 0 - Live 0xbf00d000 (O)
# sensor_h62 3136 0 - Live 0xbf009000
# sensor_gc1054 4313 0 - Live 0xbf004000 (O)
# sensor_gc1034 3813 0 - Live 0xbf000000
Ifconfig #show network devices status
#note: nothing about wlan
# lo Link encap:Local Loopback
# inet addr:127.0.0.1 Mask:255.0.0.0
# UP LOOPBACK RUNNING MTU:16436 Metric:1
# RX packets:0 errors:0 dropped:0 overruns:0 frame:0
# TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
# collisions:0 txqueuelen:0
# RX bytes:0 (0.0 B) TX bytes:0 (0.0 B)
Ifconfig wlan0 up #gives error ifconfig: SIOCSIFFLAGS: Operation not permitted
/var/log/messages에서 오류 메시지를 찾을 수 없으며 insmod 등의 오류도 없습니다. 임베디드 Linux를 사용하고 있기 때문에 문제 해결이 매우 제한적입니다. 또 무엇을 해야 할지 제안해 주실 수 있나요?