2022-10-20 16:14:12 +02:00
|
|
|
config BR2_PACKAGE_KMEMD
|
|
|
|
bool "kmemd"
|
|
|
|
depends on BR2_TOOLCHAIN_HAS_SYNC_4 # libbpf
|
|
|
|
depends on BR2_USE_WCHAR # libbpf
|
|
|
|
depends on !BR2_STATIC_LIBS # libbpf
|
|
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS # libbpf
|
2022-10-30 13:53:58 +01:00
|
|
|
depends on BR2_TOOLCHAIN_HEADERS_AT_LEAST_5_14
|
2022-10-20 16:14:12 +02:00
|
|
|
select BR2_PACKAGE_LIBBPF
|
|
|
|
help
|
|
|
|
Explore a live Linux kernel's memory using GDB
|
|
|
|
|
|
|
|
https://github.com/wkz/kmemd
|
|
|
|
|
2023-10-22 17:41:33 +02:00
|
|
|
comment "kmemd needs a toolchain w/ wchar, dynamic library, threads, headers >= 5.14"
|
2022-10-20 16:14:12 +02:00
|
|
|
depends on BR2_TOOLCHAIN_HAS_SYNC_4
|
|
|
|
depends on !BR2_USE_WCHAR || BR2_STATIC_LIBS \
|
|
|
|
|| !BR2_TOOLCHAIN_HAS_THREADS \
|
2023-10-22 17:41:33 +02:00
|
|
|
|| !BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_13
|