ceb51d1463
Fix the following build failure raise since bump to version 8.2.2 in commitd761968255
and9d8c196268
: os_dep.c: In function 'block_unmap_inner': os_dep.c:2668:17: warning: implicit declaration of function 'madvise'; did you mean 'raise'? [-Wimplicit-function-declaration] 2668 | if (madvise(start_addr, len, MADV_DONTNEED) == -1) | ^~~~~~~ | raise Fixes: - http://autobuild.buildroot.org/results/2b9924cb8c36a75e1ca7aefe83e95dc11c10ded6 Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
31 lines
1.3 KiB
Plaintext
31 lines
1.3 KiB
Plaintext
config BR2_PACKAGE_POKE
|
|
bool "poke"
|
|
depends on BR2_PACKAGE_LIBATOMIC_OPS_ARCH_SUPPORTS # bdwgc
|
|
depends on BR2_USE_WCHAR # needs wctomb
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS_NPTL
|
|
depends on BR2_USE_MMU # bdwgc
|
|
select BR2_PACKAGE_BUSYBOX_SHOW_OTHERS # less
|
|
select BR2_PACKAGE_BDWGC
|
|
select BR2_PACKAGE_LESS # runtime
|
|
select BR2_PACKAGE_READLINE
|
|
help
|
|
GNU poke is a new interactive editor for binary data. Not
|
|
limited to editing basic entities such as bits and bytes,
|
|
it provides a full-fledged procedural, interactive
|
|
programming language designed to describe data structures
|
|
and to operate on them. Once a user has defined a structure
|
|
for binary data (usually matching some file format) she can
|
|
search, inspect, create, shuffle and modify abstract entities
|
|
such as ELF relocations, MP3 tags, DWARF expressions,
|
|
partition table entries, and so on, with primitives
|
|
resembling simple editing of bits and bytes. The program
|
|
comes with a library of already written descriptions (or
|
|
"pickles" in poke parlance) for many binary formats.
|
|
|
|
https://www.gnu.org/software/poke/
|
|
|
|
comment "poke needs a toolchain w/ NPTL, wchar"
|
|
depends on BR2_PACKAGE_LIBATOMIC_OPS_ARCH_SUPPORTS
|
|
depends on BR2_USE_MMU
|
|
depends on !BR2_TOOLCHAIN_HAS_THREADS_NPTL || !BR2_USE_WCHAR
|