3
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

I-O Data WN-AC433UK

Last updated at Posted at 2015-07-07

802.11ac 対応 wifi USB ドングル。Linuxで使うためのメモ。

mt7650u_staで動くという情報もあるけれど、mt7610u_staじゃないかなー。

本家ralinkでも配ってるけど、パッチ済みのもの を使うのが手っ取り早い。MakefileCHIPSET = mt7610u になっているので、そのまま make, make install でよい。ちなみに linux-headers が必要。

あらかじめ USB を登録しておくと、刺しただけで認識してくれる。

diff --git a/common/rtusb_dev_id.c b/common/rtusb_dev_id.c
index 61012e7..d894dc0 100644
--- a/common/rtusb_dev_id.c
+++ b/common/rtusb_dev_id.c
@@ -40,6 +40,7 @@ USB_DEVICE_ID rtusb_dev_id[] = {
        {USB_DEVICE(0x13B1,0x003E)}, /* MT7610U */
     {USB_DEVICE(0x0E8D,0x7610)}, /* Sabrent NTWLAC */
     {USB_DEVICE(0x7392,0xa711)}, /* edimax 7711mac */
+       {USB_DEVICE(0x04BB,0x0951)},
        {USB_DEVICE_AND_INTERFACE_INFO(0x0E8D, 0x7630, 0xff, 0x2, 0xff)}, /* MT7630U */
        {USB_DEVICE_AND_INTERFACE_INFO(0x0E8D, 0x7650, 0xff, 0x2, 0xff)}, /* MT7650U */
 #endif

これをしない場合は、次のようにすれば良さそう?

loadmod mt7610u_sta
echo 04bb 0951 > /sys/bus/usb/drivers/rt2870/new_id

あと VMWare では host -> USB のファームウェア転送が上手くいかないみたいで、動作しなかった。実機だと大丈夫。

3
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?