All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 01/10] ls1043ardb:update u-boot configs
@ 2017-10-19  8:31 Chunrong Guo
  2017-10-19  8:31 ` [PATCH 02/10] ls1046ardb: update " Chunrong Guo
                   ` (9 more replies)
  0 siblings, 10 replies; 11+ messages in thread
From: Chunrong Guo @ 2017-10-19  8:31 UTC (permalink / raw)
  To: meta-freescale; +Cc: chunrong.guo

From: Chunrong Guo <chunrong.guo@nxp.com>

*nand boot and sdcard boot need the below binary for secure boot
  u-boot-spl.bin and u-boot-dtb.bin

Signed-off-by: Chunrong Guo <chunrong.guo@nxp.com>
---
 conf/machine/ls1043ardb.conf | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/conf/machine/ls1043ardb.conf b/conf/machine/ls1043ardb.conf
index 05431db..500461e 100644
--- a/conf/machine/ls1043ardb.conf
+++ b/conf/machine/ls1043ardb.conf
@@ -15,13 +15,17 @@ KERNEL_IMAGETYPES = "itbImage"
 
 UBOOT_ENTRYPOINT = "0x80080000"
 
-UBOOT_CONFIG ??= "nand sdcard secure-boot nand-secure-boot sdcard-secure-boot nor"
+UBOOT_CONFIG ??= "nand sdcard secure-boot nand-dtb-secure-boot nand-spl-secure-boot nand-secure-boot sdcard-dtb-secure-boot sdcard-spl-secure-boot sdcard-secure-boot nor"
 UBOOT_CONFIG[nor] = "ls1043ardb_config,,u-boot-dtb.bin"
 UBOOT_CONFIG[nand] = "ls1043ardb_nand_config,,u-boot-with-spl-pbl.bin"
 UBOOT_CONFIG[sdcard] = "ls1043ardb_sdcard_config,,u-boot-with-spl-pbl.bin"
 UBOOT_CONFIG[secure-boot] = "ls1043ardb_SECURE_BOOT_defconfig,,u-boot-dtb.bin"
 UBOOT_CONFIG[nand-secure-boot] = "ls1043ardb_nand_SECURE_BOOT_defconfig,,u-boot-with-spl-pbl.bin"
+UBOOT_CONFIG[nand-spl-secure-boot] = "ls1043ardb_nand_SECURE_BOOT_defconfig,,spl/u-boot-spl.bin"
+UBOOT_CONFIG[nand-dtb-secure-boot] = "ls1043ardb_nand_SECURE_BOOT_defconfig,,u-boot-dtb.bin"
 UBOOT_CONFIG[sdcard-secure-boot] = "ls1043ardb_sdcard_SECURE_BOOT_defconfig,,u-boot-with-spl-pbl.bin"
+UBOOT_CONFIG[sdcard-spl-secure-boot] = "ls1043ardb_sdcard_SECURE_BOOT_defconfig,,spl/u-boot-spl.bin"
+UBOOT_CONFIG[sdcard-dtb-secure-boot] = "ls1043ardb_sdcard_SECURE_BOOT_defconfig,,u-boot-dtb.bin"
 
 KERNEL_DEVICETREE ?= "freescale/fsl-ls1043a-rdb-sdk.dtb freescale/fsl-ls1043a-rdb-usdpaa.dtb"
 KERNEL_DEFCONFIG ?= "${S}/arch/arm64/configs/defconfig"
-- 
1.9.0



^ permalink raw reply related	[flat|nested] 11+ messages in thread

* [PATCH 02/10] ls1046ardb: update u-boot configs
  2017-10-19  8:31 [PATCH 01/10] ls1043ardb:update u-boot configs Chunrong Guo
@ 2017-10-19  8:31 ` Chunrong Guo
  2017-10-19  8:31 ` [PATCH 03/10] dpl-examples: install dtb files in custom folder Chunrong Guo
                   ` (8 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: Chunrong Guo @ 2017-10-19  8:31 UTC (permalink / raw)
  To: meta-freescale; +Cc: chunrong.guo

From: Chunrong Guo <chunrong.guo@nxp.com>

*sdcard boot need the below binary for secure boot
      u-boot-spl.bin and u-boot-dtb.bin

Signed-off-by: Chunrong Guo <chunrong.guo@nxp.com>
---
 conf/machine/ls1046ardb.conf | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/conf/machine/ls1046ardb.conf b/conf/machine/ls1046ardb.conf
index b069f97..b67db1e 100644
--- a/conf/machine/ls1046ardb.conf
+++ b/conf/machine/ls1046ardb.conf
@@ -14,12 +14,14 @@ KERNEL_IMAGETYPES = "itbImage"
 
 UBOOT_ENTRYPOINT = "0x80080000"
 
-UBOOT_CONFIG ??= "emmc sdcard sdcard-secure-boot qspi-secure-boot qspi"
+UBOOT_CONFIG ??= "emmc sdcard sdcard-dtb-secure-boot sdcard-spl-secure-boot sdcard-secure-boot qspi-secure-boot qspi"
 UBOOT_CONFIG[emmc] = "ls1046ardb_emmc_defconfig,,u-boot-with-spl-pbl.bin"
 UBOOT_CONFIG[sdcard] = "ls1046ardb_sdcard_config,,u-boot-with-spl-pbl.bin"
 UBOOT_CONFIG[qspi] = "ls1046ardb_qspi_config,,u-boot-dtb.bin"
 UBOOT_CONFIG[qspi-secure-boot] = "ls1046ardb_qspi_SECURE_BOOT_config,,u-boot-dtb.bin"
 UBOOT_CONFIG[sdcard-secure-boot] = "ls1046ardb_sdcard_SECURE_BOOT_defconfig,,u-boot-with-spl-pbl.bin"
+UBOOT_CONFIG[sdcard-spl-secure-boot] = "ls1046ardb_sdcard_SECURE_BOOT_defconfig,,spl/u-boot-spl.bin"
+UBOOT_CONFIG[sdcard-dtb-secure-boot] = "ls1046ardb_sdcard_SECURE_BOOT_defconfig,,u-boot-dtb.bin"
 
 KERNEL_DEVICETREE ?= "\
     freescale/fsl-ls1046a-rdb-sdk.dtb \
-- 
1.9.0



^ permalink raw reply related	[flat|nested] 11+ messages in thread

* [PATCH 03/10] dpl-examples: install dtb files in custom folder
  2017-10-19  8:31 [PATCH 01/10] ls1043ardb:update u-boot configs Chunrong Guo
  2017-10-19  8:31 ` [PATCH 02/10] ls1046ardb: update " Chunrong Guo
@ 2017-10-19  8:31 ` Chunrong Guo
  2017-10-19  8:31 ` [PATCH 04/10] kernel-itbimage: add DTB_LOAD to set dtb load address Chunrong Guo
                   ` (7 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: Chunrong Guo @ 2017-10-19  8:31 UTC (permalink / raw)
  To: meta-freescale; +Cc: chunrong.guo

From: Chunrong Guo <chunrong.guo@nxp.com>

* fix missing dtb files in custom path

Signed-off-by: Chunrong Guo <chunrong.guo@nxp.com>
---
 recipes-dpaa2/dpl-examples/dpl-examples_git.bb | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/recipes-dpaa2/dpl-examples/dpl-examples_git.bb b/recipes-dpaa2/dpl-examples/dpl-examples_git.bb
index 9991d40..6ec067d 100644
--- a/recipes-dpaa2/dpl-examples/dpl-examples_git.bb
+++ b/recipes-dpaa2/dpl-examples/dpl-examples_git.bb
@@ -17,11 +17,13 @@ REGLEX_ls1088a = "ls1088a"
 do_install () {
     install -d ${D}/boot
     install -m 644 ${S}/${REGLEX}/RDB/*.dtb ${D}/boot
+    install -m 644 ${S}/${REGLEX}/RDB/custom/*.dtb ${D}/boot
 }
 
 do_deploy () {
     install -d ${DEPLOYDIR}/dpl-examples
     install -m 644 ${S}/${REGLEX}/RDB/*.dtb ${DEPLOYDIR}/dpl-examples
+    install -m 644 ${S}/${REGLEX}/RDB/custom/*.dtb ${DEPLOYDIR}/dpl-examples
 }
 addtask deploy before do_build after do_install
 
-- 
1.9.0



^ permalink raw reply related	[flat|nested] 11+ messages in thread

* [PATCH 04/10] kernel-itbimage: add DTB_LOAD to set dtb load address
  2017-10-19  8:31 [PATCH 01/10] ls1043ardb:update u-boot configs Chunrong Guo
  2017-10-19  8:31 ` [PATCH 02/10] ls1046ardb: update " Chunrong Guo
  2017-10-19  8:31 ` [PATCH 03/10] dpl-examples: install dtb files in custom folder Chunrong Guo
@ 2017-10-19  8:31 ` Chunrong Guo
  2017-10-19  8:31 ` [PATCH 05/10] ls2088ardb : add DTB_LOAD Chunrong Guo
                   ` (6 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: Chunrong Guo @ 2017-10-19  8:31 UTC (permalink / raw)
  To: meta-freescale; +Cc: chunrong.guo

From: Chunrong Guo <chunrong.guo@nxp.com>

*Dtb address will be not the same for arm64 and arm32

Signed-off-by: Chunrong Guo <chunrong.guo@nxp.com>
---
 classes/kernel-itbimage.bbclass | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/classes/kernel-itbimage.bbclass b/classes/kernel-itbimage.bbclass
index 5033d81..6658d91 100644
--- a/classes/kernel-itbimage.bbclass
+++ b/classes/kernel-itbimage.bbclass
@@ -135,7 +135,7 @@ fitimage_emit_section_dtb() {
                         type = "flat_dt";
                         arch = "${UBOOT_ARCH}";
                         compression = "none";
-                        load = <0x90000000>;
+                        load = <${DTB_LOAD}>;
                         hash@1 {
                                 algo = "${dtb_csum}";
                         };
-- 
1.9.0



^ permalink raw reply related	[flat|nested] 11+ messages in thread

* [PATCH 05/10] ls2088ardb : add DTB_LOAD
  2017-10-19  8:31 [PATCH 01/10] ls1043ardb:update u-boot configs Chunrong Guo
                   ` (2 preceding siblings ...)
  2017-10-19  8:31 ` [PATCH 04/10] kernel-itbimage: add DTB_LOAD to set dtb load address Chunrong Guo
@ 2017-10-19  8:31 ` Chunrong Guo
  2017-10-19  8:31 ` [PATCH 06/10] ls1088ardb: " Chunrong Guo
                   ` (5 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: Chunrong Guo @ 2017-10-19  8:31 UTC (permalink / raw)
  To: meta-freescale; +Cc: chunrong.guo

From: Chunrong Guo <chunrong.guo@nxp.com>

Signed-off-by: Chunrong Guo <chunrong.guo@nxp.com>
---
 conf/machine/ls2088ardb.conf | 1 +
 1 file changed, 1 insertion(+)

diff --git a/conf/machine/ls2088ardb.conf b/conf/machine/ls2088ardb.conf
index e8ecf26..a8b6fd7 100644
--- a/conf/machine/ls2088ardb.conf
+++ b/conf/machine/ls2088ardb.conf
@@ -12,6 +12,7 @@ MACHINEOVERRIDES =. "fsl-lsch3:ls2088a:"
 KERNEL_CLASSES  = " kernel-itbimage "
 KERNEL_IMAGETYPES = "itbImage"
 
+DTB_LOAD = "0x90000000"
 UBOOT_ENTRYPOINT = "0x80080000"
 
 UBOOT_CONFIG ??= "qspi-secure-boot qspi nand nor"
-- 
1.9.0



^ permalink raw reply related	[flat|nested] 11+ messages in thread

* [PATCH 06/10] ls1088ardb: add DTB_LOAD
  2017-10-19  8:31 [PATCH 01/10] ls1043ardb:update u-boot configs Chunrong Guo
                   ` (3 preceding siblings ...)
  2017-10-19  8:31 ` [PATCH 05/10] ls2088ardb : add DTB_LOAD Chunrong Guo
@ 2017-10-19  8:31 ` Chunrong Guo
  2017-10-19  8:31 ` [PATCH 07/10] ls1043ardb: " Chunrong Guo
                   ` (4 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: Chunrong Guo @ 2017-10-19  8:31 UTC (permalink / raw)
  To: meta-freescale; +Cc: chunrong.guo

From: Chunrong Guo <chunrong.guo@nxp.com>

Signed-off-by: Chunrong Guo <chunrong.guo@nxp.com>
---
 conf/machine/ls1088ardb.conf | 1 +
 1 file changed, 1 insertion(+)

diff --git a/conf/machine/ls1088ardb.conf b/conf/machine/ls1088ardb.conf
index 845ac44..d22cdde 100644
--- a/conf/machine/ls1088ardb.conf
+++ b/conf/machine/ls1088ardb.conf
@@ -12,6 +12,7 @@ MACHINEOVERRIDES =. "fsl-lsch3:ls1088a:"
 KERNEL_CLASSES  = " kernel-itbimage "
 KERNEL_IMAGETYPES = "itbImage"
 
+DTB_LOAD = "0x90000000"
 UBOOT_ENTRYPOINT = "0x80080000"
 
 UBOOT_CONFIG ??= "secure-boot sdcard-qspi qspi"
-- 
1.9.0



^ permalink raw reply related	[flat|nested] 11+ messages in thread

* [PATCH 07/10] ls1043ardb: add DTB_LOAD
  2017-10-19  8:31 [PATCH 01/10] ls1043ardb:update u-boot configs Chunrong Guo
                   ` (4 preceding siblings ...)
  2017-10-19  8:31 ` [PATCH 06/10] ls1088ardb: " Chunrong Guo
@ 2017-10-19  8:31 ` Chunrong Guo
  2017-10-19  8:31 ` [PATCH 08/10] ls1046ardb:add DTB_LOAD Chunrong Guo
                   ` (3 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: Chunrong Guo @ 2017-10-19  8:31 UTC (permalink / raw)
  To: meta-freescale; +Cc: chunrong.guo

From: Chunrong Guo <chunrong.guo@nxp.com>

Signed-off-by: Chunrong Guo <chunrong.guo@nxp.com>
---
 conf/machine/ls1043ardb.conf | 1 +
 1 file changed, 1 insertion(+)

diff --git a/conf/machine/ls1043ardb.conf b/conf/machine/ls1043ardb.conf
index 500461e..e2a8ae6 100644
--- a/conf/machine/ls1043ardb.conf
+++ b/conf/machine/ls1043ardb.conf
@@ -13,6 +13,7 @@ require conf/machine/include/arm/arch-arm64.inc
 KERNEL_CLASSES  = " kernel-itbimage "
 KERNEL_IMAGETYPES = "itbImage"
 
+DTB_LOAD = "0x90000000"
 UBOOT_ENTRYPOINT = "0x80080000"
 
 UBOOT_CONFIG ??= "nand sdcard secure-boot nand-dtb-secure-boot nand-spl-secure-boot nand-secure-boot sdcard-dtb-secure-boot sdcard-spl-secure-boot sdcard-secure-boot nor"
-- 
1.9.0



^ permalink raw reply related	[flat|nested] 11+ messages in thread

* [PATCH 08/10] ls1046ardb:add DTB_LOAD
  2017-10-19  8:31 [PATCH 01/10] ls1043ardb:update u-boot configs Chunrong Guo
                   ` (5 preceding siblings ...)
  2017-10-19  8:31 ` [PATCH 07/10] ls1043ardb: " Chunrong Guo
@ 2017-10-19  8:31 ` Chunrong Guo
  2017-10-19  8:31 ` [PATCH 09/10] ls1043ardb-32b: add DTB_LOAD Chunrong Guo
                   ` (2 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: Chunrong Guo @ 2017-10-19  8:31 UTC (permalink / raw)
  To: meta-freescale; +Cc: chunrong.guo

From: Chunrong Guo <chunrong.guo@nxp.com>

Signed-off-by: Chunrong Guo <chunrong.guo@nxp.com>
---
 conf/machine/ls1046ardb.conf | 1 +
 1 file changed, 1 insertion(+)

diff --git a/conf/machine/ls1046ardb.conf b/conf/machine/ls1046ardb.conf
index b67db1e..f736919 100644
--- a/conf/machine/ls1046ardb.conf
+++ b/conf/machine/ls1046ardb.conf
@@ -12,6 +12,7 @@ require conf/machine/include/arm/arch-arm64.inc
 KERNEL_CLASSES  = " kernel-itbimage "
 KERNEL_IMAGETYPES = "itbImage"
 
+DTB_LOAD = "0x90000000"
 UBOOT_ENTRYPOINT = "0x80080000"
 
 UBOOT_CONFIG ??= "emmc sdcard sdcard-dtb-secure-boot sdcard-spl-secure-boot sdcard-secure-boot qspi-secure-boot qspi"
-- 
1.9.0



^ permalink raw reply related	[flat|nested] 11+ messages in thread

* [PATCH 09/10] ls1043ardb-32b: add DTB_LOAD
  2017-10-19  8:31 [PATCH 01/10] ls1043ardb:update u-boot configs Chunrong Guo
                   ` (6 preceding siblings ...)
  2017-10-19  8:31 ` [PATCH 08/10] ls1046ardb:add DTB_LOAD Chunrong Guo
@ 2017-10-19  8:31 ` Chunrong Guo
  2017-10-19  8:31 ` [PATCH 10/10] ls1046ardb-32b: " Chunrong Guo
  2017-10-25  5:03 ` [PATCH 01/10] ls1043ardb:update u-boot configs C.r. Guo
  9 siblings, 0 replies; 11+ messages in thread
From: Chunrong Guo @ 2017-10-19  8:31 UTC (permalink / raw)
  To: meta-freescale; +Cc: chunrong.guo

From: Chunrong Guo <chunrong.guo@nxp.com>

Signed-off-by: Chunrong Guo <chunrong.guo@nxp.com>
---
 conf/machine/ls1043ardb-32b.conf | 1 +
 1 file changed, 1 insertion(+)

diff --git a/conf/machine/ls1043ardb-32b.conf b/conf/machine/ls1043ardb-32b.conf
index 539a4e4..d3bcb49 100644
--- a/conf/machine/ls1043ardb-32b.conf
+++ b/conf/machine/ls1043ardb-32b.conf
@@ -14,6 +14,7 @@ DEFAULTTUNE = "armv7ahf-neon"
 KERNEL_CLASSES  = " kernel-itbimage "
 KERNEL_IMAGETYPES = "itbImage"
 
+DTB_LOAD = "0x9ffe0000"
 UBOOT_ENTRYPOINT = "0x80008000"
 
 UBOOT_CONFIG ??= "nand sdcard nor"
-- 
1.9.0



^ permalink raw reply related	[flat|nested] 11+ messages in thread

* [PATCH 10/10] ls1046ardb-32b: add DTB_LOAD
  2017-10-19  8:31 [PATCH 01/10] ls1043ardb:update u-boot configs Chunrong Guo
                   ` (7 preceding siblings ...)
  2017-10-19  8:31 ` [PATCH 09/10] ls1043ardb-32b: add DTB_LOAD Chunrong Guo
@ 2017-10-19  8:31 ` Chunrong Guo
  2017-10-25  5:03 ` [PATCH 01/10] ls1043ardb:update u-boot configs C.r. Guo
  9 siblings, 0 replies; 11+ messages in thread
From: Chunrong Guo @ 2017-10-19  8:31 UTC (permalink / raw)
  To: meta-freescale; +Cc: chunrong.guo

From: Chunrong Guo <chunrong.guo@nxp.com>

Signed-off-by: Chunrong Guo <chunrong.guo@nxp.com>
---
 conf/machine/ls1046ardb-32b.conf | 1 +
 1 file changed, 1 insertion(+)

diff --git a/conf/machine/ls1046ardb-32b.conf b/conf/machine/ls1046ardb-32b.conf
index 2493bbb..f45cba1 100644
--- a/conf/machine/ls1046ardb-32b.conf
+++ b/conf/machine/ls1046ardb-32b.conf
@@ -14,6 +14,7 @@ DEFAULTTUNE = "armv7ahf-neon"
 KERNEL_CLASSES  = " kernel-itbimage "
 KERNEL_IMAGETYPES = "itbImage"
 
+DTB_LOAD = "0x9ffe0000"
 UBOOT_ENTRYPOINT = "0x80008000"
 
 UBOOT_CONFIG ??= "emmc sdcard qspi-secure-boot qspi"
-- 
1.9.0



^ permalink raw reply related	[flat|nested] 11+ messages in thread

* Re: [PATCH 01/10] ls1043ardb:update u-boot configs
  2017-10-19  8:31 [PATCH 01/10] ls1043ardb:update u-boot configs Chunrong Guo
                   ` (8 preceding siblings ...)
  2017-10-19  8:31 ` [PATCH 10/10] ls1046ardb-32b: " Chunrong Guo
@ 2017-10-25  5:03 ` C.r. Guo
  9 siblings, 0 replies; 11+ messages in thread
From: C.r. Guo @ 2017-10-25  5:03 UTC (permalink / raw)
  To: Chunrong Guo, meta-freescale

pings.

-----Original Message-----
From: Chunrong Guo [mailto:B40290@freescale.com] 
Sent: Thursday, October 19, 2017 4:31 PM
To: meta-freescale@yoctoproject.org
Cc: Zhenhua Luo <zhenhua.luo@nxp.com>; C.r. Guo <chunrong.guo@nxp.com>
Subject: [PATCH 01/10] ls1043ardb:update u-boot configs

From: Chunrong Guo <chunrong.guo@nxp.com>

*nand boot and sdcard boot need the below binary for secure boot
  u-boot-spl.bin and u-boot-dtb.bin

Signed-off-by: Chunrong Guo <chunrong.guo@nxp.com>
---
 conf/machine/ls1043ardb.conf | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/conf/machine/ls1043ardb.conf b/conf/machine/ls1043ardb.conf index 05431db..500461e 100644
--- a/conf/machine/ls1043ardb.conf
+++ b/conf/machine/ls1043ardb.conf
@@ -15,13 +15,17 @@ KERNEL_IMAGETYPES = "itbImage"
 
 UBOOT_ENTRYPOINT = "0x80080000"
 
-UBOOT_CONFIG ??= "nand sdcard secure-boot nand-secure-boot sdcard-secure-boot nor"
+UBOOT_CONFIG ??= "nand sdcard secure-boot nand-dtb-secure-boot nand-spl-secure-boot nand-secure-boot sdcard-dtb-secure-boot sdcard-spl-secure-boot sdcard-secure-boot nor"
 UBOOT_CONFIG[nor] = "ls1043ardb_config,,u-boot-dtb.bin"
 UBOOT_CONFIG[nand] = "ls1043ardb_nand_config,,u-boot-with-spl-pbl.bin"
 UBOOT_CONFIG[sdcard] = "ls1043ardb_sdcard_config,,u-boot-with-spl-pbl.bin"
 UBOOT_CONFIG[secure-boot] = "ls1043ardb_SECURE_BOOT_defconfig,,u-boot-dtb.bin"
 UBOOT_CONFIG[nand-secure-boot] = "ls1043ardb_nand_SECURE_BOOT_defconfig,,u-boot-with-spl-pbl.bin"
+UBOOT_CONFIG[nand-spl-secure-boot] = "ls1043ardb_nand_SECURE_BOOT_defconfig,,spl/u-boot-spl.bin"
+UBOOT_CONFIG[nand-dtb-secure-boot] = "ls1043ardb_nand_SECURE_BOOT_defconfig,,u-boot-dtb.bin"
 UBOOT_CONFIG[sdcard-secure-boot] = "ls1043ardb_sdcard_SECURE_BOOT_defconfig,,u-boot-with-spl-pbl.bin"
+UBOOT_CONFIG[sdcard-spl-secure-boot] = "ls1043ardb_sdcard_SECURE_BOOT_defconfig,,spl/u-boot-spl.bin"
+UBOOT_CONFIG[sdcard-dtb-secure-boot] = "ls1043ardb_sdcard_SECURE_BOOT_defconfig,,u-boot-dtb.bin"
 
 KERNEL_DEVICETREE ?= "freescale/fsl-ls1043a-rdb-sdk.dtb freescale/fsl-ls1043a-rdb-usdpaa.dtb"
 KERNEL_DEFCONFIG ?= "${S}/arch/arm64/configs/defconfig"
--
1.9.0



^ permalink raw reply	[flat|nested] 11+ messages in thread

end of thread, other threads:[~2017-10-25  5:19 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-10-19  8:31 [PATCH 01/10] ls1043ardb:update u-boot configs Chunrong Guo
2017-10-19  8:31 ` [PATCH 02/10] ls1046ardb: update " Chunrong Guo
2017-10-19  8:31 ` [PATCH 03/10] dpl-examples: install dtb files in custom folder Chunrong Guo
2017-10-19  8:31 ` [PATCH 04/10] kernel-itbimage: add DTB_LOAD to set dtb load address Chunrong Guo
2017-10-19  8:31 ` [PATCH 05/10] ls2088ardb : add DTB_LOAD Chunrong Guo
2017-10-19  8:31 ` [PATCH 06/10] ls1088ardb: " Chunrong Guo
2017-10-19  8:31 ` [PATCH 07/10] ls1043ardb: " Chunrong Guo
2017-10-19  8:31 ` [PATCH 08/10] ls1046ardb:add DTB_LOAD Chunrong Guo
2017-10-19  8:31 ` [PATCH 09/10] ls1043ardb-32b: add DTB_LOAD Chunrong Guo
2017-10-19  8:31 ` [PATCH 10/10] ls1046ardb-32b: " Chunrong Guo
2017-10-25  5:03 ` [PATCH 01/10] ls1043ardb:update u-boot configs C.r. Guo

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.