From 09ccfa2a6a8f8df55c7d808f5ad26324ac1e81b6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?P=C3=A9ter=20Dimitrov?= Date: Tue, 20 Mar 2018 11:26:01 +0100 Subject: inets,tftp: Break out TFTP from inets - Create directory structure - Move code, tests, documentation from inets - Add inets_tftp_wrapper - Add tftp app to run-dialyzer script Change-Id: I6a142ae66cecb9a1821cbf9ea6a45f66a836763d --- lib/tftp/src/tftp.app.src | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 lib/tftp/src/tftp.app.src (limited to 'lib/tftp/src/tftp.app.src') diff --git a/lib/tftp/src/tftp.app.src b/lib/tftp/src/tftp.app.src new file mode 100644 index 0000000000..3f008573e8 --- /dev/null +++ b/lib/tftp/src/tftp.app.src @@ -0,0 +1,22 @@ +{application, tftp, + [{description, "TFTP application"}, + {vsn, "1.0.0"}, + {registered, []}, + {mod, { tftp_app, []}}, + {applications, + [kernel, + stdlib + ]}, + {env,[]}, + {modules, [ + tftp, + tftp_app, + tftp_binary, + tftp_engine, + tftp_file, + tftp_lib, + tftp_logger, + tftp_sup + ]}, + {runtime_dependencies, ["stdlib-3.5","kernel-6.0"]} + ]}. -- cgit v1.2.3 From 69a8c892675884f46381a463d8ec81343f0af646 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?P=C3=A9ter=20Dimitrov?= Date: Wed, 28 Mar 2018 11:44:50 +0200 Subject: ftp,tftp: Update initial version 1.0.0 -> 1.0 Change-Id: I014b191da144c299d056eb155ed99ace710112b1 --- lib/tftp/src/tftp.app.src | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/tftp/src/tftp.app.src') diff --git a/lib/tftp/src/tftp.app.src b/lib/tftp/src/tftp.app.src index 3f008573e8..2a87d39ada 100644 --- a/lib/tftp/src/tftp.app.src +++ b/lib/tftp/src/tftp.app.src @@ -1,6 +1,6 @@ {application, tftp, [{description, "TFTP application"}, - {vsn, "1.0.0"}, + {vsn, "1.0"}, {registered, []}, {mod, { tftp_app, []}}, {applications, -- cgit v1.2.3