Hi @philipp1 !
Now I got it
According to that documentation, you should remove the license line:
- Remove the license property to bypass the acceptance check. Note: This will automatically accept all licenses in the image.
You can also see that there is a minus before the "license":"general license"
and the line is read, just like in a git diff
(TBH, I didn’t quickly get it at first , but it is there.)
So, seems like that you need:
TEZI_EULA_FILE = ""
1.1. maybe this is not mandatory… I am not currently sureTEZI_EULA_URL = ""
2.1. so you have no issues withimage_type_tezi.bbclass
trying to download itTEZI_SHOW_EULA_LICENSE = 0
3.1. so thelicense: "something"
line won’t be in your resultingimage.json
3.2. this variable is defined intdx-base.inc
, which is used by the distro conf files (e.g.tdx-xwayland.conf
), so it is possible that you need to “create” your own distro (based on the distro that you are already using) for your redefinition of this variable to be picked up.
I came up with this just by looking at the layers/recipes. In other words, I didn’t try it myself yet. Kindly try this on your side and let me know how it goes.
Looking further, seems like the way to do it is by creating your own image_type_tezi.bbclass
, based on Toradex’s.
This other thread might be useful for you:
Best regards,