tgamblin has quit [Remote host closed the connection]
tgamblin has joined #yocto
sakoman has quit [Quit: Leaving.]
sakoman has joined #yocto
<bq>
is there a way for me to easily prevent changes being made to copyleft-licensed software recipes in a proprietary layer? Basically I want to make sure my devs put all OSS modifications into our OSS layers, and only.proprietary stuff in our proprietary layers
<bq>
I can keep proprietary stuff out of our OSS/copyleft ikages with INCOMPATIBLE_LICENSE but I'm having a hard time thinking of ways to prevent the inverse case
<Guest4>
Hello, What is the best way to include a public ssh key in an authorized_keys file in the user home .ssh directory? I tried with a recipe, but it change owner of the user home. /etc/skel is only for a directory structure.
zpfvo has joined #yocto
rfuentess has quit [Remote host closed the connection]
vladest has quit [Ping timeout: 264 seconds]
rfuentess has joined #yocto
<rburton>
you can use a recipe but you'll need to set the right ownership
<tct>
hey guys, I am working with a Toradex SOM + dev kit. I am trying to add a DTO to support a touchscreen. the Toradex documentation of the Yocto BSP talks about "Have the overlays listedi n `overlays.txt`, making sure they are enabled.".
<tct>
however, I don't really see an `overlays.txt` anywhere
<tct>
I'm a bit stuck on this overlays.txt situation. could somebody provide any input or guidance on that?
bryanb has joined #yocto
<tct>
also, their pre-built images have a /proc/device-tree/chosen/overlays/ directory. but my custom built yocto image does not. Am I missing some yocto configuration?
Guest4 has quit [Quit: Client closed]
pmn has left #yocto [WeeChat 3.8]
<pierrelesp>
Hi everyone, i'm currently experiencing an error during the do_compile step of libdnf_0.66.0 when building core-image-base. It seems this problem is solved in libdnf master but not in 0.66.0. Any idea to fix this error the good way ?
d-s-e has quit [Ping timeout: 240 seconds]
<tct>
pierrelesp, I guess you could place the corresponding patch in your custom layer and apply that prior to building
<tct>
that seems about right. that's also what I have going (except that I don't have a defconfig)
<yocton>
linex[m]: your .cfg file is ypically only the configs you are interessed in. The rest is given by the default config in the kernel you use.
<yocton>
You can either see the resulting config in the build dir of the kernel (.config) or at runtime with CONFIG_IKCONFIG (which is what I usually do while debugging this stuff)
<linex[m]>
tgamblin: yeah that's what I tried intuitively, but the docs are very short on that part and just point to SRC_URI and the bblayers without mentioning an append on the kernel which confused me
<linex[m]>
but also my problem is that that which I've tried did not work 🤔
<linex[m]>
nvm found a mistyped string
zpfvo has quit [Ping timeout: 250 seconds]
d-s-e has quit [Quit: Konversation terminated!]
<linex[m]>
thanks :)
zpfvo has joined #yocto
ptsneves1 has quit [Read error: Connection reset by peer]
rfuentess has quit [Remote host closed the connection]
zpfvo has quit [Remote host closed the connection]
alessioigor has quit [Quit: alessioigor]
alessioigor has joined #yocto
pabigot has quit [Ping timeout: 250 seconds]
amitk_ has joined #yocto
paulg has quit [Ping timeout: 250 seconds]
<tlwoerner>
will there be a project technical call tomorrow?
pabigot has joined #yocto
<sakoman>
tlwoerner: yes, as far as I know -- next week it will be canceled for the US July 4 holiday
kscherer has quit [Quit: Konversation terminated!]
<tct>
A basic syntax question: there is VARIABLE:append - is there also a way to remove something from such a variable? for example, if I have a vendor machine config and I'd like to remove something?
amitk_ has quit [Ping timeout: 264 seconds]
<tgamblin>
tct: it depends on the variable (I'm not sure which ones do and don't support the syntax), but if you search oe-core you will find syntax like this: PACKAGECONFIG:remove:mipsarch = "seccomp"
<tgamblin>
You don't need the third part either, e.g. DEPENDS:remove = "libgcc-initial"
<tgamblin>
s/don't need/don't necessarily need/
Haxxa has quit [Quit: Haxxa flies away.]
<tct>
tgamblin, the variable in questin would be: TEZI_EXTERNAL_KERNEL_DEVICETREE_BOOT
<tct>
which is Toradex specific sauce for device tree management which is truly ruining my day.
Haxxa has joined #yocto
<tgamblin>
tct: I'm guessing TEZI_EXTERNAL_KERNEL_DEVICETREE_BOOT:remove = " <thing>", but I'm not familiar with the Toradex stuff unfortunately
<tct>
tgamblin, thanks for your input! I am new to Yocto so I am also struggling with basic stuff such as knowing when to add a leading space when doing an :append for example :D
<tgamblin>
tct: No worries. I've taken to doing the prepended space out of habit :)
<tgamblin>
tct: looks like the docs (even 2.0) say that you need to control the spacing yourself when using that syntax, so yes it is needed if you're doing the :append or :remove that way
<tct>
tgamblin, just read up on that - thank you very much!