khem has quit [Quit: Connection closed for inactivity]
rob_w has joined #yocto
dmoseley_ has joined #yocto
dmoseley has quit [Ping timeout: 252 seconds]
tortoise has quit [Server closed connection]
tortoise has joined #yocto
frieder has joined #yocto
zpfvo has joined #yocto
Kubu_work has joined #yocto
mros has joined #yocto
rfuentess has joined #yocto
danlor has joined #yocto
prabhakarlad has joined #yocto
belsirk has joined #yocto
rfuentess has quit [Ping timeout: 245 seconds]
zpfvo has quit [Ping timeout: 240 seconds]
Crofton has quit [Server closed connection]
Crofton has joined #yocto
zpfvo has joined #yocto
alessioigor has quit [Quit: alessioigor]
alessioigor has joined #yocto
leon-anavi has joined #yocto
rmmr has quit [Server closed connection]
rmmr has joined #yocto
florian__ has joined #yocto
vladest has quit [Remote host closed the connection]
vladest has joined #yocto
rburton has quit [Server closed connection]
rburton has joined #yocto
awafaa has quit [Server closed connection]
awafaa has joined #yocto
belsirk is now known as rfuentess
JPEW has quit [Server closed connection]
JPEW has joined #yocto
ptsneves has joined #yocto
Danct12 has quit [Read error: Connection reset by peer]
florian__ has quit [Ping timeout: 240 seconds]
prabhakar has quit [Ping timeout: 252 seconds]
prabhakarlad has quit [Ping timeout: 250 seconds]
prabhakar has joined #yocto
prabhakarlad has joined #yocto
olani- has joined #yocto
sugarbeet has quit [Server closed connection]
sugarbeet has joined #yocto
starblue has quit [Ping timeout: 255 seconds]
starblue has joined #yocto
neofutur has quit [Server closed connection]
neofutur has joined #yocto
<ablu>
Can I somehow hook into wic to sign some binaries after it is done with it's objcopy magic for systemd-boot? I do not see anything in the docs or code, so I assume there is nothing, but I am happy to be corrected :)
mckoan is now known as mckoan|away
Chocky1 has quit [Quit: Leaving.]
Chocky has joined #yocto
Chocky has quit [Client Quit]
Chocky has joined #yocto
mros has quit [Ping timeout: 250 seconds]
Chocky has quit [Client Quit]
Chocky has joined #yocto
Chocky has quit [Client Quit]
Chocky has joined #yocto
mros has joined #yocto
tnovotny has joined #yocto
rob_w has quit [Remote host closed the connection]
viric has joined #yocto
viric has left #yocto [#yocto]
viric has joined #yocto
<viric>
hello
<viric>
'devtool bitbake N' reruns the do_compile step, but I want to rerun the do_configure step.
<viric>
does anybody know how to achieve that?
<dvergatal>
bitbake <package> -c listtasks
<dvergatal>
and you'll see configure
<dvergatal>
viric: so just type bitbake <package> -c configure
<viric>
maybe it is do_configure ?
<dvergatal>
no do is just written in the
<dvergatal>
but for cli u remove it
<rburton>
bitbake will re-run if it thinks it needs to re-run (ie you changed configure options or depends)
<dvergatal>
acutally I've never tried it with that prefix
<viric>
rburton: right, I guess bitbake thinks it does not have to rerun it.
<viric>
553 tasks of which 553 didn't need to be rerun
<rburton>
you can force it with -C, bitbake recipe -C configure. that will do a full build of recipe but force configure to re-run
<jclsn>
Follow up question to yesterday's shell script. Is it discouraged to use shell variables in recipes? I think it is convenient to have everything of a function that does optional signing in this function instead of polluting the global namespace so to speak
<dvergatal>
rburton: oh nice to know something new, never tried that too +1
<jclsn>
But I have rarely seen shell variables in recipes as far as I remember
<dvergatal>
jclsn: you can use shell variables but you need to pass them with BB_ENV_PASSTHROUGH_ADDITIONS
<rburton>
jclsn: what do you mean by shell variables
<rburton>
jclsn: hard to write a shell task without using variables
<jclsn>
rburton: I have extended a recipe for a trusted application as follows http://ix.io/4L41
<jclsn>
I am using most variables inside the function. The TA_SIGNDIR needs to be a bitbake variable I guess, so it gets automatically created and deleted by bitbake. About the rest I am not sure
<rburton>
if you define a variable outside a task like TA_SIGNDIR then its a bitbake variable,and gets expanded _before the task is ran_ by bitbake
<jclsn>
Ah the BB_ENV_PASSTHROUGH seems to handle that for shell variables as well
<rburton>
ie bash doesn't see mkdir ${TA_SIGNDIR}, it sees mkdir ${WORKDIR}/ta_signdir
<viric>
rburton: it's linux... I saw there is a menuconfig task. Maybe that will do.
<rburton>
jclsn: i'd recommend not using environment variables and passthough, instead expect the variables to set in the configuration somewhere
<viric>
(I wanted devtool build to pick my updated config)
<jclsn>
rburton: the mkdir was still from when I was trying it with a shell variable. I removed it now
<rburton>
viric: force a re-run of configure then
jsbronder has quit [Server closed connection]
<jclsn>
rburton: So use bitbake variables only?
jsbronder has joined #yocto
<viric>
rburton: I hope the menuconfig will take care of all? let's see
<rburton>
jclsn: i expect the problem you're hitting is that ${FOO} will be expanded by *bitbake* before sh even sees the script. $FOO is left alone by bitbake and sh sees it.
<jclsn>
Why is TA_SIGNDIR not automatically created? I would expect this for a bitbake variable
<rburton>
what do you mean?
<jclsn>
I mean can convert it back to a shell variable, do a rm -rf $ta_signdir; mkdir $ta_signdir, but that does not seem optimal to me
<rburton>
oh, you mean mkdir'd?
<rburton>
also "convert back to a shell variable" is meaningless. its a bitbake variable, when the shell task is passed to sh the bitbake variables are expanded. shell doesn't see a variable, it sees the value.
<rburton>
MACHINE is a bitbake variable. i don't want bitbake to mkdir qemuarm64
<rburton>
CFLAGS is a bitbake variable, I really don't want it to mkdir "-g -Wall -O2"
<rburton>
do_sign[cleandirs] = "${TA_SIGNDIR}" will mean bitbake will automatically ensure that the references directory exists and is empty when the task runs
<viric>
rburton: bitbake -c menuconfig ... , followed of devtool build ..., worked perfect.
<jclsn>
So how would I do that? I did it successfully before in ${WORKDIR}, but I wanted to put all the signing files in their own directory that should be managed by bitbake
<jclsn>
rburton: Okay thanks, will try
<rburton>
if you want a directory to exist then mkdir is perfectly valid. cleandirs is the clever way to do it.
<jclsn>
Yeah, but I want to learn more about bitbake. Time to go a bit deeper. The last two years for me were about being able to do basic things. Now I am ready for more advanced stuff
<jclsn>
What about the I submitted to [meta-oe][PATCH] recipes-support: Add btop btw?
<jclsn>
Nobody replied anymore
<jclsn>
It is not a patch actually, but a new recipe. I used the wrong title
flynn378 has quit [Server closed connection]
flynn378 has joined #yocto
viric has left #yocto [thank you!]
zpfvo has quit [Ping timeout: 264 seconds]
zpfvo has joined #yocto
<rburton>
its still a patch
<rburton>
you'll have to ask the meta-oe maintainer, its probably just in the queue
<vmeson>
jclsn: I don't see it in my oe-dev folder. perhaps you aren't subscribed to the list so it's being manually filtered and therefore delayed.
<vmeson>
jclsn: would you be able to subscribe (assuming that you're not now), and resend with the conventional format: btop: Add recipe <version> or something like that.
shivamurthy has quit [Server closed connection]
shivamurthy has joined #yocto
Danct12 has joined #yocto
belsirk has joined #yocto
rfuentess has quit [Ping timeout: 258 seconds]
Guest78 has quit [Quit: Client closed]
danlor has quit [Quit: Client closed]
alessioigor has quit [Quit: alessioigor]
alessioigor has joined #yocto
<jclsn>
vmeson: Oh yeah I cancelled the subscription, because it was just flooding my inbox and I am not involved in any of the other mails. I had assumed my mail would still land in the list
<jclsn>
Is there not a way to contribute without being subscribed?
<rburton>
jclsn: you can turn off mail delivery whilst still being a member of the list
Shaun has joined #yocto
tnovotny has quit [Quit: Leaving]
Xagen has joined #yocto
zpfvo has quit [Ping timeout: 240 seconds]
zpfvo has joined #yocto
<jclsn>
Okay will try that
zpfvo has quit [Ping timeout: 240 seconds]
zpfvo has joined #yocto
<jclsn>
rburton: But how? There is Post, Subscribe, Unsubscribe
<rburton>
jclsn: subscription button on the left, change to No Email
Chocky has quit [Remote host closed the connection]
<rburton>
woop woop
<khem>
yay
<yocton>
Congrats, everyone! :-)
ecdhe_ has quit [Read error: Connection reset by peer]
linfax has quit [Ping timeout: 258 seconds]
ecdhe has joined #yocto
ecdhe has quit [Read error: Connection reset by peer]
<vmeson>
For those who might not click on LetoThe2nd's link: Yocto Project 4.3 Release is now available for download. -- Yay, thanks to everyone for their work on the release.
ecdhe has joined #yocto
<LetoThe2nd>
vmeson: hehe thanks. as the URL points to the official mailing list, I would think most people are ok with visiting it.
<smooge>
congrats to the Yocto team!
jmd has joined #yocto
frieder has quit [Remote host closed the connection]
ptsneves has quit [Quit: ptsneves]
ptsneves1 has joined #yocto
<ablu>
\o/
florian has quit [Quit: Ex-Chat]
ptsneves1 has quit [Ping timeout: 255 seconds]
florian_kc has quit [Ping timeout: 255 seconds]
prabhakarlad has quit [Quit: Client closed]
Minvera has quit [Remote host closed the connection]
Minvera has joined #yocto
Minvera has quit [Client Quit]
Minvera has joined #yocto
vladest has quit [Remote host closed the connection]
Kubu_work has quit [Quit: Leaving.]
<RP>
JPEW: changes are in, thanks :)
<JPEW>
\o/
vladest has joined #yocto
alessioigor has quit [Quit: alessioigor]
alessioigor has joined #yocto
marka has quit [Ping timeout: 255 seconds]
sgw has joined #yocto
tlhonmey has joined #yocto
sgw has quit [Ping timeout: 240 seconds]
sgw has joined #yocto
marka has joined #yocto
vladest has quit [Ping timeout: 252 seconds]
sgw has quit [Quit: Leaving.]
leon-anavi has quit [Quit: Leaving]
vladest has joined #yocto
florian_kc has joined #yocto
sakman has joined #yocto
dvergatal has quit [Ping timeout: 264 seconds]
dvergatal has joined #yocto
Chaser has quit [Quit: Chaser]
sgw has joined #yocto
alessioigor has quit [Ping timeout: 240 seconds]
elfenix|cloud has quit [Server closed connection]
elfenix|cloud has joined #yocto
Danct12 has quit [Ping timeout: 255 seconds]
sgw has quit [Ping timeout: 264 seconds]
alessioigor has joined #yocto
alessioigor has quit [Client Quit]
rob_w has joined #yocto
jmd has quit [Remote host closed the connection]
Starfoxxes has joined #yocto
amitk has quit [Ping timeout: 255 seconds]
mvlad has quit [Remote host closed the connection]
Kubu_work has joined #yocto
prabhakarlad has joined #yocto
<halstead>
michaelo: Any chance you can pull in my patch so we can build the 4.3 docs?
rob_w has quit [Read error: Connection reset by peer]
<RP>
halstead: still need help?
<halstead>
RP: It's still pending. I could merge it myself but I wanted to follow process.
<RP>
halstead: I'm fine with you doing it, or I could
<RP>
if that helps...
<halstead>
RP: I can go ahead if you approve.
<RP>
halstead: The patch looks good to me
<halstead>
Thank you.
prabhakarlad has quit [Quit: Client closed]
prabhakar has quit [Quit: Connection closed]
prabhakar has joined #yocto
prabhakarlad has joined #yocto
Minvera has quit [Ping timeout: 252 seconds]
Xagen has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]