wooosaiiii has quit [Remote host closed the connection]
wooosaiiii has joined #yocto
wooosaiiii has quit [Remote host closed the connection]
wooosaiiii has joined #yocto
florian_kc has joined #yocto
wooosaiiii has quit [Remote host closed the connection]
wooosaiiii has joined #yocto
ablu has quit [Ping timeout: 260 seconds]
ablu has joined #yocto
JJalling has joined #yocto
<JJalling>
Hi all, isn't possible to have kernel modules rdepend on other kernel modules?
<RP>
JJalling: that should work fine
<JJalling>
I tried to add RDEPENDS:${PN} += "kernel-module-foo" in my own module recipe, but the module "foo" isn't included in my image
<RP>
JJalling: I'd firstly check the dependency did make it to the package you think it should. I'd also check using bitbake-getvar what that variable ends up set to
<JJalling>
Do you mean something like this? bitbake-getvars -r my-kernel-module RDEPENDS:my-kernel-module ?
wooosaiiii has quit [Remote host closed the connection]
wooosaiiii has joined #yocto
wooosaiiii has quit [Remote host closed the connection]
wooosaiiii has joined #yocto
wooosaiiii has quit [Remote host closed the connection]
wooosaiiii has joined #yocto
wooosaiiii has quit [Remote host closed the connection]
wooosaiiii has joined #yocto
<JJalling>
The RDEPENDS looks fine, but the module is not in the image
<RP>
JJalling: yes, I meant something like that. Next I'd look at the generated package file for the module, see what it's dependencies look like
thomas25 has quit [Ping timeout: 248 seconds]
<JJalling>
Thanks, I'll have a look
<KanjiMonster>
JJalling: as a "is it plugged in" question, is your module itself in the image?
<JJalling>
KanjiMonster :) thanks for asking. Yes, my own module is in the image
<vmeson>
SandeepRaju: cool. The next stop after mathieudb's build is: https://git.yoctoproject.org/poky/log/?h=master-next . Take a look there to see the number of patches ahead of you. A merge can take some time.
frgo has quit [Read error: Connection reset by peer]
frgo_ has joined #yocto
ChristosG has joined #yocto
florian has joined #yocto
dankm has quit [Remote host closed the connection]
dankm has joined #yocto
ChristosG has quit [Quit: Client closed]
goliath has joined #yocto
SandeepRaju has quit [Quit: Client closed]
alperak has quit [Quit: Connection closed for inactivity]
ptsneves has joined #yocto
pilonsi has quit [Ping timeout: 248 seconds]
ptsneves has quit [Ping timeout: 265 seconds]
pilonsi has joined #yocto
savolla has quit [Quit: WeeChat 4.6.3]
pilonsi has quit [Ping timeout: 272 seconds]
pilonsi has joined #yocto
cyxae has quit [Quit: cyxae]
Wouter0100 has joined #yocto
druppy has joined #yocto
druppy has quit [Ping timeout: 265 seconds]
<mischief>
is it possible to construct a multi-line config for KERNEL_MODULE_PROBECONF?
<mischief>
i'd like to both blacklist and provide options
<RP>
mischief: read from a file using anon python?
* RP
just thinking out loud
<mischief>
how would that look for assigning `module_conf_foo = "..."`? i'm not very familiar at which stage anon python runs or what is available.. i assume ${WORKDIR} isn't populated from SRC_URI yet?
florian has quit [Ping timeout: 265 seconds]
<mischief>
maybe an extra task would make sense? but that seems like a lot of contortions just to be able to write \n
<RP>
mischief: I was thinking something along the lines of XXX = "${@open("${COREBASE}/meta/recipe-xxx/yyy/filename").read()}"
<RP>
mischief: we don't support injection of newlines into variables very easily
<RP>
well, we do, but they're called functions
<RP>
mischief: write it as a string in a python function and return it that way
<RP>
that would be easiest
<mischief>
ohh. using `${@`? may work.
<RP>
mischief: use ${@xxx} to call a python function and return a multiline string