From df34b134e039e9567f887a89ab91baf117eabd22 Mon Sep 17 00:00:00 2001 From: kang Date: Sat, 2 Sep 2017 14:41:26 +0900 Subject: [PATCH] change the keyword apps/netutils to external written in Make.defs --- apps/builtin/Make.defs | 2 +- apps/examples/Make.defs | 2 +- apps/examples/aws/Make.defs | 2 +- apps/examples/dnsclient_test/Make.defs | 2 +- apps/examples/eeprom_test/Make.defs | 2 +- apps/examples/ftpc/Make.defs | 2 +- apps/examples/ftpd/Make.defs | 2 +- apps/examples/hello/Make.defs | 2 +- apps/examples/helloxx/Make.defs | 2 +- apps/examples/iotbus_test/Make.defs | 2 +- apps/examples/nettest/Make.defs | 2 +- apps/examples/smart/Make.defs | 2 +- apps/examples/telnetd/Make.defs | 2 +- apps/examples/webserver/Make.defs | 2 +- apps/examples/xmlrpc/Make.defs | 2 +- apps/netutils/Make.defs | 4 ++-- apps/netutils/Makefile | 2 +- apps/netutils/README.txt | 8 ++++---- apps/platform/Make.defs | 2 +- apps/system/Make.defs | 2 +- apps/system/cle/Make.defs | 2 +- apps/system/cu/Make.defs | 2 +- apps/system/flash_eraseall/Make.defs | 2 +- apps/system/i2c/Make.defs | 2 +- apps/system/install/Make.defs | 2 +- apps/system/mdio/Make.defs | 2 +- apps/system/netdb/Make.defs | 2 +- apps/system/ramtest/Make.defs | 2 +- apps/system/readline/Make.defs | 2 +- apps/system/vi/Make.defs | 2 +- external/codecs/Make.defs | 4 ++-- external/codecs/Makefile | 2 +- external/dhcpc/Make.defs | 4 ++-- external/dhcpc/Makefile | 2 +- external/dhcpd/Make.defs | 4 ++-- external/ftpc/Make.defs | 4 ++-- external/ftpc/Makefile | 2 +- external/ftpc/ftpc_cdup.c | 2 +- external/ftpc/ftpc_chdir.c | 2 +- external/ftpc/ftpc_chmod.c | 2 +- external/ftpc/ftpc_cmd.c | 2 +- external/ftpc/ftpc_config.h | 2 +- external/ftpc/ftpc_connect.c | 2 +- external/ftpc/ftpc_disconnect.c | 2 +- external/ftpc/ftpc_filesize.c | 2 +- external/ftpc/ftpc_filetime.c | 2 +- external/ftpc/ftpc_getfile.c | 2 +- external/ftpc/ftpc_getreply.c | 2 +- external/ftpc/ftpc_help.c | 2 +- external/ftpc/ftpc_idle.c | 2 +- external/ftpc/ftpc_internal.h | 2 +- external/ftpc/ftpc_listdir.c | 2 +- external/ftpc/ftpc_login.c | 2 +- external/ftpc/ftpc_mkdir.c | 2 +- external/ftpc/ftpc_noop.c | 2 +- external/ftpc/ftpc_putfile.c | 2 +- external/ftpc/ftpc_quit.c | 2 +- external/ftpc/ftpc_rename.c | 2 +- external/ftpc/ftpc_response.c | 2 +- external/ftpc/ftpc_rmdir.c | 2 +- external/ftpc/ftpc_rpwd.c | 2 +- external/ftpc/ftpc_socket.c | 2 +- external/ftpc/ftpc_transfer.c | 2 +- external/ftpc/ftpc_unlink.c | 2 +- external/ftpc/ftpc_utils.c | 2 +- external/ftpd/Make.defs | 4 ++-- external/ftpd/Makefile | 2 +- external/include/json/cJSON.h | 2 +- external/json/Make.defs | 4 ++-- external/json/Makefile | 2 +- external/json/README | 2 +- external/json/cJSON.c | 2 +- external/libcoap/Make.defs | 4 ++-- external/libcoap/Makefile | 2 +- external/mdns/Makefile | 2 +- external/mosquitto/Make.defs | 4 ++-- external/netlib/Make.defs | 4 ++-- external/netlib/Makefile | 2 +- external/netlib/netlib_prefix2ipv6netmask.c | 2 +- external/ntpclient/Make.defs | 4 ++-- external/ntpclient/Makefile | 2 +- external/ntpclient/ntpv3.h | 2 +- external/slsi_wifi/Make.defs | 4 ++-- external/smtp/Make.defs | 4 ++-- external/smtp/Makefile | 2 +- external/telnetd/Make.defs | 4 ++-- external/telnetd/Makefile | 2 +- external/tftpc/Make.defs | 4 ++-- external/tftpc/Makefile | 2 +- external/webclient/Make.defs | 4 ++-- external/webclient/Makefile | 2 +- external/webserver/Make.defs | 4 ++-- external/webserver/Makefile | 2 +- external/websocket/Makefile | 2 +- external/xmlrpc/Make.defs | 4 ++-- external/xmlrpc/Makefile | 2 +- external/xmlrpc/response.c | 2 +- external/xmlrpc/xmlparser.c | 2 +- framework/src/mqtt/Make.defs | 4 ++-- framework/src/mqtt/Makefile | 2 +- 100 files changed, 122 insertions(+), 122 deletions(-) diff --git a/apps/builtin/Make.defs b/apps/builtin/Make.defs index f1157c7..6c11917 100644 --- a/apps/builtin/Make.defs +++ b/apps/builtin/Make.defs @@ -17,7 +17,7 @@ ########################################################################### ############################################################################ # apps/builtin/Make.defs -# Adds selected applications to apps/ build +# Adds selected applications to external/ build # # Copyright (C) 2012 Gregory Nutt. All rights reserved. # Author: Gregory Nutt diff --git a/apps/examples/Make.defs b/apps/examples/Make.defs index a91a138..3048923 100644 --- a/apps/examples/Make.defs +++ b/apps/examples/Make.defs @@ -17,7 +17,7 @@ ########################################################################### ############################################################################ # apps/examples/Make.defs -# Adds selected applications to apps/ build +# Adds selected applications to external/ build # # Copyright (C) 2012, 2015 Gregory Nutt. All rights reserved. # Author: Gregory Nutt diff --git a/apps/examples/aws/Make.defs b/apps/examples/aws/Make.defs index 334b9fe..fe24082 100644 --- a/apps/examples/aws/Make.defs +++ b/apps/examples/aws/Make.defs @@ -17,7 +17,7 @@ ########################################################################### ############################################################################ # apps/examples/aws/Make.defs -# Adds selected applications to apps/ build +# Adds selected applications to external/ build # # Copyright (C) 2012 Gregory Nutt. All rights reserved. # Author: Gregory Nutt diff --git a/apps/examples/dnsclient_test/Make.defs b/apps/examples/dnsclient_test/Make.defs index 5877753..19971ad 100644 --- a/apps/examples/dnsclient_test/Make.defs +++ b/apps/examples/dnsclient_test/Make.defs @@ -1,6 +1,6 @@ ############################################################################ # apps/examples/dnsclient_test/Make.defs -# Adds selected applications to apps/ build +# Adds selected applications to external/ build # # Copyright (C) 2015 Gregory Nutt. All rights reserved. # Author: Gregory Nutt diff --git a/apps/examples/eeprom_test/Make.defs b/apps/examples/eeprom_test/Make.defs index d85891d..8575982 100644 --- a/apps/examples/eeprom_test/Make.defs +++ b/apps/examples/eeprom_test/Make.defs @@ -17,7 +17,7 @@ ########################################################################### ############################################################################ # apps/examples/eeprom_test/Make.defs -# Adds selected applications to apps/ build +# Adds selected applications to external/ build # # Copyright (C) 2015 Gregory Nutt. All rights reserved. # Author: Gregory Nutt diff --git a/apps/examples/ftpc/Make.defs b/apps/examples/ftpc/Make.defs index ae40e9e..d2fdd5e 100644 --- a/apps/examples/ftpc/Make.defs +++ b/apps/examples/ftpc/Make.defs @@ -17,7 +17,7 @@ ########################################################################### ############################################################################ # apps/examples/ftpc/Make.defs -# Adds selected applications to apps/ build +# Adds selected applications to external/ build # # Copyright (C) 2015 Gregory Nutt. All rights reserved. # Author: Gregory Nutt diff --git a/apps/examples/ftpd/Make.defs b/apps/examples/ftpd/Make.defs index 6ed934e..e71ec45 100644 --- a/apps/examples/ftpd/Make.defs +++ b/apps/examples/ftpd/Make.defs @@ -17,7 +17,7 @@ ########################################################################### ############################################################################ # apps/examples/ftpd/Make.defs -# Adds selected applications to apps/ build +# Adds selected applications to external/ build # # Copyright (C) 2015 Gregory Nutt. All rights reserved. # Author: Gregory Nutt diff --git a/apps/examples/hello/Make.defs b/apps/examples/hello/Make.defs index cba6dc6..c2b4e12 100644 --- a/apps/examples/hello/Make.defs +++ b/apps/examples/hello/Make.defs @@ -17,7 +17,7 @@ ########################################################################### ############################################################################ # apps/examples/hello/Make.defs -# Adds selected applications to apps/ build +# Adds selected applications to external/ build # # Copyright (C) 2015 Gregory Nutt. All rights reserved. # Author: Gregory Nutt diff --git a/apps/examples/helloxx/Make.defs b/apps/examples/helloxx/Make.defs index 124df06..b12056b 100644 --- a/apps/examples/helloxx/Make.defs +++ b/apps/examples/helloxx/Make.defs @@ -17,7 +17,7 @@ ########################################################################### ############################################################################ # apps/examples/helloxx/Make.defs -# Adds selected applications to apps/ build +# Adds selected applications to external/ build # # Copyright (C) 2015 Gregory Nutt. All rights reserved. # Author: Gregory Nutt diff --git a/apps/examples/iotbus_test/Make.defs b/apps/examples/iotbus_test/Make.defs index a1d3fb6..1c36ffe 100644 --- a/apps/examples/iotbus_test/Make.defs +++ b/apps/examples/iotbus_test/Make.defs @@ -17,7 +17,7 @@ ########################################################################### ############################################################################ # apps/examples/iotbus_test/Make.defs -# Adds selected applications to apps/ build +# Adds selected applications to external/ build # # Copyright (C) 2015 Gregory Nutt. All rights reserved. # Author: Gregory Nutt diff --git a/apps/examples/nettest/Make.defs b/apps/examples/nettest/Make.defs index 7604bdf..330a42a 100644 --- a/apps/examples/nettest/Make.defs +++ b/apps/examples/nettest/Make.defs @@ -17,7 +17,7 @@ ########################################################################### ############################################################################ # apps/examples/nettest/Make.defs -# Adds selected applications to apps/ build +# Adds selected applications to external/ build # # Copyright (C) 2015 Gregory Nutt. All rights reserved. # Author: Gregory Nutt diff --git a/apps/examples/smart/Make.defs b/apps/examples/smart/Make.defs index 3f60f6f..a58dabc 100644 --- a/apps/examples/smart/Make.defs +++ b/apps/examples/smart/Make.defs @@ -1,6 +1,6 @@ ############################################################################ # apps/examples/smart/Make.defs -# Adds selected applications to apps/ build +# Adds selected applications to external/ build # # Copyright (C) 2015 Gregory Nutt. All rights reserved. # Author: Gregory Nutt diff --git a/apps/examples/telnetd/Make.defs b/apps/examples/telnetd/Make.defs index 5d81709..e5d6b66 100644 --- a/apps/examples/telnetd/Make.defs +++ b/apps/examples/telnetd/Make.defs @@ -17,7 +17,7 @@ ########################################################################### ############################################################################ # apps/examples/telnetd/Make.defs -# Adds selected applications to apps/ build +# Adds selected applications to external/ build # # Copyright (C) 2015 Gregory Nutt. All rights reserved. # Author: Gregory Nutt diff --git a/apps/examples/webserver/Make.defs b/apps/examples/webserver/Make.defs index 1d9894d..11a1230 100644 --- a/apps/examples/webserver/Make.defs +++ b/apps/examples/webserver/Make.defs @@ -17,7 +17,7 @@ ########################################################################### ############################################################################ # apps/examples/webserver/Make.defs -# Adds selected applications to apps/ build +# Adds selected applications to external/ build # # Copyright (C) 2015 Gregory Nutt. All rights reserved. # Author: Gregory Nutt diff --git a/apps/examples/xmlrpc/Make.defs b/apps/examples/xmlrpc/Make.defs index 540101a..a1a46cd 100644 --- a/apps/examples/xmlrpc/Make.defs +++ b/apps/examples/xmlrpc/Make.defs @@ -17,7 +17,7 @@ ########################################################################### ############################################################################ # apps/examples/xmlrpc/Make.defs -# Adds selected applications to apps/ build +# Adds selected applications to external/ build # # Copyright (C) 2015 Gregory Nutt. All rights reserved. # Author: Gregory Nutt diff --git a/apps/netutils/Make.defs b/apps/netutils/Make.defs index 763f2e4..8bbf0ae 100644 --- a/apps/netutils/Make.defs +++ b/apps/netutils/Make.defs @@ -16,8 +16,8 @@ # ########################################################################### ############################################################################ -# apps/netutils/Make.defs -# Adds selected applications to apps/ build +# external/Make.defs +# Adds selected applications to external/ build # # Copyright (C) 2012, 2016 Gregory Nutt. All rights reserved. # Author: Gregory Nutt diff --git a/apps/netutils/Makefile b/apps/netutils/Makefile index c8c86cd..609d00f 100644 --- a/apps/netutils/Makefile +++ b/apps/netutils/Makefile @@ -16,7 +16,7 @@ # ########################################################################### ############################################################################ -# apps/netutils/Makefile +# external/Makefile # # Copyright (C) 2011-2012, 2016 Gregory Nutt. All rights reserved. # Author: Gregory Nutt diff --git a/apps/netutils/README.txt b/apps/netutils/README.txt index 0510a4a..68be53c 100644 --- a/apps/netutils/README.txt +++ b/apps/netutils/README.txt @@ -15,7 +15,7 @@ These applications are not all heavily tested. Apps include: dhcpc - Dynamic Host Configuration Protocol (DHCP) client. - See apps/netutils/dhcpc.h for interface information. + See external/dhcpc.h for interface information. dhcpd - Dynamic Host Configuration Protocol (DHCP) server. See apps/include/netutils/dhcpd.h for interface information. ftpc - FTP client. @@ -28,9 +28,9 @@ Apps include: http://www.drdobbs.com/web-development/an-embeddable-lightweight-xml-rpc-server/184405364. See apps/include/netutils/cJSON.h for interface information. mdns - multicast Domain Name System (mDNS). - See apps/netutils/mdns/mdns.h for interface information. + See external/mdns/mdns.h for interface information. netlib - network libraries that includes IP address support, HTTP support and generic server logic. - See apps/netutils/netlib.h for interface information. + See external/netlib.h for interface information. ntpclient - This is a fragmentary NTP client. It neither well-tested nor mature nor complete at this point in time. See apps/include/netutils/ntpclient.h for interface information. @@ -43,7 +43,7 @@ Apps include: webclient - HTTP web client. See apps/include/netutils/webclient.h for interface information. webserver - HTTP web server. - See os/include/apps/netutils/webserver/http_server.h for interface information. + See os/include/external/webserver/http_server.h for interface information. websocket - websocket server and client. See apps/include/netutils/websocket.h for interface information. xmlrpc - The Embeddable Lightweight XML-RPC Server discussed at diff --git a/apps/platform/Make.defs b/apps/platform/Make.defs index 1155045..40fed56 100644 --- a/apps/platform/Make.defs +++ b/apps/platform/Make.defs @@ -17,7 +17,7 @@ ########################################################################### ############################################################################ # apps/platform/Make.defs -# Adds selected applications to apps/ build +# Adds selected applications to external/ build # # Copyright (C) 2013 Gregory Nutt. All rights reserved. # Author: Gregory Nutt diff --git a/apps/system/Make.defs b/apps/system/Make.defs index 9d045ba..38a1f8d 100644 --- a/apps/system/Make.defs +++ b/apps/system/Make.defs @@ -17,7 +17,7 @@ ########################################################################### ############################################################################ # apps/system/Make.defs -# Adds selected applications to apps/ build +# Adds selected applications to external/ build # # Copyright (C) 2012-2014 Gregory Nutt. All rights reserved. # Author: Gregory Nutt diff --git a/apps/system/cle/Make.defs b/apps/system/cle/Make.defs index bf944f9..79845dc 100644 --- a/apps/system/cle/Make.defs +++ b/apps/system/cle/Make.defs @@ -17,7 +17,7 @@ ########################################################################### ############################################################################ # apps/system/cle/Make.defs -# Adds selected applications to apps/ build +# Adds selected applications to external/ build # # Copyright (C) 2016 Gregory Nutt. All rights reserved. # Author: Gregory Nutt diff --git a/apps/system/cu/Make.defs b/apps/system/cu/Make.defs index 68df06e..e642d66 100644 --- a/apps/system/cu/Make.defs +++ b/apps/system/cu/Make.defs @@ -17,7 +17,7 @@ ########################################################################### ############################################################################ # apps/system/cu/Make.defs -# Adds selected applications to apps/ build +# Adds selected applications to external/ build # # Copyright (C) 2016 Gregory Nutt. All rights reserved. # Author: Gregory Nutt diff --git a/apps/system/flash_eraseall/Make.defs b/apps/system/flash_eraseall/Make.defs index 9e54d26..a811f4c 100644 --- a/apps/system/flash_eraseall/Make.defs +++ b/apps/system/flash_eraseall/Make.defs @@ -17,7 +17,7 @@ ########################################################################### ############################################################################ # apps/system/flash_eraseall/Make.defs -# Adds selected applications to apps/ build +# Adds selected applications to external/ build # # Copyright (C) 2016 Gregory Nutt. All rights reserved. # Author: Gregory Nutt diff --git a/apps/system/i2c/Make.defs b/apps/system/i2c/Make.defs index 474107f..128d083 100644 --- a/apps/system/i2c/Make.defs +++ b/apps/system/i2c/Make.defs @@ -17,7 +17,7 @@ ########################################################################### ############################################################################ # apps/system/i2c/Make.defs -# Adds selected applications to apps/ build +# Adds selected applications to external/ build # # Copyright (C) 2015 Gregory Nutt. All rights reserved. # Author: Gregory Nutt diff --git a/apps/system/install/Make.defs b/apps/system/install/Make.defs index 2d17388..9e43428 100644 --- a/apps/system/install/Make.defs +++ b/apps/system/install/Make.defs @@ -17,7 +17,7 @@ ########################################################################### ############################################################################ # apps/system/install/Make.defs -# Adds selected applications to apps/ build +# Adds selected applications to external/ build # # Copyright (C) 2015 Gregory Nutt. All rights reserved. # Author: Gregory Nutt diff --git a/apps/system/mdio/Make.defs b/apps/system/mdio/Make.defs index 1b303a9..a8d893b 100644 --- a/apps/system/mdio/Make.defs +++ b/apps/system/mdio/Make.defs @@ -17,7 +17,7 @@ ########################################################################### ############################################################################ # apps/system/mdio/Make.defs -# Adds selected applications to apps/ build +# Adds selected applications to external/ build # # Copyright (C) 2016 Gregory Nutt. All rights reserved. # Author: Gregory Nutt diff --git a/apps/system/netdb/Make.defs b/apps/system/netdb/Make.defs index e24797a..59e88b3 100644 --- a/apps/system/netdb/Make.defs +++ b/apps/system/netdb/Make.defs @@ -17,7 +17,7 @@ ########################################################################### ############################################################################ # apps/system/netdb/Make.defs -# Adds selected applications to apps/ build +# Adds selected applications to external/ build # # Copyright (C) 2016 Gregory Nutt. All rights reserved. # Author: Gregory Nutt diff --git a/apps/system/ramtest/Make.defs b/apps/system/ramtest/Make.defs index 767ac57..52fa035 100644 --- a/apps/system/ramtest/Make.defs +++ b/apps/system/ramtest/Make.defs @@ -17,7 +17,7 @@ ########################################################################### ############################################################################ # apps/system/ramtest/Make.defs -# Adds selected applications to apps/ build +# Adds selected applications to external/ build # # Copyright (C) 2016 Gregory Nutt. All rights reserved. # Author: Gregory Nutt diff --git a/apps/system/readline/Make.defs b/apps/system/readline/Make.defs index 6e77c07..2ec2b52 100644 --- a/apps/system/readline/Make.defs +++ b/apps/system/readline/Make.defs @@ -17,7 +17,7 @@ ########################################################################### ############################################################################ # apps/system/readline/Make.defs -# Adds selected applications to apps/ build +# Adds selected applications to external/ build # # Copyright (C) 2016 Gregory Nutt. All rights reserved. # Author: Gregory Nutt diff --git a/apps/system/vi/Make.defs b/apps/system/vi/Make.defs index b0bb771..81de000 100644 --- a/apps/system/vi/Make.defs +++ b/apps/system/vi/Make.defs @@ -17,7 +17,7 @@ ########################################################################### ############################################################################ # apps/system/vi/Make.defs -# Adds selected applications to apps/ build +# Adds selected applications to external/ build # # Copyright (C) 2016 Gregory Nutt. All rights reserved. # Author: Gregory Nutt diff --git a/external/codecs/Make.defs b/external/codecs/Make.defs index b4e4fc4..a822dec 100644 --- a/external/codecs/Make.defs +++ b/external/codecs/Make.defs @@ -15,8 +15,8 @@ # language governing permissions and limitations under the License. # ########################################################################### -# apps/netutils/codecs/Make.defs -# Adds selected applications to apps/ build +# external/codecs/Make.defs +# Adds selected applications to external/ build # # Copyright (C) 2016 Gregory Nutt. All rights reserved. # Author: Gregory Nutt diff --git a/external/codecs/Makefile b/external/codecs/Makefile index 21a2802..3f6bfec 100644 --- a/external/codecs/Makefile +++ b/external/codecs/Makefile @@ -16,7 +16,7 @@ # ########################################################################### ############################################################################ -# apps/netutils/codecs/Makefile +# external/codecs/Makefile # # Copyright (C) 2012 Gregory Nutt. All rights reserved. # Author: Gregory Nutt diff --git a/external/dhcpc/Make.defs b/external/dhcpc/Make.defs index 2dccb9d..9d692a0 100644 --- a/external/dhcpc/Make.defs +++ b/external/dhcpc/Make.defs @@ -15,8 +15,8 @@ # language governing permissions and limitations under the License. # ########################################################################### -# apps/netutils/dhcpc/Make.defs -# Adds selected applications to apps/ build +# external/dhcpc/Make.defs +# Adds selected applications to external/ build # # Copyright (C) 2016 Gregory Nutt. All rights reserved. # Author: Gregory Nutt diff --git a/external/dhcpc/Makefile b/external/dhcpc/Makefile index 7c93c41..fa0cf0e 100644 --- a/external/dhcpc/Makefile +++ b/external/dhcpc/Makefile @@ -16,7 +16,7 @@ # ########################################################################### ############################################################################ -# apps/netutils/dhcpc/Makefile +# external/dhcpc/Makefile # # Copyright (C) 2011-2012 Gregory Nutt. All rights reserved. # Author: Gregory Nutt diff --git a/external/dhcpd/Make.defs b/external/dhcpd/Make.defs index 78f8ada..acd32d3 100644 --- a/external/dhcpd/Make.defs +++ b/external/dhcpd/Make.defs @@ -15,8 +15,8 @@ # language governing permissions and limitations under the License. # ########################################################################### -# apps/netutils/dhcpd/Make.defs -# Adds selected applications to apps/ build +# external/dhcpd/Make.defs +# Adds selected applications to external/ build # # Copyright (C) 2016 Gregory Nutt. All rights reserved. # Author: Gregory Nutt diff --git a/external/ftpc/Make.defs b/external/ftpc/Make.defs index 4832ea5..b83109b 100644 --- a/external/ftpc/Make.defs +++ b/external/ftpc/Make.defs @@ -15,8 +15,8 @@ # language governing permissions and limitations under the License. # ########################################################################### -# apps/netutils/ftpc/Make.defs -# Adds selected applications to apps/ build +# external/ftpc/Make.defs +# Adds selected applications to external/ build # # Copyright (C) 2016 Gregory Nutt. All rights reserved. # Author: Gregory Nutt diff --git a/external/ftpc/Makefile b/external/ftpc/Makefile index 04e8919..4c51b0d 100644 --- a/external/ftpc/Makefile +++ b/external/ftpc/Makefile @@ -16,7 +16,7 @@ # ########################################################################### ############################################################################ -# apps/netutils/ftpc/Makefile +# external/ftpc/Makefile # # Copyright (C) 2011-2012 Gregory Nutt. All rights reserved. # Author: Gregory Nutt diff --git a/external/ftpc/ftpc_cdup.c b/external/ftpc/ftpc_cdup.c index 32537da..17fe466 100644 --- a/external/ftpc/ftpc_cdup.c +++ b/external/ftpc/ftpc_cdup.c @@ -16,7 +16,7 @@ * ****************************************************************************/ /**************************************************************************** - * apps/netutils/ftpc/ftpc_cdup.c + * external/ftpc/ftpc_cdup.c * * Copyright (C) 2011 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/external/ftpc/ftpc_chdir.c b/external/ftpc/ftpc_chdir.c index 4aa25aa..0adc003 100644 --- a/external/ftpc/ftpc_chdir.c +++ b/external/ftpc/ftpc_chdir.c @@ -16,7 +16,7 @@ * ****************************************************************************/ /**************************************************************************** - * apps/netutils/ftpc/ftpc_chdir.c + * external/ftpc/ftpc_chdir.c * * Copyright (C) 2011 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/external/ftpc/ftpc_chmod.c b/external/ftpc/ftpc_chmod.c index 0314763..323dbc4 100644 --- a/external/ftpc/ftpc_chmod.c +++ b/external/ftpc/ftpc_chmod.c @@ -16,7 +16,7 @@ * ****************************************************************************/ /**************************************************************************** - * apps/netutils/ftpc/ftpc_chmod.c + * external/ftpc/ftpc_chmod.c * * Copyright (C) 2011 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/external/ftpc/ftpc_cmd.c b/external/ftpc/ftpc_cmd.c index e85d2b6..a2bf57a 100644 --- a/external/ftpc/ftpc_cmd.c +++ b/external/ftpc/ftpc_cmd.c @@ -16,7 +16,7 @@ * ****************************************************************************/ /**************************************************************************** - * apps/netutils/ftpc/ftpc_cmd.c + * external/ftpc/ftpc_cmd.c * * Copyright (C) 2011 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/external/ftpc/ftpc_config.h b/external/ftpc/ftpc_config.h index 2ba1557..4a01dfb 100644 --- a/external/ftpc/ftpc_config.h +++ b/external/ftpc/ftpc_config.h @@ -16,7 +16,7 @@ * ****************************************************************************/ /**************************************************************************** - * apps/netutils/ftpc/ftpc_config.h + * external/ftpc/ftpc_config.h * * Copyright (C) 2011 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/external/ftpc/ftpc_connect.c b/external/ftpc/ftpc_connect.c index 52c1130..6adae3a 100644 --- a/external/ftpc/ftpc_connect.c +++ b/external/ftpc/ftpc_connect.c @@ -16,7 +16,7 @@ * ****************************************************************************/ /**************************************************************************** - * apps/netutils/ftpc/ftpc_connect.c + * external/ftpc/ftpc_connect.c * * Copyright (C) 2011 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/external/ftpc/ftpc_disconnect.c b/external/ftpc/ftpc_disconnect.c index 4ca48b2..001feab 100644 --- a/external/ftpc/ftpc_disconnect.c +++ b/external/ftpc/ftpc_disconnect.c @@ -16,7 +16,7 @@ * ****************************************************************************/ /**************************************************************************** - * apps/netutils/ftpc/ftpc_disconnect.c + * external/ftpc/ftpc_disconnect.c * * Copyright (C) 2011 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/external/ftpc/ftpc_filesize.c b/external/ftpc/ftpc_filesize.c index fe72500..2a8da8f 100644 --- a/external/ftpc/ftpc_filesize.c +++ b/external/ftpc/ftpc_filesize.c @@ -16,7 +16,7 @@ * ****************************************************************************/ /**************************************************************************** - * apps/netutils/ftpc/ftpc_filesize.c + * external/ftpc/ftpc_filesize.c * * Copyright (C) 2011 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/external/ftpc/ftpc_filetime.c b/external/ftpc/ftpc_filetime.c index 6aedbaf..0f7b3a0 100644 --- a/external/ftpc/ftpc_filetime.c +++ b/external/ftpc/ftpc_filetime.c @@ -16,7 +16,7 @@ * ****************************************************************************/ /**************************************************************************** - * apps/netutils/ftpc/ftpc_filetime.c + * external/ftpc/ftpc_filetime.c * * Copyright (C) 2011 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/external/ftpc/ftpc_getfile.c b/external/ftpc/ftpc_getfile.c index 0b8e5a4..65a8ebb 100644 --- a/external/ftpc/ftpc_getfile.c +++ b/external/ftpc/ftpc_getfile.c @@ -16,7 +16,7 @@ * ****************************************************************************/ /**************************************************************************** - * apps/netutils/ftpc/ftpc_getfile.c + * external/ftpc/ftpc_getfile.c * * Copyright (C) 2011 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/external/ftpc/ftpc_getreply.c b/external/ftpc/ftpc_getreply.c index 6dc2821..06e2739 100644 --- a/external/ftpc/ftpc_getreply.c +++ b/external/ftpc/ftpc_getreply.c @@ -16,7 +16,7 @@ * ****************************************************************************/ /**************************************************************************** - * apps/netutils/ftpc/ftpc_getreply.c + * external/ftpc/ftpc_getreply.c * * Copyright (C) 2011 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/external/ftpc/ftpc_help.c b/external/ftpc/ftpc_help.c index 7b16021..ef26e7f 100644 --- a/external/ftpc/ftpc_help.c +++ b/external/ftpc/ftpc_help.c @@ -16,7 +16,7 @@ * ****************************************************************************/ /**************************************************************************** - * apps/netutils/ftpc/ftpc_help.c + * external/ftpc/ftpc_help.c * * Copyright (C) 2011 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/external/ftpc/ftpc_idle.c b/external/ftpc/ftpc_idle.c index 7df582a..e65545d 100644 --- a/external/ftpc/ftpc_idle.c +++ b/external/ftpc/ftpc_idle.c @@ -16,7 +16,7 @@ * ****************************************************************************/ /**************************************************************************** - * apps/netutils/ftpc/ftpc_idle.c + * external/ftpc/ftpc_idle.c * * Copyright (C) 2011 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/external/ftpc/ftpc_internal.h b/external/ftpc/ftpc_internal.h index 6b00973..e37bad3 100644 --- a/external/ftpc/ftpc_internal.h +++ b/external/ftpc/ftpc_internal.h @@ -16,7 +16,7 @@ * ****************************************************************************/ /**************************************************************************** - * apps/netutils/ftpc/ftpc_internal.h + * external/ftpc/ftpc_internal.h * * Copyright (C) 2011, 2014 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/external/ftpc/ftpc_listdir.c b/external/ftpc/ftpc_listdir.c index 45ac432..f5a0bea 100644 --- a/external/ftpc/ftpc_listdir.c +++ b/external/ftpc/ftpc_listdir.c @@ -16,7 +16,7 @@ * ****************************************************************************/ /**************************************************************************** - * apps/netutils/ftpc/ftpc_listdir.c + * external/ftpc/ftpc_listdir.c * * Copyright (C) 2011 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/external/ftpc/ftpc_login.c b/external/ftpc/ftpc_login.c index f23fcd1..7cb8ad2 100644 --- a/external/ftpc/ftpc_login.c +++ b/external/ftpc/ftpc_login.c @@ -16,7 +16,7 @@ * ****************************************************************************/ /**************************************************************************** - * apps/netutils/ftpc/ftpc_login.c + * external/ftpc/ftpc_login.c * * Copyright (C) 2011-2012 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/external/ftpc/ftpc_mkdir.c b/external/ftpc/ftpc_mkdir.c index 355ac99..d3301b5 100644 --- a/external/ftpc/ftpc_mkdir.c +++ b/external/ftpc/ftpc_mkdir.c @@ -16,7 +16,7 @@ * ****************************************************************************/ /**************************************************************************** - * apps/netutils/ftpc/ftpc_mkdir.c + * external/ftpc/ftpc_mkdir.c * * Copyright (C) 2011 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/external/ftpc/ftpc_noop.c b/external/ftpc/ftpc_noop.c index 197c181..ced55d4 100644 --- a/external/ftpc/ftpc_noop.c +++ b/external/ftpc/ftpc_noop.c @@ -16,7 +16,7 @@ * ****************************************************************************/ /**************************************************************************** - * apps/netutils/ftpc/ftpc_noop.c + * external/ftpc/ftpc_noop.c * * Copyright (C) 2011 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/external/ftpc/ftpc_putfile.c b/external/ftpc/ftpc_putfile.c index 0316460..2344370 100644 --- a/external/ftpc/ftpc_putfile.c +++ b/external/ftpc/ftpc_putfile.c @@ -16,7 +16,7 @@ * ****************************************************************************/ /**************************************************************************** - * apps/netutils/ftpc/ftpc_putfile.c + * external/ftpc/ftpc_putfile.c * * Copyright (C) 2011 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/external/ftpc/ftpc_quit.c b/external/ftpc/ftpc_quit.c index b9ff406..e08913c 100644 --- a/external/ftpc/ftpc_quit.c +++ b/external/ftpc/ftpc_quit.c @@ -16,7 +16,7 @@ * ****************************************************************************/ /**************************************************************************** - * apps/netutils/ftpc/ftpc_quit.c + * external/ftpc/ftpc_quit.c * * Copyright (C) 2011 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/external/ftpc/ftpc_rename.c b/external/ftpc/ftpc_rename.c index a634880..740ec27 100644 --- a/external/ftpc/ftpc_rename.c +++ b/external/ftpc/ftpc_rename.c @@ -16,7 +16,7 @@ * ****************************************************************************/ /**************************************************************************** - * apps/netutils/ftpc/ftpc_rename.c + * external/ftpc/ftpc_rename.c * * Copyright (C) 2011 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/external/ftpc/ftpc_response.c b/external/ftpc/ftpc_response.c index 180bbb3..f71b0b4 100644 --- a/external/ftpc/ftpc_response.c +++ b/external/ftpc/ftpc_response.c @@ -16,7 +16,7 @@ * ****************************************************************************/ /**************************************************************************** - * apps/netutils/ftpc/ftpc_response.c + * external/ftpc/ftpc_response.c * * Copyright (C) 2011 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/external/ftpc/ftpc_rmdir.c b/external/ftpc/ftpc_rmdir.c index d60368f..8227530 100644 --- a/external/ftpc/ftpc_rmdir.c +++ b/external/ftpc/ftpc_rmdir.c @@ -16,7 +16,7 @@ * ****************************************************************************/ /**************************************************************************** - * apps/netutils/ftpc/ftpc_rmdir.c + * external/ftpc/ftpc_rmdir.c * * Copyright (C) 2011 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/external/ftpc/ftpc_rpwd.c b/external/ftpc/ftpc_rpwd.c index 2ba8a22..7873d8c 100644 --- a/external/ftpc/ftpc_rpwd.c +++ b/external/ftpc/ftpc_rpwd.c @@ -16,7 +16,7 @@ * ****************************************************************************/ /**************************************************************************** - * apps/netutils/ftpc/ftpc_rpwd.c + * external/ftpc/ftpc_rpwd.c * * Copyright (C) 2011 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/external/ftpc/ftpc_socket.c b/external/ftpc/ftpc_socket.c index f268903..8a97c37 100644 --- a/external/ftpc/ftpc_socket.c +++ b/external/ftpc/ftpc_socket.c @@ -16,7 +16,7 @@ * ****************************************************************************/ /**************************************************************************** - * apps/netutils/ftpc/ftpc_socket.c + * external/ftpc/ftpc_socket.c * * Copyright (C) 2011 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/external/ftpc/ftpc_transfer.c b/external/ftpc/ftpc_transfer.c index 0fb37aa..543c6c8 100644 --- a/external/ftpc/ftpc_transfer.c +++ b/external/ftpc/ftpc_transfer.c @@ -16,7 +16,7 @@ * ****************************************************************************/ /**************************************************************************** - * apps/netutils/ftpc/ftpc_transfer.c + * external/ftpc/ftpc_transfer.c * * Copyright (C) 2011 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/external/ftpc/ftpc_unlink.c b/external/ftpc/ftpc_unlink.c index 4faf833..4f0f6e1 100644 --- a/external/ftpc/ftpc_unlink.c +++ b/external/ftpc/ftpc_unlink.c @@ -16,7 +16,7 @@ * ****************************************************************************/ /**************************************************************************** - * apps/netutils/ftpc/ftpc_unlink.c + * external/ftpc/ftpc_unlink.c * * Copyright (C) 2011 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/external/ftpc/ftpc_utils.c b/external/ftpc/ftpc_utils.c index 3c4bbcd..c87d8c3 100644 --- a/external/ftpc/ftpc_utils.c +++ b/external/ftpc/ftpc_utils.c @@ -16,7 +16,7 @@ * ****************************************************************************/ /**************************************************************************** - * apps/netutils/ftpc/ftpc_utils.c + * external/ftpc/ftpc_utils.c * * Copyright (C) 2011 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/external/ftpd/Make.defs b/external/ftpd/Make.defs index bf5fe8d..56822a8 100644 --- a/external/ftpd/Make.defs +++ b/external/ftpd/Make.defs @@ -15,8 +15,8 @@ # language governing permissions and limitations under the License. # ########################################################################### -# apps/netutils/ftpd/Make.defs -# Adds selected applications to apps/ build +# external/ftpd/Make.defs +# Adds selected applications to external/ build # # Copyright (C) 2016 Gregory Nutt. All rights reserved. # Author: Gregory Nutt diff --git a/external/ftpd/Makefile b/external/ftpd/Makefile index ba0a9c2..fa1c7e5 100644 --- a/external/ftpd/Makefile +++ b/external/ftpd/Makefile @@ -16,7 +16,7 @@ # ########################################################################### ############################################################################ -# apps/netutils/ftpd/Makefile +# external/ftpd/Makefile # # Copyright (C) 2012 Gregory Nutt. All rights reserved. # Author: Gregory Nutt diff --git a/external/include/json/cJSON.h b/external/include/json/cJSON.h index bf82783..ca28f34 100755 --- a/external/include/json/cJSON.h +++ b/external/include/json/cJSON.h @@ -16,7 +16,7 @@ * ****************************************************************************/ /**************************************************************************** - * apps/netutils/json/cJSON.c + * external/json/cJSON.c * * This file is a part of NuttX: * diff --git a/external/json/Make.defs b/external/json/Make.defs index fead411..dd7039c 100644 --- a/external/json/Make.defs +++ b/external/json/Make.defs @@ -15,8 +15,8 @@ # language governing permissions and limitations under the License. # ########################################################################### -# apps/netutils/json/Make.defs -# Adds selected applications to apps/ build +# external/json/Make.defs +# Adds selected applications to external/ build # # Copyright (C) 2016 Gregory Nutt. All rights reserved. # Author: Gregory Nutt diff --git a/external/json/Makefile b/external/json/Makefile index 9ae5da9..50483ba 100644 --- a/external/json/Makefile +++ b/external/json/Makefile @@ -16,7 +16,7 @@ # ########################################################################### ############################################################################ -# apps/netutils/json/Makefile +# external/json/Makefile # # Copyright (C) 2012 Gregory Nutt. All rights reserved. # Author: Gregory Nutt diff --git a/external/json/README b/external/json/README index 058644f..8b92d58 100644 --- a/external/json/README +++ b/external/json/README @@ -1,4 +1,4 @@ -apps/netutils/json/README.txt +external/json/README.txt ============================= This directory contains logic taken from the cJSON project: diff --git a/external/json/cJSON.c b/external/json/cJSON.c index dd426b3..17d3a53 100644 --- a/external/json/cJSON.c +++ b/external/json/cJSON.c @@ -16,7 +16,7 @@ * ****************************************************************************/ /**************************************************************************** - * apps/netutils/json/cJSON.c + * external/json/cJSON.c * * This file is a part of NuttX: * diff --git a/external/libcoap/Make.defs b/external/libcoap/Make.defs index 61d6805..a6d148d 100644 --- a/external/libcoap/Make.defs +++ b/external/libcoap/Make.defs @@ -15,8 +15,8 @@ # language governing permissions and limitations under the License. # ########################################################################### -# apps/netutils/libcoap/Make.defs -# Adds selected applications to apps/ build +# external/libcoap/Make.defs +# Adds selected applications to external/ build # # Copyright (C) 2016 Gregory Nutt. All rights reserved. # Author: Gregory Nutt diff --git a/external/libcoap/Makefile b/external/libcoap/Makefile index aa033f4..8146159 100644 --- a/external/libcoap/Makefile +++ b/external/libcoap/Makefile @@ -16,7 +16,7 @@ # ########################################################################### ############################################################################ -# apps/netutils/libcoap/Makefile +# external/libcoap/Makefile # # Copyright (C) 2014 Gregory Nutt. All rights reserved. # Author: Gregory Nutt diff --git a/external/mdns/Makefile b/external/mdns/Makefile index 396d744..e8c1618 100644 --- a/external/mdns/Makefile +++ b/external/mdns/Makefile @@ -16,7 +16,7 @@ # ########################################################################### ############################################################################ -# apps/netutils/mdns/Makefile +# external/mdns/Makefile # # Copyright (C) 2011-2012, 2014 Gregory Nutt. All rights reserved. # Author: Gregory Nutt diff --git a/external/mosquitto/Make.defs b/external/mosquitto/Make.defs index 7ed2ffd..0fd81eb 100644 --- a/external/mosquitto/Make.defs +++ b/external/mosquitto/Make.defs @@ -15,8 +15,8 @@ # language governing permissions and limitations under the License. # ########################################################################### -# apps/netutils/dhcpd/Make.defs -# Adds selected applications to apps/ build +# external/dhcpd/Make.defs +# Adds selected applications to external/ build # # Copyright (C) 2016 Gregory Nutt. All rights reserved. # Author: Gregory Nutt diff --git a/external/netlib/Make.defs b/external/netlib/Make.defs index 7184c4a..3781ed3 100644 --- a/external/netlib/Make.defs +++ b/external/netlib/Make.defs @@ -15,8 +15,8 @@ # language governing permissions and limitations under the License. # ########################################################################### -# apps/netutils/netlib/Make.defs -# Adds selected applications to apps/ build +# external/netlib/Make.defs +# Adds selected applications to external/ build # # Copyright (C) 2016 Gregory Nutt. All rights reserved. # Author: Gregory Nutt diff --git a/external/netlib/Makefile b/external/netlib/Makefile index 9b9e455..eeb3840 100644 --- a/external/netlib/Makefile +++ b/external/netlib/Makefile @@ -16,7 +16,7 @@ # ########################################################################### ############################################################################ -# apps/netutils/netlib/Makefile +# external/netlib/Makefile # # Copyright (C) 2011-2012, 2014-2015 Gregory Nutt. All rights reserved. # Author: Gregory Nutt diff --git a/external/netlib/netlib_prefix2ipv6netmask.c b/external/netlib/netlib_prefix2ipv6netmask.c index 456b8a8..2b795f8 100644 --- a/external/netlib/netlib_prefix2ipv6netmask.c +++ b/external/netlib/netlib_prefix2ipv6netmask.c @@ -16,7 +16,7 @@ * ****************************************************************************/ /**************************************************************************** - * apps/netutils/netlib/netlib_prefix2ipv6netmask.c + * external/netlib/netlib_prefix2ipv6netmask.c * * Copyright (C) 2015 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/external/ntpclient/Make.defs b/external/ntpclient/Make.defs index f8921de..530499e 100644 --- a/external/ntpclient/Make.defs +++ b/external/ntpclient/Make.defs @@ -15,8 +15,8 @@ # language governing permissions and limitations under the License. # ########################################################################### -# apps/netutils/ntpclient/Make.defs -# Adds selected applications to apps/ build +# external/ntpclient/Make.defs +# Adds selected applications to external/ build # # Copyright (C) 2016 Gregory Nutt. All rights reserved. # Author: Gregory Nutt diff --git a/external/ntpclient/Makefile b/external/ntpclient/Makefile index 96efac5..d9b9ed3 100644 --- a/external/ntpclient/Makefile +++ b/external/ntpclient/Makefile @@ -16,7 +16,7 @@ # ########################################################################### ############################################################################ -# apps/netutils/ntpclient/Makefile +# external/ntpclient/Makefile # # Copyright (C) 2014 Gregory Nutt. All rights reserved. # Author: Gregory Nutt diff --git a/external/ntpclient/ntpv3.h b/external/ntpclient/ntpv3.h index c3f5758..a8d5e74 100644 --- a/external/ntpclient/ntpv3.h +++ b/external/ntpclient/ntpv3.h @@ -16,7 +16,7 @@ * ****************************************************************************/ /**************************************************************************** - * apps/netutils/ntpclient/ntpv3.h + * external/ntpclient/ntpv3.h * * Copyright (C) 2014 Gregory Nutt. All rights reserved. * Author: Gregory Nutt diff --git a/external/slsi_wifi/Make.defs b/external/slsi_wifi/Make.defs index c300667..f142e5c 100644 --- a/external/slsi_wifi/Make.defs +++ b/external/slsi_wifi/Make.defs @@ -15,8 +15,8 @@ # language governing permissions and limitations under the License. # ########################################################################### -# apps/netutils/dhcpd/Make.defs -# Adds selected applications to apps/ build +# external/dhcpd/Make.defs +# Adds selected applications to external/ build # # Copyright (C) 2016 Gregory Nutt. All rights reserved. # Author: Gregory Nutt diff --git a/external/smtp/Make.defs b/external/smtp/Make.defs index 646d88d..1e9c710 100644 --- a/external/smtp/Make.defs +++ b/external/smtp/Make.defs @@ -15,8 +15,8 @@ # language governing permissions and limitations under the License. # ########################################################################### -# apps/netutils/smtp/Make.defs -# Adds selected applications to apps/ build +# external/smtp/Make.defs +# Adds selected applications to external/ build # # Copyright (C) 2016 Gregory Nutt. All rights reserved. # Author: Gregory Nutt diff --git a/external/smtp/Makefile b/external/smtp/Makefile index 6bcaf9e..857824d 100644 --- a/external/smtp/Makefile +++ b/external/smtp/Makefile @@ -16,7 +16,7 @@ # ########################################################################### ############################################################################ -# apps/netutils/smtp/Makefile +# external/smtp/Makefile # # Copyright (C) 2011-2012 Gregory Nutt. All rights reserved. # Author: Gregory Nutt diff --git a/external/telnetd/Make.defs b/external/telnetd/Make.defs index bee0365..c6b7d14 100644 --- a/external/telnetd/Make.defs +++ b/external/telnetd/Make.defs @@ -15,8 +15,8 @@ # language governing permissions and limitations under the License. # ########################################################################### -# apps/netutils/telnetd/Make.defs -# Adds selected applications to apps/ build +# external/telnetd/Make.defs +# Adds selected applications to external/ build # # Copyright (C) 2016 Gregory Nutt. All rights reserved. # Author: Gregory Nutt diff --git a/external/telnetd/Makefile b/external/telnetd/Makefile index 97cf0ca..ce3fb1c 100644 --- a/external/telnetd/Makefile +++ b/external/telnetd/Makefile @@ -16,7 +16,7 @@ # ########################################################################### ############################################################################ -# apps/netutils/telnetd/Makefile +# external/telnetd/Makefile # # Copyright (C) 2011-2012 Gregory Nutt. All rights reserved. # Author: Gregory Nutt diff --git a/external/tftpc/Make.defs b/external/tftpc/Make.defs index 5619ca8..67b6216 100644 --- a/external/tftpc/Make.defs +++ b/external/tftpc/Make.defs @@ -15,8 +15,8 @@ # language governing permissions and limitations under the License. # ########################################################################### -# apps/netutils/tftpc/Make.defs -# Adds selected applications to apps/ build +# external/tftpc/Make.defs +# Adds selected applications to external/ build # # Copyright (C) 2016 Gregory Nutt. All rights reserved. # Author: Gregory Nutt diff --git a/external/tftpc/Makefile b/external/tftpc/Makefile index 78c7a85..02c2e62 100644 --- a/external/tftpc/Makefile +++ b/external/tftpc/Makefile @@ -16,7 +16,7 @@ # ########################################################################### ############################################################################ -# apps/netutils/tftpc/Makefile +# external/tftpc/Makefile # # Copyright (C) 2011-2012 Gregory Nutt. All rights reserved. # Author: Gregory Nutt diff --git a/external/webclient/Make.defs b/external/webclient/Make.defs index 39880f9..d481dd3 100644 --- a/external/webclient/Make.defs +++ b/external/webclient/Make.defs @@ -15,8 +15,8 @@ # language governing permissions and limitations under the License. # ########################################################################### -# apps/netutils/webclient/Make.defs -# Adds selected applications to apps/ build +# external/webclient/Make.defs +# Adds selected applications to external/ build # # Copyright (C) 2016 Gregory Nutt. All rights reserved. # Author: Gregory Nutt diff --git a/external/webclient/Makefile b/external/webclient/Makefile index a4b9ce1..16f37d5 100644 --- a/external/webclient/Makefile +++ b/external/webclient/Makefile @@ -16,7 +16,7 @@ # ########################################################################### ############################################################################ -# apps/netutils/webclient/Makefile +# external/webclient/Makefile # # Copyright (C) 2011-2012 Gregory Nutt. All rights reserved. # Author: Gregory Nutt diff --git a/external/webserver/Make.defs b/external/webserver/Make.defs index 6ce4e51..d061a73 100644 --- a/external/webserver/Make.defs +++ b/external/webserver/Make.defs @@ -15,8 +15,8 @@ # language governing permissions and limitations under the License. # ########################################################################### -# apps/netutils/webserver/Make.defs -# Adds selected applications to apps/ build +# external/webserver/Make.defs +# Adds selected applications to external/ build # # Copyright (C) 2016 Gregory Nutt. All rights reserved. # Author: Gregory Nutt diff --git a/external/webserver/Makefile b/external/webserver/Makefile index 73635fe..a5c2a08 100644 --- a/external/webserver/Makefile +++ b/external/webserver/Makefile @@ -16,7 +16,7 @@ # ########################################################################### ############################################################################ -# apps/netutils/webserver/Makefile +# external/webserver/Makefile # # Copyright (C) 2011-2012 Gregory Nutt. All rights reserved. # Author: Gregory Nutt diff --git a/external/websocket/Makefile b/external/websocket/Makefile index 82ca87b..f5ebd5d 100644 --- a/external/websocket/Makefile +++ b/external/websocket/Makefile @@ -16,7 +16,7 @@ # ########################################################################### ############################################################################ -# apps/netutils/websocket/Makefile +# external/websocket/Makefile # # Copyright (C) 2011-2012 Gregory Nutt. All rights reserved. # Author: Gregory Nutt diff --git a/external/xmlrpc/Make.defs b/external/xmlrpc/Make.defs index c110fd0..c9b4cab 100644 --- a/external/xmlrpc/Make.defs +++ b/external/xmlrpc/Make.defs @@ -16,8 +16,8 @@ # ########################################################################### -# apps/netutils/xmlrpc/Make.defs -# Adds selected applications to apps/ build +# external/xmlrpc/Make.defs +# Adds selected applications to external/ build # # Copyright (C) 2016 Gregory Nutt. All rights reserved. # Author: Gregory Nutt diff --git a/external/xmlrpc/Makefile b/external/xmlrpc/Makefile index ae496bc..0c79ea3 100644 --- a/external/xmlrpc/Makefile +++ b/external/xmlrpc/Makefile @@ -16,7 +16,7 @@ # ########################################################################### ############################################################################ -# apps/netutils/xmlrpc/Makefile +# external/xmlrpc/Makefile # # Copyright (C) 2012 Max Holtzberg. All rights reserved. # Copyright (C) 2011-2012 Gregory Nutt. All rights reserved. diff --git a/external/xmlrpc/response.c b/external/xmlrpc/response.c index 94d283a..68e10cf 100644 --- a/external/xmlrpc/response.c +++ b/external/xmlrpc/response.c @@ -16,7 +16,7 @@ * ****************************************************************************/ /**************************************************************************** - * apps/netutils/xmlrpc/response.c + * external/xmlrpc/response.c * * Copyright (C) 2012 Max Holtzberg. All rights reserved. * Author: Max Holtzberg diff --git a/external/xmlrpc/xmlparser.c b/external/xmlrpc/xmlparser.c index c7443d3..96e6cf6 100644 --- a/external/xmlrpc/xmlparser.c +++ b/external/xmlrpc/xmlparser.c @@ -16,7 +16,7 @@ * ****************************************************************************/ /**************************************************************************** - * apps/netutils/xmlrpc/xmlparser.c + * external/xmlrpc/xmlparser.c * * Copyright (C) 2012 Max Holtzberg. All rights reserved. * Author: Max Holtzberg diff --git a/framework/src/mqtt/Make.defs b/framework/src/mqtt/Make.defs index 5e1263a..018ee57 100644 --- a/framework/src/mqtt/Make.defs +++ b/framework/src/mqtt/Make.defs @@ -15,8 +15,8 @@ # language governing permissions and limitations under the License. # ########################################################################### -# apps/netutils/mqtt/Make.defs -# Adds selected applications to apps/ build +# external/mqtt/Make.defs +# Adds selected applications to external/ build # # Copyright (C) 2016 Gregory Nutt. All rights reserved. # Author: Gregory Nutt diff --git a/framework/src/mqtt/Makefile b/framework/src/mqtt/Makefile index 299b34c..afd60d4 100644 --- a/framework/src/mqtt/Makefile +++ b/framework/src/mqtt/Makefile @@ -16,7 +16,7 @@ # ########################################################################### ############################################################################ -# apps/netutils/mqtt/Makefile +# external/mqtt/Makefile # # Copyright (C) 2014 Gregory Nutt. All rights reserved. # Author: Gregory Nutt -- 2.7.4