qemu-arm
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-arm] [PATCH] Fix the ARM bootloader so that r0 is always 0 before


From: Sylvain Garrigues
Subject: [Qemu-arm] [PATCH] Fix the ARM bootloader so that r0 is always 0 before jumping to the kernel entry point
Date: Wed, 20 Apr 2016 23:35:28 +0200

Signed-off-by: Sylvain Garrigues <address@hidden>
---
 hw/arm/boot.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/hw/arm/boot.c b/hw/arm/boot.c
index 5975fbf..5876945 100644
--- a/hw/arm/boot.c
+++ b/hw/arm/boot.c
@@ -68,7 +68,7 @@ static const ARMInsnFixup bootloader_aarch64[] = {
  */
 
 static const ARMInsnFixup bootloader[] = {
-    { 0xe28fe008 }, /* add     lr, pc, #8 */
+    { 0xe28fe004 }, /* add     lr, pc, #4 */
     { 0xe51ff004 }, /* ldr     pc, [pc, #-4] */
     { 0, FIXUP_BOARD_SETUP },
 #define BOOTLOADER_NO_BOARD_SETUP_OFFSET 3
-- 
2.8.1




reply via email to

[Prev in Thread] Current Thread [Next in Thread]