Whether or not the user wishes devicetree probe support can now be decided indepentently of the oftree command, so retire the CMD_OFTREE_PROBE option and use OFDEVICE in the code instead.
Signed-off-by: Sascha Hauer <s.ha...@pengutronix.de> --- commands/Kconfig | 7 ------- commands/oftree.c | 2 +- 2 files changed, 1 insertion(+), 8 deletions(-) diff --git a/commands/Kconfig b/commands/Kconfig index c8f06d8..0062758 100644 --- a/commands/Kconfig +++ b/commands/Kconfig @@ -486,13 +486,6 @@ config CMD_OFTREE The oftree command has support for dumping devicetrees and, if enabled, to probe devices from the devicetree -config CMD_OFTREE_PROBE - bool - depends on CMD_OFTREE - prompt "oftree probe support" - help - This enables the -p option to probe devices from the devicetree - config CMD_OF_PROPERTY tristate select OFTREE diff --git a/commands/oftree.c b/commands/oftree.c index 612d01a..e4f52b8 100644 --- a/commands/oftree.c +++ b/commands/oftree.c @@ -64,7 +64,7 @@ static int do_oftree(int argc, char *argv[]) dump = 1; break; case 'p': - if (IS_ENABLED(CONFIG_CMD_OFTREE_PROBE)) { + if (IS_ENABLED(CONFIG_OFDEVICE)) { probe = 1; } else { printf("oftree device probe support disabled\n"); -- 1.7.10.4 _______________________________________________ barebox mailing list barebox@lists.infradead.org http://lists.infradead.org/mailman/listinfo/barebox