From f23e6a6ba8db5801548c022b3e320d615ce34de5 Mon Sep 17 00:00:00 2001 From: schulz Date: Wed, 30 Jan 2019 19:59:57 +0000 Subject: [PATCH] moved hello from boot to the top, before LED debug is written git-svn-id: https://svn.aros.org/svn/aros/trunk/AROS@55593 fb15a70f-31f2-0310-bbcc-cdcc74a49acc --- arch/armeb-raspi/boot/boot.c | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/arch/armeb-raspi/boot/boot.c b/arch/armeb-raspi/boot/boot.c index bc4514899f..b311b71571 100644 --- a/arch/armeb-raspi/boot/boot.c +++ b/arch/armeb-raspi/boot/boot.c @@ -216,6 +216,9 @@ void boot(uintptr_t dummy, uintptr_t arch, struct tag * atags, uintptr_t a) serInit(); + kprintf("\n\n[BOOT] Big-Endian AROS %s\n", bootstrapName); + kprintf("[BOOT] Booted on %s\n", dt_find_property(dt_find_node("/"), "model")->op_value); + /* first of all, store the arch for the kernel to use .. */ boottag->ti_Tag = KRN_Platform; boottag->ti_Data = (IPTR)arch; @@ -277,9 +280,6 @@ void boot(uintptr_t dummy, uintptr_t arch, struct tag * atags, uintptr_t a) boottag++; } - kprintf("[BOOT] Big-Endian AROS %s\n", bootstrapName); - kprintf("[BOOT] Arguments: %08x, %08x, %08x, %08x\n", dummy, arch, atags, a); - DBOOT({ kprintf("[BOOT] UART clock speed: %d\n", uartclock); kprintf("[BOOT] using %d.%d divisor for %d baud\n", uartdivint, uartdivfrac, uartbaud); @@ -291,8 +291,6 @@ void boot(uintptr_t dummy, uintptr_t arch, struct tag * atags, uintptr_t a) kprintf("[BOOT] main id register: %08x\n", tmp); }) - kprintf("[BOOT] Booted on %s\n", dt_find_property(dt_find_node("/"), "model")->op_value); - query_memory(); query_vmem(); -- 2.11.4.GIT