summaryrefslogtreecommitdiffstats
path: root/commands/of_node.c
diff options
context:
space:
mode:
authorSascha Hauer <s.hauer@pengutronix.de>2014-05-19 13:55:48 +0200
committerSascha Hauer <s.hauer@pengutronix.de>2014-05-19 22:23:56 +0200
commite275b2653f87dc6969b3c0baf6f0e7460c62a8db (patch)
tree59a870d2c340091d3a8546475992282d57ec306a /commands/of_node.c
parente5c59c386784d9c52505823ee293c94f633a8744 (diff)
downloadbarebox-e275b2653f87dc6969b3c0baf6f0e7460c62a8db.tar.gz
barebox-e275b2653f87dc6969b3c0baf6f0e7460c62a8db.tar.xz
complete: Add devicetree completion
The of_* commands take devicetree nodes as parameters. Add a devicetree completion function to ease passing nodes to these commands. Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'commands/of_node.c')
-rw-r--r--commands/of_node.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/commands/of_node.c b/commands/of_node.c
index 901da88735..4962e52429 100644
--- a/commands/of_node.c
+++ b/commands/of_node.c
@@ -21,6 +21,7 @@
#include <environment.h>
#include <fdt.h>
#include <of.h>
+#include <complete.h>
#include <command.h>
#include <fs.h>
#include <malloc.h>
@@ -104,5 +105,6 @@ BAREBOX_CMD_START(of_node)
BAREBOX_CMD_DESC("create/delete nodes in the device tree")
BAREBOX_CMD_OPTS("[-cd] NODE NAME")
BAREBOX_CMD_GROUP(CMD_GRP_MISC)
+ BAREBOX_CMD_COMPLETE(devicetree_complete)
BAREBOX_CMD_HELP(cmd_of_node_help)
BAREBOX_CMD_END