mirror of
https://git.yoctoproject.org/poky
synced 2026-04-21 03:32:12 +02:00
uboot-sign: set load address and entrypoint
According to the design of uboot-sign.bbclass and kernel-fitimage.bbclass, both of them use an UBOOT_LOADADDRESS variable to set the load address of kernel and u-boot image and use an UBOOT_ENTRYPOINT variable to set the entry address of kernel and u-boot image. However, users may want to set the different load address of u-boot and kernel image. Therefore, adds UBOOT_FIT_UBOOT_LOADADDRESS and UBOOT_FIT_UBOOT_ENTRYPOINT variables to set the load address and entry point of u-boot image, respectively. The value of UBOOT_FIT_UBOOT_ENTRYPOINT is UBOOT_LOADADDRESS by default. The value of UBOOT_FIT_UBOOT_ENTRYPOINT is UBOOT_ENTRYPOINT by default. (From OE-Core rev: 2060691a56b45f746efdd04ccdae3fb74df60cb5) Signed-off-by: Jamin Lin <jamin_lin@aspeedtech.com> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
20fd415a5a
commit
a3c69c088e
@@ -88,6 +88,9 @@ UBOOT_FIT_ADDRESS_CELLS ?= "1"
|
||||
# This is only necessary for determining the signing configuration
|
||||
KERNEL_PN = "${PREFERRED_PROVIDER_virtual/kernel}"
|
||||
|
||||
UBOOT_FIT_UBOOT_LOADADDRESS ?= "${UBOOT_LOADADDRESS}"
|
||||
UBOOT_FIT_UBOOT_ENTRYPOINT ?= "${UBOOT_ENTRYPOINT}"
|
||||
|
||||
python() {
|
||||
# We need u-boot-tools-native if we're creating a U-Boot fitImage
|
||||
sign = d.getVar('UBOOT_SIGN_ENABLE') == '1'
|
||||
@@ -248,8 +251,8 @@ uboot_fitimage_assemble() {
|
||||
os = "u-boot";
|
||||
arch = "${UBOOT_ARCH}";
|
||||
compression = "none";
|
||||
load = <${UBOOT_LOADADDRESS}>;
|
||||
entry = <${UBOOT_ENTRYPOINT}>;
|
||||
load = <${UBOOT_FIT_UBOOT_LOADADDRESS}>;
|
||||
entry = <${UBOOT_FIT_UBOOT_ENTRYPOINT}>;
|
||||
EOF
|
||||
|
||||
if [ "${SPL_SIGN_ENABLE}" = "1" ] ; then
|
||||
|
||||
Reference in New Issue
Block a user