1config BR2_PACKAGE_PYTHON_GREENLET_ARCH_SUPPORTS 2 bool 3 default y if BR2_arm || BR2_armeb 4 default y if BR2_aarch64 5 default y if BR2_csky 6 default y if BR2_m68k 7 default y if BR2_mips || BR2_mipsel || BR2_mips64 || BR2_mips64el 8 default y if BR2_powerpc || BR2_powerpc64 || BR2_powerpc64le 9 default y if BR2_riscv 10 default y if BR2_sparc || BR2_sparc64 11 default y if BR2_i386 || BR2_x86_64 12 13config BR2_PACKAGE_PYTHON_GREENLET 14 bool "python-greenlet" 15 depends on BR2_PACKAGE_PYTHON_GREENLET_ARCH_SUPPORTS 16 help 17 Lightweight in-process concurrent programming. 18 19 https://github.com/python-greenlet/greenlet 20