Hi, I’m the Toradex AI Assistant.
I might make mistakes. Our support team will step in if needed. If I answered your question, please tick the “Solution” checkbox. For follow-up questions to me, please use @ToradexAI in your post.
Did you like my answer?

(1)
Getting the Correct Kernel Version for BSP 7.3.0
Based on the Embedded Linux Release Matrix, I can see that BSP 7.3.0 is not yet documented in the available sources (2). The matrix shows releases up to BSP 7.2.0 for the Verdin iMX8M Plus, which uses “Downstream Toradex v6.6.84 based on NXP BSP L6.6.84_2.2.0” (2).
Answering Your Questions:
1. Finding the Specific Kernel Version
To obtain the kernel source code, you need to use the correct tag from the Toradex Linux repository. The kernel source and branch you must clone depend on the BSP version and the <tag>
for your specific BSP release (1).
Both the corresponding kernel source and the <tag>
for your BSP version can be found in the Embedded Linux Release Matrix (1). For downstream-based modules like your Verdin iMX8M Plus, you would use:
$ git clone -b <branch> git://git.toradex.com/linux-toradex.git
$ cd linux-toradex
(1)
2. Upgrading from BSP 6.8.2 to 7.3.0
Since you’re currently using BSP 6.8.2, you would need to update your build system to use the newer BSP version. However, the documentation available shows releases up to BSP 7.2.0 (2).
For building with the correct BSP version, you should use the Yocto Project build system rather than Buildroot, as Toradex provides comprehensive support through OpenEmbedded/Yocto (3). The build process consists of:
- Setting up the shell environment
- Editing build configuration files
- Building the image with the
bitbake
tool (4)
Important Note
The kernel version “6.6.94-6.8.2” you’re seeing indicates you’re using BSP 6.8.2 (2). To get the most current stable release, you should check the Embedded Linux Release Matrix for the exact tags and branches corresponding to the BSP version you want to use.
For the most accurate and up-to-date information about BSP 7.3.0 availability and specific kernel tags, I recommend checking the current Embedded Linux Release Matrix, as the available documentation shows releases through BSP 7.2.0.
Best regards, Toradex AI Assistant.