Config.in 1018 B

123456789101112131415161718192021222324252627282930313233
  1. comment "opkg needs a toolchain w/ wchar"
  2. depends on BR2_USE_MMU
  3. depends on !BR2_USE_WCHAR
  4. config BR2_PACKAGE_OPKG
  5. bool "opkg"
  6. depends on BR2_USE_MMU # fork()
  7. depends on BR2_USE_WCHAR # libarchive
  8. select BR2_PACKAGE_LIBARCHIVE
  9. help
  10. Opkg is a lightweight package management system, based on
  11. ipkg. It is written in C and resembles apt/dpkg in
  12. operation. It is intended for use on embedded Linux devices.
  13. Opkg is maintained, stable, robust and conservative in its
  14. memory usage, despite its buggy ipkg ancestry. As best it
  15. can, opkg maintains backwards compatibility with ipkg and
  16. conforms to a subset of debian's policy manual regarding
  17. control files.
  18. https://code.google.com/archive/p/opkg/
  19. if BR2_PACKAGE_OPKG
  20. config BR2_PACKAGE_OPKG_GPG_SIGN
  21. bool "gnupg support"
  22. depends on BR2_PACKAGE_LIBGPG_ERROR_ARCH_SUPPORTS # libgpg-error
  23. select BR2_PACKAGE_LIBGPGME
  24. select BR2_PACKAGE_LIBGPG_ERROR
  25. help
  26. Enable opkg package signature checking support using
  27. gnupg/libgpgme.
  28. endif