diff options
Diffstat (limited to 'utils/hwstub/tools')
-rw-r--r-- | utils/hwstub/tools/hwstub_shell.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/utils/hwstub/tools/hwstub_shell.cpp b/utils/hwstub/tools/hwstub_shell.cpp index 347793df86..a852e0f515 100644 --- a/utils/hwstub/tools/hwstub_shell.cpp +++ b/utils/hwstub/tools/hwstub_shell.cpp | |||
@@ -1349,7 +1349,8 @@ void load_std_desc(std::vector< soc_desc::soc_t >& socs) | |||
1349 | printf("Cannot load description file '%s'\n", file.c_str()); | 1349 | printf("Cannot load description file '%s'\n", file.c_str()); |
1350 | socs.pop_back(); | 1350 | socs.pop_back(); |
1351 | } | 1351 | } |
1352 | print_context(file, ctx); | 1352 | if(!g_quiet) |
1353 | print_context(file, ctx); | ||
1353 | } | 1354 | } |
1354 | closedir(dir); | 1355 | closedir(dir); |
1355 | } | 1356 | } |
@@ -1430,7 +1431,8 @@ int main(int argc, char **argv) | |||
1430 | printf("Cannot load description file '%s'\n", argv[i]); | 1431 | printf("Cannot load description file '%s'\n", argv[i]); |
1431 | socs.pop_back(); | 1432 | socs.pop_back(); |
1432 | } | 1433 | } |
1433 | print_context(argv[i], ctx); | 1434 | if(!g_quiet) |
1435 | print_context(argv[i], ctx); | ||
1434 | } | 1436 | } |
1435 | /* load standard desc files */ | 1437 | /* load standard desc files */ |
1436 | load_std_desc(socs); | 1438 | load_std_desc(socs); |