summaryrefslogtreecommitdiffstats
path: root/commands/Makefile
diff options
context:
space:
mode:
authorSascha Hauer <s.hauer@pengutronix.de>2012-09-27 14:37:12 +0200
committerSascha Hauer <s.hauer@pengutronix.de>2012-09-28 16:23:43 +0200
commit4183b9ab586b7aa74d6a00bbf4db13384b707bde (patch)
tree01153e63c430864d3955a59cd370619702de13da /commands/Makefile
parent1af6fdcd03dbc311d785625bd6e2329f7ce1adb7 (diff)
downloadbarebox-4183b9ab586b7aa74d6a00bbf4db13384b707bde.tar.gz
barebox-4183b9ab586b7aa74d6a00bbf4db13384b707bde.tar.xz
net: Add tftp command which uses the new tftp code
Traditionally tftp is a command of its own. Since we can mount tftp as a filesystem we have duplicated the tftp code, the old code is used by the tftp command, the new by the filesystem support. This adds a tftp command based on the filesystem support to preserve backward compatibility. This allows us to remove the old tftp support in the next step. Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'commands/Makefile')
-rw-r--r--commands/Makefile1
1 files changed, 1 insertions, 0 deletions
diff --git a/commands/Makefile b/commands/Makefile
index ccebd7f559..67d102bf3f 100644
--- a/commands/Makefile
+++ b/commands/Makefile
@@ -74,3 +74,4 @@ obj-$(CONFIG_CMD_BASENAME) += basename.o
obj-$(CONFIG_CMD_DIRNAME) += dirname.o
obj-$(CONFIG_CMD_READLINK) += readlink.o
obj-$(CONFIG_CMD_LN) += ln.o
+obj-$(CONFIG_CMD_TFTP) += tftp.o