9
0
Fork 0

sysmocom: set the default load address to 0x81000000

This solves a problem which causes boot failure when using a uImage with
device tree. It should also speed up boot because the kernel can skip
copying itself out of the way.

Signed-off-by: Jan Luebbe <jluebbe@debian.org>
This commit is contained in:
Jan Luebbe 2015-06-15 14:13:33 +02:00 committed by Holger Hans Peter Freyther
parent 7fd1e0f4dc
commit 86b097442e
8 changed files with 8 additions and 0 deletions

View File

@ -1,6 +1,7 @@
#!/bin/sh
global bootm.image=/mnt/rescue/boot/uImage
global bootm.image.loadaddr=0x81000000
#global bootm.oftree=<path to oftree>
#global bootm.initrd=<path to initrd>

View File

@ -1,6 +1,7 @@
#!/bin/sh
global bootm.image=/mnt/tftp/linux/arch/arm/boot/zImage
global bootm.image.loadaddr=0x81000000
#global bootm.oftree=<path to oftree>
#global bootm.initrd=<path to initrd>

View File

@ -1,6 +1,7 @@
#!/bin/sh
global bootm.image=/mnt/system0/kernel
global bootm.image.loadaddr=0x81000000
if [ -e /mnt/system0/devicetree ]; then
global bootm.oftree=/mnt/system0/devicetree
fi

View File

@ -1,6 +1,7 @@
#!/bin/sh
global bootm.image=/mnt/system1/kernel
global bootm.image.loadaddr=0x81000000
if [ -e /mnt/system1/devicetree ]; then
global bootm.oftree=/mnt/system1/devicetree
fi

View File

@ -1,6 +1,7 @@
#!/bin/sh
global bootm.image=/mnt/rescue/boot/uImage
global bootm.image.loadaddr=0x81000000
if [ -e /mnt/rescue/devicetree ]; then
global bootm.oftree=/mnt/rescue/devicetree
fi

View File

@ -1,6 +1,7 @@
#!/bin/sh
global bootm.image=/mnt/tftp/linux/arch/arm/boot/zImage
global bootm.image.loadaddr=0x81000000
#global bootm.oftree=<path to oftree>
#global bootm.initrd=<path to initrd>

View File

@ -1,6 +1,7 @@
#!/bin/sh
global bootm.image=/mnt/system0/kernel
global bootm.image.loadaddr=0x81000000
if [ -e /mnt/system0/devicetree ]; then
global bootm.oftree=/mnt/system0/devicetree
fi

View File

@ -1,6 +1,7 @@
#!/bin/sh
global bootm.image=/mnt/system1/kernel
global bootm.image.loadaddr=0x81000000
if [ -e /mnt/system1/devicetree ]; then
global bootm.oftree=/mnt/system1/devicetree
fi