기존에 Jetson nano나 라즈베리에서 바로 인식하여 사용했던 wifi 동글이 M1에서는 바로 인식이 안되는군요.
모델은 아이피타임의 N150UA 하고 그냥 굴러다니는 손톱만한 동글 모두 써봐도 안되네요.
혹시 별도로 드라이버를 설치해야하나요?
어떤 파일을 설치해야하는지 알 수 있을까요?
M1이 지원하는 wifi 모듈? 동글?
- tobetter
- Posts: 10043
- Joined: Mon Feb 25, 2013 10:55 am
- languages_spoken: Korean, English
- ODROIDs: Many
- Location: Paju, South Korea
- Has thanked: 640 times
- Been thanked: 1714 times
- Contact:
-
- Posts: 39
- Joined: Tue Jun 14, 2022 1:11 pm
- languages_spoken: Korean
- ODROIDs: M1
- Has thanked: 5 times
- Been thanked: 6 times
- Contact:
Re: M1이 지원하는 wifi 모듈? 동글?
아래와 같이 뜹니다.
Bus 008 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
Bus 007 Device 002: ID 148f:7601 Ralink Technology, Corp. MT7601U Wireless Adapter
Bus 007 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 006 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
Bus 005 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 004 Device 002: ID 045e:0800 Microsoft Corp. Microsoft® Nano Transceiver v2.0
Bus 004 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 002 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 003 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 008 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
Bus 007 Device 002: ID 148f:7601 Ralink Technology, Corp. MT7601U Wireless Adapter
Bus 007 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 006 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
Bus 005 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 004 Device 002: ID 045e:0800 Microsoft Corp. Microsoft® Nano Transceiver v2.0
Bus 004 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 002 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 003 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
-
- Posts: 39
- Joined: Tue Jun 14, 2022 1:11 pm
- languages_spoken: Korean
- ODROIDs: M1
- Has thanked: 5 times
- Been thanked: 6 times
- Contact:
Re: M1이 지원하는 wifi 모듈? 동글?
다음과 같이 mt7601u 드라이버를 설치하려고 시도했습니다.
설치는 된것으로 보입니다.
하지만 재부팅 후에도 ifconfig에서 wifi 모듈이 뜨지 않습니다.
Code: Select all
$ git clone https://github.com/jeremyb31/mt7601u.git
$ cd mt7601u/
$ sudo dkms add .
Creating symlink /var/lib/dkms/mt7601u/1.0/source ->
/usr/src/mt7601u-1.0
DKMS: add completed.
$ sudo dkms install mt7601u/1.0
Kernel preparation unnecessary for this kernel. Skipping...
Building module:
cleaning build area...
'make' all KVER=4.19.219-odroid-arm64..................
cleaning build area...
DKMS: build completed.
mt7601u.ko:
Running module version sanity check.
- Original module
- No original module exists within this kernel
- Installation
- Installing to /lib/modules/4.19.219-odroid-arm64/updates/dkms/
depmod...
Backing up initrd.img-4.19.219-odroid-arm64 to /boot/initrd.img-4.19.219-odroid-arm64.old-dkms
Making new initrd.img-4.19.219-odroid-arm64
(If next boot fails, revert to initrd.img-4.19.219-odroid-arm64.old-dkms image)
update-initramfs.........
DKMS: install completed.
하지만 재부팅 후에도 ifconfig에서 wifi 모듈이 뜨지 않습니다.
-
- Posts: 39
- Joined: Tue Jun 14, 2022 1:11 pm
- languages_spoken: Korean
- ODROIDs: M1
- Has thanked: 5 times
- Been thanked: 6 times
- Contact:
Re: M1이 지원하는 wifi 모듈? 동글?
dmesg 로 검색 결과 다음과 같은 오류가 뜨네요
Code: Select all
$ dmesg | grep mt76
[ 9.128223] mt7601u: loading out-of-tree module taints kernel.
[ 9.397105] mt7601u 7-1:1.0: ASIC revision: 76010001 MAC revision: 76010500
[ 9.397983] mt7601u 7-1:1.0: Direct firmware load for mt7601u.bin failed with error -2
[ 9.398434] mt7601u: probe of 7-1:1.0 failed with error -2
[ 9.398529] usbcore: registered new interface driver mt7601u
- odroid
- Site Admin
- Posts: 39251
- Joined: Fri Feb 22, 2013 11:14 pm
- languages_spoken: English, Korean
- ODROIDs: ODROID
- Has thanked: 2568 times
- Been thanked: 1407 times
- Contact:
Re: M1이 지원하는 wifi 모듈? 동글?
MT7601U 칩셋용 펌웨어 파일을 못찾은듯 합니다.
아래 명령어 실행 후 다시 시도해 보시길 바랍니다.
아래 명령어 실행 후 다시 시도해 보시길 바랍니다.
sudo apt install --reinstall linux-firmware
-
- Posts: 39
- Joined: Tue Jun 14, 2022 1:11 pm
- languages_spoken: Korean
- ODROIDs: M1
- Has thanked: 5 times
- Been thanked: 6 times
- Contact:
Who is online
Users browsing this forum: No registered users and 0 guests