1config BR2_PACKAGE_RKNPU2 2 bool "rknpu2" 3 help 4 "rknpu runtime lib and server" 5 6config BR2_PACKAGE_RKNPU2_ARCH 7 string 8 depends on BR2_ARCH = "arm" || BR2_ARCH = "aarch64" 9 default "armhf" if BR2_ARCH="arm" 10 default BR2_ARCH 11 12config BR2_PACKAGE_RKNPU2_SOC 13 string 14 depends on BR2_PACKAGE_RK3566_RK3568 || BR2_PACKAGE_RK3562 || \ 15 BR2_PACKAGE_RK3588 16 default "RK3588" if BR2_PACKAGE_RK3588 17 default "RK356X" 18 19if BR2_PACKAGE_RKNPU2 20 21config BR2_PACKAGE_RKNPU2_EXAMPLE 22 bool "rknpu2 example" 23 default y 24 25endif 26