Hello,
How i can enable USB 2.0 ports that are pins in the board?


https://wiki.friendlyarm.com/wiki/index ... EO3#Layout

https://www.armbian.com/nanopineo3/

Tried armbian-config, I do not see such on ports list. If I need to build kernel myself will be glad to get instructions how to do it. I get basic tutorial but without specific lines I need to edit.

apt-get update

apt-get upgrade -yqq

apt-get install -yqq u-boot-tools build-essential git libncurses5-dev libssl-dev bison flex bc rsync

apt-mark hold boot* linux*

git clone --quiet --depth 1 --branch linux-5.10.y https://git.kernel.org/pub/scm/linux/ke ... /linux.git

Before the make step you may need to apply a patch as the 3 is not mainline, only the 4;

arch/arm64/boot/dts/rockchip/rk3399-nanopi-neo4.dts

cd linux

make defconfig

make -j "$(nproc)"

make modules_install

O="0x1080000"

mkimage -A arm64 -O linux -T kernel -C none -a $O -e $O -n "$(make kernelrelease)" -d arch/arm64/boot/Image uImage

Then copy the file and dts to the right place