All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 01/15] ls1012afrdm-32b: use kernel-fitimage
@ 2018-07-11  9:35 chunrong.guo
  2018-07-11  9:35 ` [PATCH 02/15] ls1012afrdm: " chunrong.guo
                   ` (13 more replies)
  0 siblings, 14 replies; 15+ messages in thread
From: chunrong.guo @ 2018-07-11  9:35 UTC (permalink / raw)
  To: meta-freescale; +Cc: chunrong.guo

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

*Inhert kernel-fitimage bbclass

*Update  KERNEL_IMAGETYPES

*UBOOT_DTB_LOADADDRESS instead of DTB_LOAD

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

diff --git a/conf/machine/ls1012afrdm-32b.conf b/conf/machine/ls1012afrdm-32b.conf
index e74cdff..90e4f88 100644
--- a/conf/machine/ls1012afrdm-32b.conf
+++ b/conf/machine/ls1012afrdm-32b.conf
@@ -12,10 +12,10 @@ require conf/machine/include/arm/arch-arm64.inc
 
 DEFAULTTUNE = "armv7ahf-neon"
 
-KERNEL_CLASSES  = " kernel-itbimage "
-KERNEL_IMAGETYPES = "itbImage"
+KERNEL_CLASSES  = " kernel-fitimage "
+KERNEL_IMAGETYPES = "fitImage"
 
-DTB_LOAD = "0x90000000"
+UBOOT_DTB_LOADADDRESS = "0x90000000"
 UBOOT_ENTRYPOINT = "0x80008000"
 
 UBOOT_CONFIG ??= "qspi"
-- 
2.7.4



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

* [PATCH 02/15] ls1012afrdm: use kernel-fitimage
  2018-07-11  9:35 [PATCH 01/15] ls1012afrdm-32b: use kernel-fitimage chunrong.guo
@ 2018-07-11  9:35 ` chunrong.guo
  2018-07-11  9:35 ` [PATCH 03/15] ls1012afrwy: " chunrong.guo
                   ` (12 subsequent siblings)
  13 siblings, 0 replies; 15+ messages in thread
From: chunrong.guo @ 2018-07-11  9:35 UTC (permalink / raw)
  To: meta-freescale; +Cc: chunrong.guo

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

*Inhert kernel-fitimage bbclass

*Update  KERNEL_IMAGETYPES

*UBOOT_DTB_LOADADDRESS instead of DTB_LOAD

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

diff --git a/conf/machine/ls1012afrdm.conf b/conf/machine/ls1012afrdm.conf
index 0a203f8..c0f0d35 100644
--- a/conf/machine/ls1012afrdm.conf
+++ b/conf/machine/ls1012afrdm.conf
@@ -10,10 +10,10 @@ MACHINEOVERRIDES =. "fsl-lsch2:ls1012a:"
 require conf/machine/include/qoriq-arm64.inc
 require conf/machine/include/arm/arch-arm64.inc
 
-KERNEL_CLASSES  = " kernel-itbimage "
-KERNEL_IMAGETYPES = "itbImage"
+KERNEL_CLASSES  = " kernel-fitimage "
+KERNEL_IMAGETYPES = "fitImage"
 
-DTB_LOAD = "0x90000000"
+UBOOT_DTB_LOADADDRESS = "0x90000000"
 UBOOT_ENTRYPOINT = "0x80080000"
 
 UBOOT_CONFIG ??= "qspi"
-- 
2.7.4



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

* [PATCH 03/15] ls1012afrwy: use kernel-fitimage
  2018-07-11  9:35 [PATCH 01/15] ls1012afrdm-32b: use kernel-fitimage chunrong.guo
  2018-07-11  9:35 ` [PATCH 02/15] ls1012afrdm: " chunrong.guo
@ 2018-07-11  9:35 ` chunrong.guo
  2018-07-11  9:35 ` [PATCH 04/15] ls1012ardb-32b: " chunrong.guo
                   ` (11 subsequent siblings)
  13 siblings, 0 replies; 15+ messages in thread
From: chunrong.guo @ 2018-07-11  9:35 UTC (permalink / raw)
  To: meta-freescale; +Cc: chunrong.guo

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

*Inhert kernel-fitimage bbclass

*Update  KERNEL_IMAGETYPES

*UBOOT_DTB_LOADADDRESS instead of DTB_LOAD

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

diff --git a/conf/machine/ls1012afrwy.conf b/conf/machine/ls1012afrwy.conf
index 907ced2..7eb0add 100644
--- a/conf/machine/ls1012afrwy.conf
+++ b/conf/machine/ls1012afrwy.conf
@@ -10,6 +10,8 @@ MACHINEOVERRIDES =. "fsl-lsch2:ls1012a:"
 require conf/machine/include/qoriq-arm64.inc
 require conf/machine/include/arm/arch-arm64.inc
 
+KERNEL_CLASSES  = " kernel-fitimage "
+KERNEL_IMAGETYPES = "fitImage"
 
 UBOOT_DTB_LOADADDRESS = "0x90000000"
 UBOOT_ENTRYPOINT = "0x80080000"
-- 
2.7.4



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

* [PATCH 04/15] ls1012ardb-32b: use kernel-fitimage
  2018-07-11  9:35 [PATCH 01/15] ls1012afrdm-32b: use kernel-fitimage chunrong.guo
  2018-07-11  9:35 ` [PATCH 02/15] ls1012afrdm: " chunrong.guo
  2018-07-11  9:35 ` [PATCH 03/15] ls1012afrwy: " chunrong.guo
@ 2018-07-11  9:35 ` chunrong.guo
  2018-07-11  9:35 ` [PATCH 05/15] ls1012ardb: " chunrong.guo
                   ` (10 subsequent siblings)
  13 siblings, 0 replies; 15+ messages in thread
From: chunrong.guo @ 2018-07-11  9:35 UTC (permalink / raw)
  To: meta-freescale; +Cc: chunrong.guo

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

*Inhert kernel-fitimage bbclass

*Update  KERNEL_IMAGETYPES

*UBOOT_DTB_LOADADDRESS instead of DTB_LOAD

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

diff --git a/conf/machine/ls1012ardb-32b.conf b/conf/machine/ls1012ardb-32b.conf
index 392b432..1fe13d5 100644
--- a/conf/machine/ls1012ardb-32b.conf
+++ b/conf/machine/ls1012ardb-32b.conf
@@ -12,10 +12,10 @@ require conf/machine/include/arm/arch-arm64.inc
 
 DEFAULTTUNE = "armv7ahf-neon"
 
-KERNEL_CLASSES  = " kernel-itbimage "
-KERNEL_IMAGETYPES = "itbImage"
+KERNEL_CLASSES  = " kernel-fitimage "
+KERNEL_IMAGETYPES = "fitImage"
 
-DTB_LOAD = "0x90000000"
+UBOOT_DTB_LOADADDRESS = "0x90000000"
 UBOOT_ENTRYPOINT = "0x80008000"
 
 UBOOT_CONFIG ??= "qspi-secure-boot qspi"
-- 
2.7.4



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

* [PATCH 05/15] ls1012ardb: use kernel-fitimage
  2018-07-11  9:35 [PATCH 01/15] ls1012afrdm-32b: use kernel-fitimage chunrong.guo
                   ` (2 preceding siblings ...)
  2018-07-11  9:35 ` [PATCH 04/15] ls1012ardb-32b: " chunrong.guo
@ 2018-07-11  9:35 ` chunrong.guo
  2018-07-11  9:35 ` [PATCH 06/15] ls1043ardb-32b: " chunrong.guo
                   ` (9 subsequent siblings)
  13 siblings, 0 replies; 15+ messages in thread
From: chunrong.guo @ 2018-07-11  9:35 UTC (permalink / raw)
  To: meta-freescale; +Cc: chunrong.guo

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

*Inhert kernel-fitimage bbclass

*Update  KERNEL_IMAGETYPES

*UBOOT_DTB_LOADADDRESS instead of DTB_LOAD

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

diff --git a/conf/machine/ls1012ardb.conf b/conf/machine/ls1012ardb.conf
index 249a151..bd86de4 100644
--- a/conf/machine/ls1012ardb.conf
+++ b/conf/machine/ls1012ardb.conf
@@ -10,10 +10,10 @@ MACHINEOVERRIDES =. "fsl-lsch2:ls1012a:"
 require conf/machine/include/qoriq-arm64.inc
 require conf/machine/include/arm/arch-arm64.inc
 
-KERNEL_CLASSES  = " kernel-itbimage "
-KERNEL_IMAGETYPES = "itbImage"
+KERNEL_CLASSES  = " kernel-fitimage "
+KERNEL_IMAGETYPES = "fitImage"
 
-DTB_LOAD = "0x90000000"
+UBOOT_DTB_LOADADDRESS = "0x90000000"
 UBOOT_ENTRYPOINT = "0x80080000"
 
 UBOOT_CONFIG ??= "qspi-secure-boot qspi"
-- 
2.7.4



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

* [PATCH 06/15] ls1043ardb-32b: use kernel-fitimage
  2018-07-11  9:35 [PATCH 01/15] ls1012afrdm-32b: use kernel-fitimage chunrong.guo
                   ` (3 preceding siblings ...)
  2018-07-11  9:35 ` [PATCH 05/15] ls1012ardb: " chunrong.guo
@ 2018-07-11  9:35 ` chunrong.guo
  2018-07-11  9:35 ` [PATCH 07/15] ls1043ardb: " chunrong.guo
                   ` (8 subsequent siblings)
  13 siblings, 0 replies; 15+ messages in thread
From: chunrong.guo @ 2018-07-11  9:35 UTC (permalink / raw)
  To: meta-freescale; +Cc: chunrong.guo

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

*Inhert kernel-fitimage bbclass

*Update  KERNEL_IMAGETYPES

*UBOOT_DTB_LOADADDRESS instead of DTB_LOAD

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

diff --git a/conf/machine/ls1043ardb-32b.conf b/conf/machine/ls1043ardb-32b.conf
index 0386a17..4e4d472 100644
--- a/conf/machine/ls1043ardb-32b.conf
+++ b/conf/machine/ls1043ardb-32b.conf
@@ -11,10 +11,10 @@ require conf/machine/include/arm/arch-arm64.inc
 
 DEFAULTTUNE = "armv7ahf-neon"
 
-KERNEL_CLASSES  = " kernel-itbimage "
-KERNEL_IMAGETYPES = "itbImage"
+KERNEL_CLASSES  = " kernel-fitimage "
+KERNEL_IMAGETYPES = "fitImage"
 
-DTB_LOAD = "0x9ffe0000"
+UBOOT_DTB_LOADADDRESS = "0x9ffe0000"
 UBOOT_ENTRYPOINT = "0x80008000"
 
 UBOOT_CONFIG ??= "nand sdcard nor"
-- 
2.7.4



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

* [PATCH 07/15] ls1043ardb: use kernel-fitimage
  2018-07-11  9:35 [PATCH 01/15] ls1012afrdm-32b: use kernel-fitimage chunrong.guo
                   ` (4 preceding siblings ...)
  2018-07-11  9:35 ` [PATCH 06/15] ls1043ardb-32b: " chunrong.guo
@ 2018-07-11  9:35 ` chunrong.guo
  2018-07-11  9:35 ` [PATCH 08/15] ls1046ardb: " chunrong.guo
                   ` (7 subsequent siblings)
  13 siblings, 0 replies; 15+ messages in thread
From: chunrong.guo @ 2018-07-11  9:35 UTC (permalink / raw)
  To: meta-freescale; +Cc: chunrong.guo

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

*Inhert kernel-fitimage bbclass

*Update  KERNEL_IMAGETYPES

*UBOOT_DTB_LOADADDRESS instead of DTB_LOAD

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

diff --git a/conf/machine/ls1043ardb.conf b/conf/machine/ls1043ardb.conf
index 0dbf80b..d6e4f59 100644
--- a/conf/machine/ls1043ardb.conf
+++ b/conf/machine/ls1043ardb.conf
@@ -10,10 +10,10 @@ MACHINEOVERRIDES =. "fsl-lsch2:ls1043a:"
 require conf/machine/include/qoriq-arm64.inc
 require conf/machine/include/arm/arch-arm64.inc
 
-KERNEL_CLASSES  = " kernel-itbimage "
-KERNEL_IMAGETYPES = "itbImage"
+KERNEL_CLASSES  = " kernel-fitimage "
+KERNEL_IMAGETYPES = "fitImage"
 
-DTB_LOAD = "0x90000000"
+UBOOT_DTB_LOADADDRESS = "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"
-- 
2.7.4



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

* [PATCH 08/15] ls1046ardb: use kernel-fitimage
  2018-07-11  9:35 [PATCH 01/15] ls1012afrdm-32b: use kernel-fitimage chunrong.guo
                   ` (5 preceding siblings ...)
  2018-07-11  9:35 ` [PATCH 07/15] ls1043ardb: " chunrong.guo
@ 2018-07-11  9:35 ` chunrong.guo
  2018-07-11  9:35 ` [PATCH 09/15] ls1046ardb-32b: " chunrong.guo
                   ` (6 subsequent siblings)
  13 siblings, 0 replies; 15+ messages in thread
From: chunrong.guo @ 2018-07-11  9:35 UTC (permalink / raw)
  To: meta-freescale; +Cc: chunrong.guo

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

*Inhert kernel-fitimage bbclass

*Update  KERNEL_IMAGETYPES

*UBOOT_DTB_LOADADDRESS instead of DTB_LOAD

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

diff --git a/conf/machine/ls1046ardb.conf b/conf/machine/ls1046ardb.conf
index 69eb25c..8412313 100644
--- a/conf/machine/ls1046ardb.conf
+++ b/conf/machine/ls1046ardb.conf
@@ -9,10 +9,10 @@ MACHINEOVERRIDES =. "fsl-lsch2:ls1046a:"
 require conf/machine/include/qoriq-arm64.inc
 require conf/machine/include/arm/arch-arm64.inc
 
-KERNEL_CLASSES  = " kernel-itbimage "
-KERNEL_IMAGETYPES = "itbImage"
+KERNEL_CLASSES  = " kernel-fitimage "
+KERNEL_IMAGETYPES = "fitImage"
 
-DTB_LOAD = "0x90000000"
+UBOOT_DTB_LOADADDRESS = "0x90000000"
 UBOOT_ENTRYPOINT = "0x80080000"
 
 UBOOT_CONFIG ??= "emmc sdcard sdcard-dtb-secure-boot sdcard-spl-secure-boot sdcard-secure-boot qspi-secure-boot qspi"
-- 
2.7.4



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

* [PATCH 09/15] ls1046ardb-32b: use kernel-fitimage
  2018-07-11  9:35 [PATCH 01/15] ls1012afrdm-32b: use kernel-fitimage chunrong.guo
                   ` (6 preceding siblings ...)
  2018-07-11  9:35 ` [PATCH 08/15] ls1046ardb: " chunrong.guo
@ 2018-07-11  9:35 ` chunrong.guo
  2018-07-11  9:35 ` [PATCH 10/15] ls1046ardb-be: " chunrong.guo
                   ` (5 subsequent siblings)
  13 siblings, 0 replies; 15+ messages in thread
From: chunrong.guo @ 2018-07-11  9:35 UTC (permalink / raw)
  To: meta-freescale; +Cc: chunrong.guo

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

*Inhert kernel-fitimage bbclass

*Update  KERNEL_IMAGETYPES

*UBOOT_DTB_LOADADDRESS instead of DTB_LOAD

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

diff --git a/conf/machine/ls1046ardb-32b.conf b/conf/machine/ls1046ardb-32b.conf
index 06706cb..0fe97b1 100644
--- a/conf/machine/ls1046ardb-32b.conf
+++ b/conf/machine/ls1046ardb-32b.conf
@@ -11,10 +11,10 @@ require conf/machine/include/arm/arch-arm64.inc
 
 DEFAULTTUNE = "armv7ahf-neon"
 
-KERNEL_CLASSES  = " kernel-itbimage "
-KERNEL_IMAGETYPES = "itbImage"
+KERNEL_CLASSES  = " kernel-fitimage "
+KERNEL_IMAGETYPES = "fitImage"
 
-DTB_LOAD = "0x9ffe0000"
+UBOOT_DTB_LOADADDRESS = "0x9ffe0000"
 UBOOT_ENTRYPOINT = "0x80008000"
 
 UBOOT_CONFIG ??= "emmc sdcard qspi-secure-boot qspi"
-- 
2.7.4



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

* [PATCH 10/15] ls1046ardb-be: use kernel-fitimage
  2018-07-11  9:35 [PATCH 01/15] ls1012afrdm-32b: use kernel-fitimage chunrong.guo
                   ` (7 preceding siblings ...)
  2018-07-11  9:35 ` [PATCH 09/15] ls1046ardb-32b: " chunrong.guo
@ 2018-07-11  9:35 ` chunrong.guo
  2018-07-11  9:35 ` [PATCH 11/15] ls1088ardb-be: " chunrong.guo
                   ` (4 subsequent siblings)
  13 siblings, 0 replies; 15+ messages in thread
From: chunrong.guo @ 2018-07-11  9:35 UTC (permalink / raw)
  To: meta-freescale; +Cc: chunrong.guo

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

*Inhert kernel-fitimage bbclass

*Update  KERNEL_IMAGETYPES

*UBOOT_DTB_LOADADDRESS instead of DTB_LOAD

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

diff --git a/conf/machine/ls1046ardb-be.conf b/conf/machine/ls1046ardb-be.conf
index a6ab742..56ac711 100644
--- a/conf/machine/ls1046ardb-be.conf
+++ b/conf/machine/ls1046ardb-be.conf
@@ -11,10 +11,10 @@ MACHINEOVERRIDES =. "fsl-lsch2:ls1046a:"
 require conf/machine/include/qoriq-arm64.inc
 require conf/machine/include/arm/arch-arm64.inc
 
-KERNEL_CLASSES  = " kernel-itbimage "
-KERNEL_IMAGETYPES = "itbImage"
+KERNEL_CLASSES  = " kernel-fitimage "
+KERNEL_IMAGETYPES = "fitImage"
 
-DTB_LOAD = "0x90000000"
+UBOOT_DTB_LOADADDRESS = "0x90000000"
 UBOOT_ENTRYPOINT = "0x80080000"
 
 LE_UBOOT_FOR_ARMBE_TARGET = "1"
-- 
2.7.4



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

* [PATCH 11/15] ls1088ardb-be: use kernel-fitimage
  2018-07-11  9:35 [PATCH 01/15] ls1012afrdm-32b: use kernel-fitimage chunrong.guo
                   ` (8 preceding siblings ...)
  2018-07-11  9:35 ` [PATCH 10/15] ls1046ardb-be: " chunrong.guo
@ 2018-07-11  9:35 ` chunrong.guo
  2018-07-11  9:35 ` [PATCH 12/15] ls1088ardb: " chunrong.guo
                   ` (3 subsequent siblings)
  13 siblings, 0 replies; 15+ messages in thread
From: chunrong.guo @ 2018-07-11  9:35 UTC (permalink / raw)
  To: meta-freescale; +Cc: chunrong.guo

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

*Inhert kernel-fitimage bbclass

*Update  KERNEL_IMAGETYPES

*UBOOT_DTB_LOADADDRESS instead of DTB_LOAD

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

diff --git a/conf/machine/ls1088ardb-be.conf b/conf/machine/ls1088ardb-be.conf
index 28aed8e..40ffff5 100644
--- a/conf/machine/ls1088ardb-be.conf
+++ b/conf/machine/ls1088ardb-be.conf
@@ -13,10 +13,10 @@ LE_UBOOT_FOR_ARMBE_TARGET = "1"
 
 MACHINEOVERRIDES =. "fsl-lsch3:ls1088a:"
 
-KERNEL_CLASSES  = " kernel-itbimage "
-KERNEL_IMAGETYPES = "itbImage"
+KERNEL_CLASSES  = " kernel-fitimage "
+KERNEL_IMAGETYPES = "fitImage"
 
-DTB_LOAD = "0x90000000"
+UBOOT_DTB_LOADADDRESS = "0x90000000"
 UBOOT_ENTRYPOINT = "0x80080000"
 
 UBOOT_CONFIG ??= "secure-boot sdcard-qspi qspi"
-- 
2.7.4



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

* [PATCH 12/15] ls1088ardb: use kernel-fitimage
  2018-07-11  9:35 [PATCH 01/15] ls1012afrdm-32b: use kernel-fitimage chunrong.guo
                   ` (9 preceding siblings ...)
  2018-07-11  9:35 ` [PATCH 11/15] ls1088ardb-be: " chunrong.guo
@ 2018-07-11  9:35 ` chunrong.guo
  2018-07-11  9:35 ` [PATCH 13/15] ls2088ardb-be: " chunrong.guo
                   ` (2 subsequent siblings)
  13 siblings, 0 replies; 15+ messages in thread
From: chunrong.guo @ 2018-07-11  9:35 UTC (permalink / raw)
  To: meta-freescale; +Cc: chunrong.guo

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

*Inhert kernel-fitimage bbclass

*Update  KERNEL_IMAGETYPES

*UBOOT_DTB_LOADADDRESS instead of DTB_LOAD

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

diff --git a/conf/machine/ls1088ardb.conf b/conf/machine/ls1088ardb.conf
index 3cb8784..d15e57b 100644
--- a/conf/machine/ls1088ardb.conf
+++ b/conf/machine/ls1088ardb.conf
@@ -9,10 +9,10 @@ require conf/machine/include/arm/arch-arm64.inc
 
 MACHINEOVERRIDES =. "fsl-lsch3:ls1088a:"
 
-KERNEL_CLASSES  = " kernel-itbimage "
-KERNEL_IMAGETYPES = "itbImage"
+KERNEL_CLASSES  = " kernel-fitimage "
+KERNEL_IMAGETYPES = "fitImage"
 
-DTB_LOAD = "0x90000000"
+UBOOT_DTB_LOADADDRESS = "0x90000000"
 UBOOT_ENTRYPOINT = "0x80080000"
 
 UBOOT_CONFIG ??= "secure-boot sdcard-qspi qspi"
-- 
2.7.4



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

* [PATCH 13/15] ls2088ardb-be: use kernel-fitimage
  2018-07-11  9:35 [PATCH 01/15] ls1012afrdm-32b: use kernel-fitimage chunrong.guo
                   ` (10 preceding siblings ...)
  2018-07-11  9:35 ` [PATCH 12/15] ls1088ardb: " chunrong.guo
@ 2018-07-11  9:35 ` chunrong.guo
  2018-07-11  9:35 ` [PATCH 14/15] ls2088ardb: " chunrong.guo
  2018-07-11  9:35 ` [PATCH 15/15] ls1043ardb-be: " chunrong.guo
  13 siblings, 0 replies; 15+ messages in thread
From: chunrong.guo @ 2018-07-11  9:35 UTC (permalink / raw)
  To: meta-freescale; +Cc: chunrong.guo

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

*Inhert kernel-fitimage bbclass

*Update  KERNEL_IMAGETYPES

*UBOOT_DTB_LOADADDRESS instead of DTB_LOAD

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

diff --git a/conf/machine/ls2088ardb-be.conf b/conf/machine/ls2088ardb-be.conf
index 3d31736..ac8c476 100644
--- a/conf/machine/ls2088ardb-be.conf
+++ b/conf/machine/ls2088ardb-be.conf
@@ -13,10 +13,10 @@ LE_UBOOT_FOR_ARMBE_TARGET = "1"
 
 MACHINEOVERRIDES =. "fsl-lsch3:ls2088a:"
 
-KERNEL_CLASSES  = " kernel-itbimage "
-KERNEL_IMAGETYPES = "itbImage"
+KERNEL_CLASSES  = " kernel-fitimage "
+KERNEL_IMAGETYPES = "fitImage"
 
-DTB_LOAD = "0x90000000"
+UBOOT_DTB_LOADADDRESS = "0x90000000"
 UBOOT_ENTRYPOINT = "0x80080000"
 
 UBOOT_CONFIG ??= "qspi-secure-boot qspi nand nor"
-- 
2.7.4



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

* [PATCH 14/15] ls2088ardb: use kernel-fitimage
  2018-07-11  9:35 [PATCH 01/15] ls1012afrdm-32b: use kernel-fitimage chunrong.guo
                   ` (11 preceding siblings ...)
  2018-07-11  9:35 ` [PATCH 13/15] ls2088ardb-be: " chunrong.guo
@ 2018-07-11  9:35 ` chunrong.guo
  2018-07-11  9:35 ` [PATCH 15/15] ls1043ardb-be: " chunrong.guo
  13 siblings, 0 replies; 15+ messages in thread
From: chunrong.guo @ 2018-07-11  9:35 UTC (permalink / raw)
  To: meta-freescale; +Cc: chunrong.guo

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

*Inhert kernel-fitimage bbclass

*Update  KERNEL_IMAGETYPES

*UBOOT_DTB_LOADADDRESS instead of DTB_LOAD

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

diff --git a/conf/machine/ls2088ardb.conf b/conf/machine/ls2088ardb.conf
index a23f762..fdd9bf0 100644
--- a/conf/machine/ls2088ardb.conf
+++ b/conf/machine/ls2088ardb.conf
@@ -9,10 +9,10 @@ require conf/machine/include/arm/arch-arm64.inc
 
 MACHINEOVERRIDES =. "fsl-lsch3:ls2088a:"
 
-KERNEL_CLASSES  = " kernel-itbimage "
-KERNEL_IMAGETYPES = "itbImage"
+KERNEL_CLASSES  = " kernel-fitimage "
+KERNEL_IMAGETYPES = "fitImage"
 
-DTB_LOAD = "0x90000000"
+UBOOT_DTB_LOADADDRESS = "0x90000000"
 UBOOT_ENTRYPOINT = "0x80080000"
 
 UBOOT_CONFIG ??= "qspi-secure-boot qspi nand nor"
-- 
2.7.4



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

* [PATCH 15/15] ls1043ardb-be: use kernel-fitimage
  2018-07-11  9:35 [PATCH 01/15] ls1012afrdm-32b: use kernel-fitimage chunrong.guo
                   ` (12 preceding siblings ...)
  2018-07-11  9:35 ` [PATCH 14/15] ls2088ardb: " chunrong.guo
@ 2018-07-11  9:35 ` chunrong.guo
  13 siblings, 0 replies; 15+ messages in thread
From: chunrong.guo @ 2018-07-11  9:35 UTC (permalink / raw)
  To: meta-freescale; +Cc: chunrong.guo

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

*Inhert kernel-fitimage bbclass

*Update  KERNEL_IMAGETYPES

*UBOOT_DTB_LOADADDRESS instead of DTB_LOAD

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

diff --git a/conf/machine/ls1043ardb-be.conf b/conf/machine/ls1043ardb-be.conf
index 92743b7..ef80001 100644
--- a/conf/machine/ls1043ardb-be.conf
+++ b/conf/machine/ls1043ardb-be.conf
@@ -11,10 +11,10 @@ require conf/machine/include/arm/arch-arm64.inc
 
 MACHINEOVERRIDES =. "fsl-lsch2:ls1043a:"
 
-KERNEL_CLASSES  = " kernel-itbimage "
-KERNEL_IMAGETYPES = "itbImage"
+KERNEL_CLASSES  = " kernel-fitimage "
+KERNEL_IMAGETYPES = "fitImage"
 
-DTB_LOAD = "0x90000000"
+UBOOT_DTB_LOADADDRESS = "0x90000000"
 UBOOT_ENTRYPOINT = "0x80080000"
 
 UBOOT_CONFIG ??= "nand sdcard nor"
-- 
2.7.4



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

end of thread, other threads:[~2018-07-11 23:12 UTC | newest]

Thread overview: 15+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-07-11  9:35 [PATCH 01/15] ls1012afrdm-32b: use kernel-fitimage chunrong.guo
2018-07-11  9:35 ` [PATCH 02/15] ls1012afrdm: " chunrong.guo
2018-07-11  9:35 ` [PATCH 03/15] ls1012afrwy: " chunrong.guo
2018-07-11  9:35 ` [PATCH 04/15] ls1012ardb-32b: " chunrong.guo
2018-07-11  9:35 ` [PATCH 05/15] ls1012ardb: " chunrong.guo
2018-07-11  9:35 ` [PATCH 06/15] ls1043ardb-32b: " chunrong.guo
2018-07-11  9:35 ` [PATCH 07/15] ls1043ardb: " chunrong.guo
2018-07-11  9:35 ` [PATCH 08/15] ls1046ardb: " chunrong.guo
2018-07-11  9:35 ` [PATCH 09/15] ls1046ardb-32b: " chunrong.guo
2018-07-11  9:35 ` [PATCH 10/15] ls1046ardb-be: " chunrong.guo
2018-07-11  9:35 ` [PATCH 11/15] ls1088ardb-be: " chunrong.guo
2018-07-11  9:35 ` [PATCH 12/15] ls1088ardb: " chunrong.guo
2018-07-11  9:35 ` [PATCH 13/15] ls2088ardb-be: " chunrong.guo
2018-07-11  9:35 ` [PATCH 14/15] ls2088ardb: " chunrong.guo
2018-07-11  9:35 ` [PATCH 15/15] ls1043ardb-be: " chunrong.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.