From 3eeaa1692166fe589cfa98a5adca137ea602ee0f Mon Sep 17 00:00:00 2001 From: NicJA Date: Fri, 8 Feb 2013 21:22:35 +0000 Subject: [PATCH] reduce bootstrap output a little more git-svn-id: https://svn.aros.org/svn/aros/trunk/AROS@46548 fb15a70f-31f2-0310-bbcc-cdcc74a49acc --- arch/arm-raspi/boot/boot.c | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/arch/arm-raspi/boot/boot.c b/arch/arm-raspi/boot/boot.c index df8240a681..b06144e2ec 100644 --- a/arch/arm-raspi/boot/boot.c +++ b/arch/arm-raspi/boot/boot.c @@ -251,7 +251,7 @@ void boot(uintptr_t dummy, uintptr_t arch, struct tag * atags) const uint8_t *file_end = base+total_length; uint32_t len; - kprintf("[BOOT] Package size: %dKB\n", total_length >> 10); + kprintf("[BOOT] Package size: %dKB", total_length >> 10); file = base + 8; @@ -262,7 +262,10 @@ void boot(uintptr_t dummy, uintptr_t arch, struct tag * atags) /* get text length */ len = AROS_BE2LONG(*(uint32_t*)file); /* display the file name */ - kprintf("[BOOT] %s\n", filename); + if (cnt % 4 == 0) + kprintf("\n[BOOT] %s", filename); + else + kprintf(", %s", filename); file += len + 5; @@ -278,6 +281,7 @@ void boot(uintptr_t dummy, uintptr_t arch, struct tag * atags) /* go to the next file */ file += len; } + kprintf("\n"); } } -- 2.11.4.GIT