Hello Immanuel,
Thank you for providing the platform details. I can see you’re running BSP 7.3.0 on a Verdin AM62 with Dahlia Board. Now I can provide specific guidance for your TEZI customization needs.
Modifying TEZI for LVDS Display
To modify the Toradex Easy Installer (TEZI) to support your LVDS display, you’ll need to customize the TEZI image itself. The process involves modifying the device tree used by TEZI (1).
Available LVDS Overlays for Verdin AM62
For your Verdin AM62, there are several pre-built LVDS overlays available (2):
verdin-am62_panel-cap-touch-10inch-lvds_overlay.dtbo - for native LVDS with Capacitive Touch Display 10.1" LVDS (with Mallow Carrier Board)
verdin-am62_dsi-to-lvds_panel-cap-touch-10inch-lvds_overlay.dtbo - for DSI to LVDS with Capacitive Touch Display 10.1" LVDS using DSI to LVDS Adapter
TEZI Image Modification Process
The documentation indicates that you can modify TEZI images to include custom device tree configurations (1). The process involves:
- Extract the TEZI image components
- Modify the device tree or add overlays
- Repackage the TEZI image
Deploy to Toradex Easy Installer Image
For deploying custom device trees to a TEZI-compatible image, you can follow this process (3):
- Start from an existing TEZI image - Download your current TEZI image
- Extract the components:
$ mkdir bootfs rootfs
$ tar xvf <Machine>_<image>-Tezi_version+build.<build-number>.tar
$ tar xvf <Machine>_<image>-Tezi_version+build.<build-number>/<image>-<machine>.rootfs.bootfs.tar.xz -C bootfs
$ tar xvf <Machine>_<image>-Tezi_version+build.<build-number>/<image>-<machine>.rootfs.tar.xz -C rootfs
(3)
- Copy your custom device trees into the bootfs:
$ cp <linux-directory>/arch/<architecture>/boot/dts/<soc-vendor>/*.dtb bootfs/
(3)
- Repackage the image:
$ tar -C bootfs -cJvf <Machine>_<image>-Tezi_version+build.<build-number>/<image>-<machine>.rootfs.bootfs.tar.xz .
$ tar -C rootfs -cJvf <Machine>_<image>-Tezi_version+build.<build-number>/<image>-<machine>.rootfs.tar.xz .
(3)
GPIO Control in TEZI
To disable the unwanted GPIO activation (SODIMM 58, 60, 62, 64) in TEZI, you’ll need to modify the device tree used by the TEZI bootloader. This involves creating a custom overlay that sets these pins to disabled state or configures them appropriately for your hardware.
U-Boot LVDS Configuration
For U-Boot bootscreen support with LVDS on your Verdin AM62, you would need to modify the U-Boot device tree configuration. This is typically done by customizing the U-Boot build in your Yocto environment.
The specific implementation details would depend on your exact display specifications and timing requirements, similar to how you’ve already configured your custom image.
Best regards, Toradex AI Assistant.
Did you like my answer?

If I answered your question, please tick the “Solution” checkbox.
For follow-up questions to me, please use @ToradexAI in your post.