ccimx8x: u-boot: add support for variant 0x06 in U-Boot scripts

Signed-off-by: Hector Palacios <hector.palacios@digi.com>

https://jira.digi.com/browse/DEL-6641
This commit is contained in:
Hector Palacios 2019-07-01 11:20:04 +02:00
parent 4167ab1769
commit 964b8eff2c
3 changed files with 8 additions and 2 deletions

View File

@ -36,7 +36,8 @@ else
test "${module_variant}" = "0x04"; then test "${module_variant}" = "0x04"; then
setenv fdt_file ccimx${soc_type}-sbc-express-wb.dtb setenv fdt_file ccimx${soc_type}-sbc-express-wb.dtb
elif test "${module_variant}" = "0x03" || elif test "${module_variant}" = "0x03" ||
test "${module_variant}" = "0x05"; then test "${module_variant}" = "0x05" ||
test "${module_variant}" = "0x06"; then
setenv fdt_file ccimx${soc_type}-sbc-express.dtb setenv fdt_file ccimx${soc_type}-sbc-express.dtb
else else
setenv fdt_file ccimx${soc_type}-sbc-express-wb.dtb setenv fdt_file ccimx${soc_type}-sbc-express-wb.dtb

View File

@ -36,7 +36,8 @@ else
test "${module_variant}" = "0x04"; then test "${module_variant}" = "0x04"; then
setenv fdt_file ccimx${soc_type}-sbc-pro-wb.dtb setenv fdt_file ccimx${soc_type}-sbc-pro-wb.dtb
elif test "${module_variant}" = "0x03" || elif test "${module_variant}" = "0x03" ||
test "${module_variant}" = "0x05"; then test "${module_variant}" = "0x05" ||
test "${module_variant}" = "0x06"; then
setenv fdt_file ccimx${soc_type}-sbc-pro.dtb setenv fdt_file ccimx${soc_type}-sbc-pro.dtb
else else
setenv fdt_file ccimx${soc_type}-sbc-pro-wb.dtb setenv fdt_file ccimx${soc_type}-sbc-pro-wb.dtb

View File

@ -32,6 +32,8 @@ else
elif test "${module_variant}" = "0x02" || elif test "${module_variant}" = "0x02" ||
test "${module_variant}" = "0x03"; then test "${module_variant}" = "0x03"; then
setenv INSTALL_UBOOT_FILENAME imx-boot-ccimx8x_sbc_pro2GB.bin; setenv INSTALL_UBOOT_FILENAME imx-boot-ccimx8x_sbc_pro2GB.bin;
elif test "${module_variant}" = "0x06"; then
setenv INSTALL_UBOOT_FILENAME imx-boot-ccimx8x_sbc_pro512MB.bin;
fi fi
fi fi
fi fi
@ -49,6 +51,8 @@ else
echo " => setenv INSTALL_UBOOT_FILENAME imx-boot-ccimx8x_sbc_pro1GB.bin"; echo " => setenv INSTALL_UBOOT_FILENAME imx-boot-ccimx8x_sbc_pro1GB.bin";
echo " - For a QuadXPlus CPU with 2GB DDR3, run:"; echo " - For a QuadXPlus CPU with 2GB DDR3, run:";
echo " => setenv INSTALL_UBOOT_FILENAME imx-boot-ccimx8x_sbc_pro2GB.bin"; echo " => setenv INSTALL_UBOOT_FILENAME imx-boot-ccimx8x_sbc_pro2GB.bin";
echo " - For a DualX CPU with 512MB DDR3, run:";
echo " => setenv INSTALL_UBOOT_FILENAME imx-boot-ccimx8x_sbc_pro512MB.bin";
echo ""; echo "";
echo "2. Run the install script again."; echo "2. Run the install script again.";
echo ""; echo "";