From 1306bbd3ee5a1605b27eedcc9d1c40e185f0cc04 Mon Sep 17 00:00:00 2001 From: Francisco Gil Martinez Date: Fri, 11 Sep 2020 11:38:01 +0200 Subject: [PATCH] ccimx8mn: remove the soc type from overlays With the previous solution we would need to generate multiple overlays for each soc_type, so if we have a new soc type (for example the solo), we would need to generate 3 different overlays. Signed-off-by: Francisco Gil Martinez --- .../recipes-bsp/u-boot/u-boot-dey/ccimx8mn-dvk/boot.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/meta-digi-arm/recipes-bsp/u-boot/u-boot-dey/ccimx8mn-dvk/boot.txt b/meta-digi-arm/recipes-bsp/u-boot/u-boot-dey/ccimx8mn-dvk/boot.txt index cfd7ac100..cbf78b4b2 100644 --- a/meta-digi-arm/recipes-bsp/u-boot/u-boot-dey/ccimx8mn-dvk/boot.txt +++ b/meta-digi-arm/recipes-bsp/u-boot/u-boot-dey/ccimx8mn-dvk/boot.txt @@ -21,15 +21,15 @@ if test -n "${module_ram}"; then setexpr module_has_bt ${module_has_bt} / 20000 if test "${module_has_bt}" = "1"; then - setenv overlays cc${soc_type}_ov_bt.dtbo,${overlays} + setenv overlays ccimx8mn_ov_bt.dtbo,${overlays} fi if test "${module_has_wifi}" = "1"; then - setenv overlays cc${soc_type}_ov_wifi.dtbo,${overlays} + setenv overlays ccimx8mn_ov_wifi.dtbo,${overlays} fi if test "${som_hv}" = "1"; then - setenv overlays cc${soc_type}_ov_v1.dtbo,${overlays} + setenv overlays ccimx8mn_ov_v1.dtbo,${overlays} fi fi