From 2a7167e9ce3517e853020b7fd8960d20660df2d1 Mon Sep 17 00:00:00 2001 From: Sir Richard Date: Tue, 23 Nov 2010 16:44:19 +0000 Subject: [PATCH] [ARMLLB]: Initialize hardware before parsing environment variables. This makes more sense, and also allows debug output from the environment scanning code. svn path=/trunk/; revision=49737 --- reactos/boot/armllb/main.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/reactos/boot/armllb/main.c b/reactos/boot/armllb/main.c index e18ae4cd2b7..83c562252d4 100755 --- a/reactos/boot/armllb/main.c +++ b/reactos/boot/armllb/main.c @@ -16,17 +16,17 @@ LlbStartup(IN ULONG Reserved, /* Make sure we are booting on the correct kind of machine */ if (BoardInfo != LlbHwGetBoardType()) while (TRUE); - /* Either QEMU or U-Boot itself should send this information */ - LlbEnvParseArguments(Arguments); - /* Initialize hardware components */ LlbHwInitialize(); + /* Either QEMU or U-Boot itself should send this information */ + LlbEnvParseArguments(Arguments); + /* Clean up the screen */ LlbVideoClearScreen(FALSE); /* Print header */ - printf("ReactOS ARM Low-Level Boot Loader [" __DATE__ " "__TIME__ "]\n"); + printf("\nReactOS ARM Low-Level Boot Loader [" __DATE__ " "__TIME__ "]\n"); /* Boot the OS Loader */ LlbBoot();