-
Posts
8 -
Joined
-
Last visited
Reputation Activity
-
wizetek got a reaction from KD5RKO in USB WiFi adapters that are supported out of the box
I'd take a look inside /usr/lib/modules/5.10.110-rockchip-rk3588/kernel/drivers/net/wireless and base my purchasing decision on that; something based on Atheros (old), Ralink (old), Zydas (old), Realtek, or MediaTek (my personal preference).
To name a few available modules:
ath10k (Atheros)
ath11k
mt7601u (MediaTek)
mt76x0u (x=0,1,2...)
mt76x2u
mt7663u
rt2500 (Ralink)
rt2800
rt2x00
rt73
rtl8187 (Realtek)
rtl8192cu
rtl8xxxu
zd1201 (Zydas)
Useful link: https://teamgloomy.github.io/armbian_wifi.html
-
wizetek reacted to Nodon in Orange Pi 5 Support
I finally managed to boot from SPI + NVME (without SD card) but only with original image. I basically followed guide in manual and instead of flashing original I tried to flash Armbian image, but it won't boot at all and hangs on red diod only.
Summary of what I did (may help someone):
Create bootable SD card with original OrangePi image downloaded from here Copy image file to SD card you created, ideally to your home folder. Boot it on your OrangePi Install gdisk `sudo apt install gdisk` USe it to delete whole NVME storage `sudo gdisk /dev/nvme0n1` then delete all partitions using `d` command and write changes by `w`. (should no be necessary) Clear nvme storage just to be sure `sudo dd bs=1M if=/dev/zero of=/dev/nvme0n1 count=2000 status=progress` Flash image to NVME storage using command `sudo dd bs=1M if=Orangepi5_x.x.x_debian_bullseye_desktop_xfce_linux5.10.110.img of=/dev/nvme0n1 status=progress` Install bootloader to SPI flash `sudo nand-sata-install` and select option 7 Turn off and remove SD card Turn on and it should boot from SPI + NVME I tried to replace image in step 7. with Armbian image `Armbian_23.02.0-trunk.0112_Orangepi5_jammy_legacy_5.10.110_minimal.img` but it did not booted then.