diff options
author | Jan Luebbe <jlu@pengutronix.de> | 2012-10-04 15:27:55 +0200 |
---|---|---|
committer | Sascha Hauer <s.hauer@pengutronix.de> | 2013-01-09 10:32:54 +0100 |
commit | 964893b34b829760d81988af79a0cb0766ddc119 (patch) | |
tree | 58b6def4844a4ccbb7491f62bb9bfb9fbb783ddb /commands/Makefile | |
parent | b46b57f35a27090cfbac4900d1a3d522d7898e53 (diff) | |
download | barebox-964893b34b829760d81988af79a0cb0766ddc119.tar.gz |
commands: add let command which supports proper arithmetic
This command works like the corresponding Unix shell command and
is used for adding, multiplying and much more.
Signed-off-by: Jan Luebbe <jlu@pengutronix.de>
Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'commands/Makefile')
-rw-r--r-- | commands/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/commands/Makefile b/commands/Makefile index effc91b15a..d9a62943c5 100644 --- a/commands/Makefile +++ b/commands/Makefile @@ -74,6 +74,7 @@ obj-$(CONFIG_CMD_GLOBAL) += global.o obj-$(CONFIG_CMD_BASENAME) += basename.o obj-$(CONFIG_CMD_DIRNAME) += dirname.o obj-$(CONFIG_CMD_READLINK) += readlink.o +obj-$(CONFIG_CMD_LET) += let.o obj-$(CONFIG_CMD_LN) += ln.o obj-$(CONFIG_CMD_CLK) += clk.o obj-$(CONFIG_CMD_TFTP) += tftp.o |