Config.in 1.1 KB

1234567891011121314151617181920212223242526272829303132333435
  1. comment "powerpc-utils tools needs a toolchain w/ dynamic library"
  2. depends on BR2_powerpc || BR2_powerpc64 || BR2_powerpc64le
  3. depends on BR2_STATIC_LIBS
  4. depends on BR2_USE_MMU
  5. depends on BR2_TOOLCHAIN_HAS_ATOMIC
  6. config BR2_PACKAGE_POWERPC_UTILS
  7. bool "powerpc-utils"
  8. depends on !BR2_STATIC_LIBS # dlfcn.h
  9. depends on BR2_powerpc || BR2_powerpc64 || BR2_powerpc64le
  10. depends on BR2_USE_MMU # numactl
  11. depends on BR2_TOOLCHAIN_HAS_ATOMIC # numactl
  12. select BR2_PACKAGE_ZLIB
  13. select BR2_PACKAGE_NUMACTL
  14. help
  15. System utilities for PowerPC machines.
  16. https://github.com/ibm-power-utilities/powerpc-utils.git
  17. if BR2_PACKAGE_POWERPC_UTILS
  18. config BR2_PACKAGE_POWERPC_UTILS_RTAS
  19. bool "RTAS support"
  20. select BR2_PACKAGE_LIBRTAS
  21. help
  22. Enable support for functions that require RTAS.
  23. This adds a dependency on librtas and provides the following
  24. additional features at the cost of increasing the installed
  25. package size from about 0.5MB to about 2MB:
  26. ppc64_cpu --run-mode, uesensor, set_poweron_time, drmgr,
  27. lsslot, activate_firmware, rtas_ibm_get_vpd, serv_config,
  28. rtas_event_decode, sys_ident.
  29. endif