-1

When I build toolchain to embedded linux I build busybox too.

How can I add tcpsvd to my busybox?

parser1234
  • 111
  • 1
  • 7

1 Answers1

1

This is documented in the Buildroot user manual, Chapter 7. Configuration of other components: use make busybox-menuconfig to enter the Busybox configuration menu, then go under Networking Utilities and enable tcpsvd.

Section 9.4. Storing the configuration of other components of the manual documents how to make your custom configuration permanent.

Luca Ceresoli
  • 1,591
  • 8
  • 19
  • thank you, can you please tell me how do I add to this toolchain, `ltrace` and `gdb-server`? – parser1234 May 06 '20 at 12:40
  • `ltrace` is not provided by busybox. Look for it in the Buildroot menu (`make menuconfig` is your friend). `gdb-server` is more complex but the manual has an explanation for it. Yes, you really should read the manual. – Luca Ceresoli May 06 '20 at 16:48
  • I realy search but didn't find how to get ltrace with `make menuconfig ` Is there any way to search there? and not search manualy? – parser1234 May 06 '20 at 18:49
  • It shouldn't be super had to find by navigating the menu, it's a target package and it's used for debugging. But you can also search: every menu in `menuconfig` has a help text, just under the title line. – Luca Ceresoli May 07 '20 at 08:41
  • Oh, and the Buildroot manual explains that too: "in menuconfig, the search tool is called by pressing /" (http://nightly.buildroot.org/manual.html#configure) – Luca Ceresoli May 07 '20 at 08:42