summaryrefslogtreecommitdiffstats
path: root/commands/Makefile
diff options
context:
space:
mode:
authorSascha Hauer <s.hauer@pengutronix.de>2012-09-24 00:38:25 +0200
committerSascha Hauer <s.hauer@pengutronix.de>2012-10-04 15:19:55 +0200
commitc797f3c168e2c3fd8bc9532680b7c587652ac8c1 (patch)
tree4a531e6dc975f9c0f6a0a1e2247ebabbea110989 /commands/Makefile
parentf2e2e596a221c146082821aa4d9ae249fe9d561a (diff)
downloadbarebox-c797f3c168e2c3fd8bc9532680b7c587652ac8c1.tar.gz
barebox-c797f3c168e2c3fd8bc9532680b7c587652ac8c1.tar.xz
commands: Add clk commands
This adds some basic commands to manupulate clocks on the command line. Right now we have: - clk_set_parent - clk_set_rate - clk_enable - clk_disable - clk_dump The commands work based on the clock name, otherwise they behave like the Linux Kernel C functions. clk_dump will dump the clocktree to the console. 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 bd2dfaa735..610be55c6a 100644
--- a/commands/Makefile
+++ b/commands/Makefile
@@ -74,4 +74,5 @@ 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_CLK) += clk.o
obj-$(CONFIG_CMD_TFTP) += tftp.o