CombatWombat42 has quit [Ping timeout: 264 seconds]
wooosaiiii1 has joined #yocto
wooosaiiii has quit [Ping timeout: 252 seconds]
wooosaiiii1 is now known as wooosaiiii
<bq>
anyone using `kas` knows how to get it to perform submodule clones? xyproblem here is I'm kassifying an old 2016-era stack and it requires bitbake to be cloned inside oe-core. This creates an ordering problem with kas, so I thought maybe I could add bitbake as a submod on a private branch of oe-core instead...
<bq>
Alas it doesn't perform a recursive clone/checkout, so submods don't appear to work around the ordering problem
jmd has joined #yocto
jmd has quit [Remote host closed the connection]
goliath has joined #yocto
jmd has joined #yocto
rob_w has joined #yocto
CrazyGecko has joined #yocto
mckoan|away is now known as mckoan
rfuentess has joined #yocto
zpfvo has joined #yocto
Kubu_work has joined #yocto
gsalazar has joined #yocto
enok has joined #yocto
alperak has joined #yocto
florian has joined #yocto
Jones42 has joined #yocto
leon-anavi has joined #yocto
frieder has joined #yocto
florian_kc has joined #yocto
Jones42_ has joined #yocto
Jones42__ has joined #yocto
Jones42 has quit [Ping timeout: 252 seconds]
Jones42_ has quit [Read error: Connection reset by peer]
altru has joined #yocto
altru has quit [Ping timeout: 250 seconds]
Guest13 has joined #yocto
mvlad has joined #yocto
<Guest13>
hi. im still having problems with my package not being included inmy rootfs.
<Guest13>
RDEPENDS:${PN} += "abc"
<Guest13>
if i build image, it does not build it.
<Guest13>
however, if i build it manually bitbake abc, it builds, but still not being included into my rootfs
<Guest13>
how can i debug it
<Guest13>
the rdependsis on my packagegroup
<qschulz>
Guest13: check that your packagegroup actually have abc in its RDEPENDS
<qschulz>
Guest13: check that your image actually install the proper packagegroup package
<qschulz>
Guest13: check that you don't have multiple recipes named abc and yours is not picked
jmd has quit [Remote host closed the connection]
<Guest13>
and how do i check that
<Guest13>
1. rdepends ... += "abc" is a line in my packagegroup, so im assuming yes
<Guest13>
2. how
<Guest13>
3. dont think so, but how can i check this with bitbake tools
<qschulz>
1. I think you could use bitbake-getvar for this
<qschulz>
but if you cannot bitbake -e will do (pipe to a file, you get millions of lines)
<qschulz>
you want to pass the name of the packagegroup recipe to it, not the image
Jones42_ has joined #yocto
<qschulz>
2. the easiest I know of is to just remove the recipe and see if your image still builds
<qschulz>
otherwise probably bitbake -g <image> and look into one of the generated files, it's probably something like installed-packages or something like that
<qschulz>
if your packagegroup is in there, you're good
<qschulz>
3. bitbake-layers show-recipes -m should be enough I guess
<qschulz>
though I am not sure how it handles differently named recipes that PROVIDES the same recipe /me shrugs
Jones42__ has quit [Ping timeout: 268 seconds]
Jones42_ has quit [Read error: Connection reset by peer]
Guest0 has joined #yocto
Articulus has quit [Quit: Leaving]
<Guest13>
interesting. package shows in recipes.txt (bitbake-layers show-recipes) but it DOES NOT show in task-depends and pn-buildlist
enok has quit [Ping timeout: 264 seconds]
enok has joined #yocto
<rburton>
Guest13: build the packagegroup, does that build the recipe?
enok has quit [Ping timeout: 240 seconds]
guestkati has joined #yocto
guestkati has left #yocto [#yocto]
guestkati has joined #yocto
alessioigor has joined #yocto
enok has joined #yocto
guestkati has quit [Ping timeout: 250 seconds]
ys has joined #yocto
Guest0 has quit [Quit: Client closed]
ys has quit [Quit: Client closed]
ys has joined #yocto
enok has quit [Ping timeout: 264 seconds]
Saur_Home51 has quit [Quit: Client closed]
Saur_Home51 has joined #yocto
sfo has quit [Remote host closed the connection]
tostr has quit [Write error: Broken pipe]
jonesv has quit [Remote host closed the connection]
tleb has quit [Remote host closed the connection]
raghavgururajan has quit [Remote host closed the connection]
raghavgururajan has joined #yocto
jonesv has joined #yocto
sfo has joined #yocto
tleb has joined #yocto
tostr has joined #yocto
jmiehe has joined #yocto
cbeznea has joined #yocto
ys has quit [Ping timeout: 250 seconds]
jmiehe has quit [Quit: jmiehe]
jmiehe has joined #yocto
enok has joined #yocto
jmiehe has quit [Client Quit]
jmiehe has joined #yocto
jmiehe has quit [Client Quit]
rob_w has quit [Remote host closed the connection]
mdb977 has joined #yocto
Jones42 has joined #yocto
<mdb977>
Hi there, I have an python function (do_foo) added to ROOTFS_PREPROCESS_COMMAND. Now, I want to make an inter-task dependency and wrote "do_foo[depends] = "somerecipe-native:do_bar". But, this seems not to work, somerecipe-native is not added to my buildlist. Where is my error in thinking?
<rburton>
mdb977: depends are between tasks, and a preprocess command isn't a task
<mdb977>
rburton: Thanks. Is there another way of expressing something like this?
<rburton>
add the dependency to do_rootfs when you add the preprocess command
<mdb977>
Thanks. I'll try.
goliath has quit [Quit: SIGSEGV]
frieder has quit [Quit: Leaving]
ys has joined #yocto
mdb977 has quit [Quit: Leaving]
jmd has joined #yocto
<Jones42>
OnkelUlla: a colleague recently pointed me towards https://git.yoctoproject.org/meta-security/tree/classes/dm-verity-img.bbclass . So now I'm a bit confused regarding the differences between that one and your proposed bbclass and why you made the effort of writing your own. Could you maybe enlighten me with a line or two?