diff options
author | Ryan Barnett <ryan.barnett@rockwellcollins.com> | 2014-06-23 09:47:48 -0500 |
---|---|---|
committer | Peter Korsgaard <peter@korsgaard.com> | 2014-06-24 16:18:35 +0200 |
commit | 1f3669b477340204e2c4fb817d21989563cdb8c6 (patch) | |
tree | f860c69b9a1b52631c54b02ab539e81610dbf5e6 /package/atftp/Config.in | |
parent | 0f6a872c8e70eb392588dd5fc1bdfaa07f31a2b8 (diff) | |
download | buildroot-1f3669b477340204e2c4fb817d21989563cdb8c6.tar.gz buildroot-1f3669b477340204e2c4fb817d21989563cdb8c6.zip |
atftp: new package
[Peter: note that readline is optional, drop trailing Config.in line]
Signed-off-by: Ryan Barnett <ryan.barnett@rockwellcollins.com>
CC: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Diffstat (limited to 'package/atftp/Config.in')
-rw-r--r-- | package/atftp/Config.in | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/package/atftp/Config.in b/package/atftp/Config.in new file mode 100644 index 0000000000..2a3df760b1 --- /dev/null +++ b/package/atftp/Config.in @@ -0,0 +1,15 @@ +config BR2_PACKAGE_ATFTP + bool "atftp" + depends on BR2_INET_IPV6 + depends on BR2_TOOLCHAIN_HAS_THREADS + help + atftp is a client/server implementation of the TFTP + protocol that implements RFCs 1350, 2090, 2347, 2348, + and 2349. The server is multi-threaded and the client + presents a friendly interface using libreadline + (if enabled). + + http://sourceforge.net/projects/atftp/ + +comment "atftp needs a toolchain w/ threads, IPv6" + depends on !BR2_TOOLCHAIN_HAS_THREADS || !BR2_INET_IPV6 |