mirror of
https://github.com/AsahiLinux/u-boot
synced 2025-02-16 14:08:45 +00:00
cmd: consider multiplexing in coninfo
If console multiplexing in enabled (CONFIG_CONSOLE_MUX=y), the output of the coninfo command should show the file association (stdin, stderr, stdout) for all devices not only the default ones. Signed-off-by: Heinrich Schuchardt <heinrich.schuchardt@canonical.com> Reviewed-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
parent
6fc4fc38ac
commit
d9d07d751e
1 changed files with 9 additions and 2 deletions
|
@ -9,6 +9,7 @@
|
||||||
*/
|
*/
|
||||||
#include <common.h>
|
#include <common.h>
|
||||||
#include <command.h>
|
#include <command.h>
|
||||||
|
#include <iomux.h>
|
||||||
#include <stdio_dev.h>
|
#include <stdio_dev.h>
|
||||||
|
|
||||||
extern void _do_coninfo (void);
|
extern void _do_coninfo (void);
|
||||||
|
@ -33,9 +34,15 @@ static int do_coninfo(struct cmd_tbl *cmd, int flag, int argc,
|
||||||
(dev->flags & DEV_FLAGS_OUTPUT) ? "O" : "");
|
(dev->flags & DEV_FLAGS_OUTPUT) ? "O" : "");
|
||||||
|
|
||||||
for (l = 0; l < MAX_FILES; l++) {
|
for (l = 0; l < MAX_FILES; l++) {
|
||||||
if (stdio_devices[l] == dev) {
|
if (CONFIG_IS_ENABLED(CONSOLE_MUX)) {
|
||||||
printf("| |-- %s\n", stdio_names[l]);
|
if (iomux_match_device(console_devices[l],
|
||||||
|
cd_count[l], dev) >= 0)
|
||||||
|
printf("| |-- %s\n", stdio_names[l]);
|
||||||
|
} else {
|
||||||
|
if (stdio_devices[l] == dev)
|
||||||
|
printf("| |-- %s\n", stdio_names[l]);
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return 0;
|
return 0;
|
||||||
|
|
Loading…
Add table
Reference in a new issue