Config.in 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. config BR2_PACKAGE_SYSTEMD_BOOTCHART_ARCH_SUPPORTS
  2. bool
  3. # see src/architecture.h
  4. default y if BR2_aarch64 || BR2_aarch64_be
  5. default y if BR2_arm || BR2_armeb
  6. default y if BR2_i386 || BR2_x86_64
  7. default y if BR2_m68k
  8. default y if BR2_mips || BR2_mipsel || BR2_mips64 || BR2_mips64el
  9. default y if BR2_powerpc || BR2_powerpc64 || BR2_powerpc64le
  10. default y if BR2_sh
  11. default y if BR2_sparc || BR2_sparc64
  12. config BR2_PACKAGE_SYSTEMD_BOOTCHART
  13. bool "systemd-bootchart"
  14. depends on BR2_PACKAGE_SYSTEMD_BOOTCHART_ARCH_SUPPORTS
  15. depends on BR2_INIT_SYSTEMD
  16. depends on BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_17
  17. help
  18. systemd-bootchart is a tool, usually run at system startup,
  19. that collects the CPU load, disk load, memory usage, as well
  20. as per-process information from a running system. Collected
  21. results are output as an SVG graph.
  22. systemd-bootchart requires a Linux kernel >= 3.0 with the
  23. following options enabled:
  24. - CONFIG_SCHEDSTATS
  25. - CONFIG_SCHED_DEBUG
  26. These options will be automatically enabled by Buildroot if
  27. it is responsible for building the kernel. Otherwise, if you
  28. are building your kernel outside of Buildroot, make sure
  29. these options are enabled.
  30. http://www.freedesktop.org/software/systemd/man/systemd-bootchart.html
  31. comment "systemd-bootchart needs a toolchain w/ headers >= 3.17"
  32. depends on BR2_PACKAGE_SYSTEMD_BOOTCHART_ARCH_SUPPORTS
  33. depends on BR2_INIT_SYSTEMD
  34. depends on !BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_17