forked from themactep/thingino-firmware
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Config.dev.in
40 lines (35 loc) · 1.18 KB
/
Config.dev.in
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
menuconfig BR2_THINGINO_DEV_PACKAGES
bool "Development Packages"
default y
help
Thingino Development Packages
include tools for firmware development.
https://github.com/thingino/firmware
if BR2_THINGINO_DEV_PACKAGES
config BR2_PACKAGE_GDB
bool "gdb Server and Client"
select BR2_PACKAGE_HOST_GDB
# needs a fuxup for CONFIG_HAVE_ARCH_KGDB=y
config BR2_PACKAGE_SELECT_LTRACE
bool "ltrace"
select BR2_PACKAGE_LTRACE
help
Debugging program which runs a specified command until it
exits. While the command is executing, ltrace intercepts and
records the dynamic library calls which are called by the
executed process and the signals received by that process.
config BR2_PACKAGE_SELECT_STRACE
bool "strace"
select BR2_PACKAGE_STRACE
help
A useful diagnostic, instructional, and debugging tool.
Allows you to track what system calls a program makes
while it is running.
config BR2_PACKAGE_SELECT_VALGRIND
bool "valgrind"
select BR2_PACKAGE_VALGRIND
help
Tool for debugging and profiling Linux programs.
source "$BR2_EXTERNAL_THINGINO_PATH/package/logcat-mini/Config.in"
source "$BR2_EXTERNAL_THINGINO_PATH/package/logcat/Config.in"
endif