1*4882a593Smuzhiyunconfig BR2_PACKAGE_OPKG_UTILS 2*4882a593Smuzhiyun bool "opkg-utils" 3*4882a593Smuzhiyun depends on !BR2_nios2 || BR2_PACKAGE_BUSYBOX # binutils 4*4882a593Smuzhiyun depends on BR2_USE_MMU # bash, python3 5*4882a593Smuzhiyun depends on BR2_USE_WCHAR # python3 6*4882a593Smuzhiyun depends on BR2_TOOLCHAIN_HAS_THREADS # python3 <- libffi 7*4882a593Smuzhiyun depends on !BR2_STATIC_LIBS # python3 8*4882a593Smuzhiyun depends on !BR2_PACKAGE_PYTHON # python3 9*4882a593Smuzhiyun select BR2_PACKAGE_BINUTILS if !BR2_PACKAGE_BUSYBOX # runtime 10*4882a593Smuzhiyun select BR2_PACKAGE_BINUTILS_TARGET if !BR2_PACKAGE_BUSYBOX # runtime 11*4882a593Smuzhiyun select BR2_PACKAGE_COREUTILS if !BR2_PACKAGE_BUSYBOX # runtime 12*4882a593Smuzhiyun select BR2_PACKAGE_DIFFUTILS if !BR2_PACKAGE_BUSYBOX # runtime 13*4882a593Smuzhiyun select BR2_PACKAGE_FINDUTILS if !BR2_PACKAGE_BUSYBOX # runtime 14*4882a593Smuzhiyun select BR2_PACKAGE_GREP if !BR2_PACKAGE_BUSYBOX # runtime 15*4882a593Smuzhiyun select BR2_PACKAGE_GZIP if !BR2_PACKAGE_BUSYBOX # runtime 16*4882a593Smuzhiyun select BR2_PACKAGE_SED if !BR2_PACKAGE_BUSYBOX # runtime 17*4882a593Smuzhiyun select BR2_PACKAGE_TAR if !BR2_PACKAGE_BUSYBOX # runtime 18*4882a593Smuzhiyun select BR2_PACKAGE_BUSYBOX_SHOW_OTHERS # bash 19*4882a593Smuzhiyun select BR2_PACKAGE_BASH # runtime 20*4882a593Smuzhiyun select BR2_PACKAGE_PYTHON3 # runtime 21*4882a593Smuzhiyun help 22*4882a593Smuzhiyun Helper scripts for use with the opkg package manager. 23*4882a593Smuzhiyun 24*4882a593Smuzhiyun https://git.yoctoproject.org/cgit/cgit.cgi/opkg-utils/ 25*4882a593Smuzhiyun 26*4882a593Smuzhiyuncomment "opkg-utils needs a toolchain w/ wchar, threads, dynamic library" 27*4882a593Smuzhiyun depends on !BR2_nios2 || BR2_PACKAGE_BUSYBOX 28*4882a593Smuzhiyun depends on BR2_USE_MMU 29*4882a593Smuzhiyun depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS || BR2_STATIC_LIBS 30*4882a593Smuzhiyun 31*4882a593Smuzhiyuncomment "opkg-utils needs python3" 32*4882a593Smuzhiyun depends on !BR2_nios2 || BR2_PACKAGE_BUSYBOX 33*4882a593Smuzhiyun depends on BR2_USE_MMU 34*4882a593Smuzhiyun depends on BR2_PACKAGE_PYTHON 35