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 <francisco.gilmartinez@digi.com>
This commit is contained in:
Francisco Gil Martinez 2020-09-11 11:38:01 +02:00
parent e4c3104712
commit 1306bbd3ee
1 changed files with 3 additions and 3 deletions

View File

@ -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