openFyde / overlay-rock5b-openfyde

openFyde supported hardware RADXA Rock5 Model B build artefacts and pre-built image releases.
BSD 3-Clause "New" or "Revised" License
34 stars 3 forks source link

Support for AX210 Module #10

Closed DarkevilPT closed 1 year ago

DarkevilPT commented 1 year ago

A8 Module Bluetooth: sudo su nano /etc/modprobe.d/blacklist.conf then add these lines somewhere (at the bottom of the file is fine):

blacklist pgdrv
blacklist btusb
blacklist btrtl
blacklist btbcm
blacklist btintel

Then press Ctrl+X, then Y. sudo apt install bluez or bluetooth -- not needed to install since latest armbian version systemctl status bluetooth CTRL+ C systemctl start bluetooth Then reboot .

For AX210 Wifi to Work - Not sure if we can activate this without internet at all.

sudo apt install flex bison
git clone https://github.com/intel/backport-iwlwifi.git
cd backport-iwlwifi
ls
cd iwlwifi-stack-dev

sudo make defconfig-iwlwifi-public
sudo make
sudo make install

git clone git://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git
cd linux-firmware/
sudo cp iwlwifi-* /lib/firmware/

Source: http://t.csdn.cn/lqIgn

Just leaving here the needed info in case yous want to add it to openFyde (this is obviously the way in Armbian Ubuntu etc..) needs to be adapted to openFyde gentoos etc.

DarkevilPT commented 1 year ago
#wifi
sudo wget -P /lib/firmware https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/plain/iwlwifi-ty-a0-gf-a0-59.ucode
sudo mv /lib/firmware/iwlwifi-ty-a0-gf-a0.pnvm /lib/firmware/iwlwifi-ty-a0-gf-a0.pnvm.bak

#bt
sudo wget -P /lib/firmware/intel https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/plain/intel/ibt-0041-0041.sfi
sudo wget -P /lib/firmware/intel https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/plain/intel/ibt-0041-0041.ddc

Damen if it helps this is what we use for AX210 on armbian.