summaryrefslogtreecommitdiffstats
path: root/commands/boot.c
diff options
context:
space:
mode:
Diffstat (limited to 'commands/boot.c')
-rw-r--r--commands/boot.c18
1 files changed, 4 insertions, 14 deletions
diff --git a/commands/boot.c b/commands/boot.c
index f2d983684c..21623655ed 100644
--- a/commands/boot.c
+++ b/commands/boot.c
@@ -132,25 +132,15 @@ static void bootsources_list(void)
blspec = bootentries_collect();
- printf("\nBootscripts:\n\n");
- printf("%-40s %-20s\n", "name", "title");
- printf("%-40s %-20s\n", "----", "-----");
+ printf("%-20s %-20s %s\n", "device", "hwdevice", "title");
+ printf("%-20s %-20s %s\n", "------", "--------", "-----");
blspec_for_each_entry(blspec, entry) {
if (entry->scriptpath)
printf("%-40s %s\n", basename(entry->scriptpath), entry->me.display);
- }
-
- if (!IS_ENABLED(CONFIG_BLSPEC))
- return;
-
- printf("\nBootloader spec entries:\n\n");
- printf("%-20s %-20s %s\n", "device", "hwdevice", "title");
- printf("%-20s %-20s %s\n", "------", "--------", "-----");
-
- blspec_for_each_entry(blspec, entry)
- if (!entry->scriptpath)
+ else
printf("%s\n", entry->me.display);
+ }
blspec_free(blspec);
}