Hi, I’m the Toradex AI Assistant.
I might make mistakes or occasionally get you wrong. Our support team will step in if needed.
Based on the documentation, I can help you configure Toradex Easy Installer to display only your custom Zeroconf server images and hide the default Toradex feeds.
Configuration Solution
The behavior you’re looking for can be controlled using a tezi_config.json configuration file(1). This file allows you to configure which image feeds are displayed in TEZi.
Configuration File Format
The tezi_config.json file should contain the following properties(1):
{
"config_format": 1,
"image_lists": [
"http://192.168.10.2:8008/image_list.json"
],
"show_default_feed": false,
"show_3rdparty_feed": false
}
(1)
Key Properties
show_default_feed: Set to false to hide the default image feed from Toradex servers(1)
show_3rdparty_feed: Set to false to hide the 3rd party image feed(1)
image_lists: You can optionally specify additional HTTP image sources, though your Zeroconf server should be automatically detected(1)
Zeroconf Server Configuration
Since you’re using Zeroconf, ensure your server announces itself properly with an AVAHI service(2). The service should include:
<?xml version="1.0" standalone='no'?>
<!DOCTYPE service-group SYSTEM "avahi-service.dtd">
<service-group>
<name replace-wildcards="yes">Custom Toradex Easy Installer Feed</name>
<service>
<type>_tezi._tcp</type>
<port>80</port>
<txt-record>name=Custom Toradex Easy Installer Feed</txt-record>
<txt-record>path=/path/image_list.json</txt-record>
<txt-record>enabled=1</txt-record>
<txt-record>https=0</txt-record>
</service>
</service-group>
(2)
Implementation Notes
- File Location: The
tezi_config.json file needs to be accessible to TEZi during startup(1)
- Persistence: This configuration approach should provide the persistent behavior you need, unlike manual feed menu changes
- Production Use: This solution is well-suited for production environments where you want to restrict operators to only approved images(2)
Automatic Installation
For production scenarios, you can also set the autoinstall property to true in your image’s image.json file, which will automatically install the image when detected(2)(3).
This configuration approach should give you the control you need over which image feeds are displayed in TEZi while maintaining the benefits of your Zeroconf server setup.
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.