From 68a1940d7f9924a7bb1746fd702542b773204c96 Mon Sep 17 00:00:00 2001 From: Hector Palacios Date: Mon, 10 Apr 2017 11:27:22 +0200 Subject: [PATCH] ccimx6ulstarter/sbc: select correct fdt_file for variant 0x04 Variant 0x04 has wireless and must select the '-wb' device tree. Signed-off-by: Hector Palacios https://jira.digi.com/browse/DEL-4100 --- .../recipes-bsp/u-boot/u-boot-dey-2015.04/ccimx6ulsbc/boot.txt | 2 +- .../u-boot/u-boot-dey-2015.04/ccimx6ulstarter/boot.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/meta-digi-arm/recipes-bsp/u-boot/u-boot-dey-2015.04/ccimx6ulsbc/boot.txt b/meta-digi-arm/recipes-bsp/u-boot/u-boot-dey-2015.04/ccimx6ulsbc/boot.txt index ae259dac9..41fabd40f 100644 --- a/meta-digi-arm/recipes-bsp/u-boot/u-boot-dey-2015.04/ccimx6ulsbc/boot.txt +++ b/meta-digi-arm/recipes-bsp/u-boot/u-boot-dey-2015.04/ccimx6ulsbc/boot.txt @@ -11,7 +11,7 @@ else # # Set device tree filename depending on the hardware variant # - if test "${module_variant}" = "0x02"; then + if test "${module_variant}" = "0x02" || test "${module_variant}" = "0x04"; then setenv fdt_file zImage-imx6ul-ccimx6ulsbc-wb.dtb elif test "${module_variant}" = "0x03"; then setenv fdt_file zImage-imx6ul-ccimx6ulsbc.dtb diff --git a/meta-digi-arm/recipes-bsp/u-boot/u-boot-dey-2015.04/ccimx6ulstarter/boot.txt b/meta-digi-arm/recipes-bsp/u-boot/u-boot-dey-2015.04/ccimx6ulstarter/boot.txt index 728e6e4c7..875f453de 100644 --- a/meta-digi-arm/recipes-bsp/u-boot/u-boot-dey-2015.04/ccimx6ulstarter/boot.txt +++ b/meta-digi-arm/recipes-bsp/u-boot/u-boot-dey-2015.04/ccimx6ulstarter/boot.txt @@ -11,7 +11,7 @@ else # # Set device tree filename depending on the hardware variant # - if test "${module_variant}" = "0x02"; then + if test "${module_variant}" = "0x02" || test "${module_variant}" = "0x04"; then setenv fdt_file zImage-imx6ul-ccimx6ulstarter-wb.dtb elif test "${module_variant}" = "0x03"; then setenv fdt_file zImage-imx6ul-ccimx6ulstarter.dtb