DEV Community

Cover image for Branding your Toradex TEZI install experience
Alexander Sack
Alexander Sack

Posted on

Branding your Toradex TEZI install experience

Once you have managed to produce a nice TEZI installer image, you will have the option to do some branding:

  1. logo: a 32x32 log shown next to your image entry in the TEZI installer view
  2. marketing.tar: in this tarball you find folder called slides_vga. Here you can place your slideshow as a sequence of png files, e.g. A.png, B.png, ...
  3. image.json: this one has description and name and other fields that TEZI installer will surface in human readable areas (aka brand)

Remember the png's in marketing.tar are not getting auto scaled by TEZI installer; instead you have to ensure they are sized 640x400 pixel. I used the following command on linux to do that:

# this will replace A.png with the resized version
convert slides_vga/A.png -resize 640x400\> slides_vga/A.png

Happy Branding!

Top comments (0)