LetoThe2nd changed the topic of #yocto to: Welcome to the Yocto Project | Learn more: https://www.yoctoproject.org | Community: https://www.yoctoproject.org/community | IRC logs: http://irc.yoctoproject.org/irc/ | Having difficulty on the list, with someone on the list or on IRC, contact Yocto Project Community Manager Letothe2nd | CoC: https://www.yoctoproject.org/community/code-of-conduct
sotaoverride has joined #yocto
mischief has joined #yocto
sotaoverride is now known as Guest263
Guest263 has quit [Killed (silver.libera.chat (Nickname regained by services))]
sotaoverride_ has joined #yocto
sotaoverride has joined #yocto
sotaoverride has quit [Killed (platinum.libera.chat (Nickname regained by services))]
sotaoverride_ is now known as sotaoverride
sotaover2ide has joined #yocto
sotaover2ide has quit [Client Quit]
xmn has quit [Quit: ZZZzzz…]
mischief has quit [Quit: WeeChat 4.5.1]
mischief has joined #yocto
ajfriesen1641 has joined #yocto
mischief2 has joined #yocto
ajfriesen164 has quit [Ping timeout: 272 seconds]
ajfriesen1641 is now known as ajfriesen164
mischief has quit [Read error: Connection reset by peer]
xmn has joined #yocto
goliath has quit [Quit: SIGSEGV]
jclsn has quit [Ping timeout: 272 seconds]
jclsn has joined #yocto
chrispalo has quit [Quit: The Lounge - https://thelounge.chat]
Daanct12 has joined #yocto
frgo_ has joined #yocto
tammranil has quit [Remote host closed the connection]
tammranil has joined #yocto
zwelch has quit [Ping timeout: 276 seconds]
Daanct12 has quit [Quit: WeeChat 4.6.1]
Daanct12 has joined #yocto
Articulus has joined #yocto
alessio has joined #yocto
ablu has quit [Ping timeout: 260 seconds]
ablu has joined #yocto
rob_w has joined #yocto
leon-anavi has joined #yocto
enok has joined #yocto
rfuentess has joined #yocto
savolla has joined #yocto
Chaser has joined #yocto
mischief2 is now known as mischief
mckoan|away is now known as mckoan
frgo_ has quit [Read error: Connection reset by peer]
frgo has joined #yocto
alessio has quit [Quit: alessio]
alessio has joined #yocto
ptsneves has joined #yocto
savolla has quit [Ping timeout: 252 seconds]
savolla has joined #yocto
wmills__ has joined #yocto
zeemate has joined #yocto
wmills_ has quit [Ping timeout: 265 seconds]
enok has quit [Ping timeout: 252 seconds]
davidinux has joined #yocto
xmn has quit [Ping timeout: 260 seconds]
grma has quit []
grma has joined #yocto
florian has joined #yocto
enok has joined #yocto
Chaser has quit [Ping timeout: 272 seconds]
Chaser has joined #yocto
savolla has quit [Ping timeout: 276 seconds]
savolla has joined #yocto
enok has quit [Ping timeout: 244 seconds]
Chaser has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
vthor has quit [Excess Flood]
vthor has joined #yocto
vthor has quit [Changing host]
vthor has joined #yocto
Chaser has joined #yocto
Chaser has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
goliath has joined #yocto
Chaser has joined #yocto
Chaser has quit [Ping timeout: 248 seconds]
sotaover1ide has quit [Quit: Lost terminal]
ctraven_ has joined #yocto
ctraven_ has quit [Client Quit]
ptsneves has quit [Ping timeout: 248 seconds]
MarioMariollini1 has joined #yocto
embetrix has joined #yocto
florian_kc has joined #yocto
crazy_imp has quit [Ping timeout: 276 seconds]
crazy_imp has joined #yocto
<tgamblin> rburton: not clear, seems to be exceeding the 2G available. I'm trying a modified version of the run-ptest script out that sets PYTEST_DEBUG_TEMPROOT, which should hopefully let me control where those tmp files actually get made
<tgamblin> current results: = 1 failed, 47138 passed, 4164 skipped, 33 xfailed, 5 xpassed, 169 errors in 146.24s (0:02:26) =
<rburton> tgamblin: wow i wonder if theres just one test that needs vast amounts of space you can skip
<tgamblin> rburton: I think there are some in the random submodule, but TBD. The nuclear option would be to skip those currently failing... but even if we're OK with that, I'm not sure how many of the passing ones are also using disk space, so it's possible they'd start breaking down the road
embetrix has quit [Quit: Client closed]
<tgamblin> that's better: = 1 failed, 47301 passed, 4170 skipped, 33 xfailed, 5 xpassed in 145.45s (0:02:25) =
<tgamblin> had to add a "mkdir -p" to create the directory I told it to use in PYTEST_DEBUG_TEMPROOT :)
<tgamblin> and the failing test is "lib/tests/test_io.py::TestSavezLoad::test_big_arrays", reporting "OSError: [Errno 28] No space left on device"
<tgamblin> so maybe we'll skip that one
<rburton> maybe big means big
Daanct12 has quit [Ping timeout: 248 seconds]
cyxae has joined #yocto
<piie> hi, what's the best way in a %.bbappend file to tell, that this recipe is only allowed being built for -native? I tried: COMPATIBLE_MACHINE = "native" but this didn't do the job
<rburton> piie: usually the recipe should just inherit native
<rburton> if the recipe uses BBCLASSEXTEND="native" then you can't turn off the ability to build for target, if the recipe is only for native then it shouldn't use class extension at all
<piie> so you recommend to overwrite the BBCLASSEXTEND in the %.bbappend?
<rburton> no becuase then you won't be able to build for native
<rburton> normal recipes like foo.bb are for target. if they do BBCLASSEXTEND=native then they can _also_ be built as foo-native. If a recipe is _only_ for native then it should be foo-native.bb and 'inherit native' directly, no BBCLASSEXTEND.
<piie> the point is, I don't want to modify the original .bb file, as this is coming from poky, but I want to add my .bbappend in my layer, which then disallows this recipe being built for target
<rburton> you can't do that
<rburton> what recipe in poky?
<piie> libpcre
<rburton> but you can build libpcre for target
<rburton> why would you want to forbid that?
<piie> because it's obsoleted by libpcre2
<piie> and I want to prevent, that someone else by mistake / accident re-enables that
<rburton> are you actually asking "how can i stop recipes being built"
<piie> I need it for -native, but want to ensure, that it's never ever again sneeking in on the target
<rburton> SKIP_RECIPE[libpcre] = "1" might work
<rburton> (in your distro config)
<piie> ok, that's a good idea
<piie> will try that, thanks
<rburton> looks like only wget uses it in poky now, i wonder if we can fix that
tlwoerner has quit [Read error: Connection reset by peer]
<rburton> we can!
florian has quit [Quit: Ex-Chat]
florian_kc has quit [Ping timeout: 276 seconds]
Xagen has joined #yocto
<piie> rburton: on first glance SKIP_RECIPE[libpcre] = "1" seems to do what I want. I'll do some further tests
<rburton> cool
<piie> thank you very much for your suggestion
<rburton> always wise to explain the context, as there's sometimes a better way
<rburton> you want to skip a recipe, and we have a way to do that :)
rob_w has quit [Remote host closed the connection]
<piie> yeah, I just didn't know, that I want to skip a recipe in first place ;)
dgriego has quit [Ping timeout: 260 seconds]
dgriego has joined #yocto
<rburton> exactly
<piie> btw, are there news on the openssh10 update? haven't seen anything on the mailinglist in last 10 days or so
JaMa has quit [Ping timeout: 276 seconds]
<RP> piie: it had failures in testing which were reported but nobody has fixed them as far as I know
Xagen has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
<qschulz> fishing for ideas... I need to generate an initrd that doesn't need to know anything about the board it's going to run on
<qschulz> but I need to generate a disk image which has everything needed for it
<rburton> fill it with modules
<qschulz> the initrd shouldn't be inside the kernel either, like I could have an aarch64-generic one that it would be perfectly fine with me, that part I think I managed :)
<qschulz> but then, this disk image, well... I technically don't need a rootfs for it BUT I need the kernel binaries, some bootloader conf files, some additional configruation files for some SW running from the initrd (but not inside, because it needs to be modifiable easily)
<qschulz> all those files into a single partition of course (the exfat one, but I'll start with an ext4 for now :) )
florian has joined #yocto
<qschulz> bootloader configs are fw_env.config, u-boot-initial-env and extlinux.conf essentially
Xagen has joined #yocto
rfuentess has quit [Remote host closed the connection]
Xagen has quit [Client Quit]
savolla has quit [Quit: WeeChat 4.4.3]
savolla has joined #yocto
Xagen has joined #yocto
JaMa has joined #yocto
babb0 has joined #yocto
anoen has quit [Ping timeout: 252 seconds]
Xagen has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
xmn has joined #yocto
fullstop_ has joined #yocto
fullstop has quit [Ping timeout: 252 seconds]
fullstop_ is now known as fullstop
Xagen has joined #yocto
MarioMariollini1 has quit [Quit: Client closed]
MarioMariollini1 has joined #yocto
leon-anavi has quit [Quit: Leaving]
MarioMariollini1 has quit [Quit: Client closed]
<qschulz> rburton: shouldn't we add --disable-pcre always for wget now?
savolla has quit [Quit: WeeChat 4.4.3]
zwelch has joined #yocto
<rburton> qschulz: meh, the dep won't be found. maybe.
Articulus has quit [Quit: Leaving]
alessio has quit [Quit: alessio]
olani- has joined #yocto
olani- has quit [Ping timeout: 244 seconds]
mckoan is now known as mckoan|away
druppy has joined #yocto
ptsneves has joined #yocto
Xagen has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
frgo has quit [Read error: Connection reset by peer]
frgo has joined #yocto
jpuhlman has quit [Quit: ZNC 1.8.2 - https://znc.in]
jpuhlman has joined #yocto
enok has joined #yocto
enok has quit [Quit: enok]
enok has joined #yocto
Xagen has joined #yocto
enok has quit [Quit: enok]
enok71 has joined #yocto
enok71 is now known as enok
druppy has quit [Quit: druppy]
druppy has joined #yocto
Jones42 has joined #yocto
ptsneves has quit [Ping timeout: 245 seconds]
martin_97 has joined #yocto
olani- has joined #yocto
enok has quit [Ping timeout: 260 seconds]
Kubu_work has quit [Quit: Leaving.]
cyxae has quit [Quit: cyxae]
xmn has quit [Ping timeout: 276 seconds]
Kubu_work has joined #yocto
xmn_ has joined #yocto
enok has joined #yocto
enok has quit [Quit: enok]
Xagen has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
druppy has quit [Ping timeout: 244 seconds]
Xagen has joined #yocto
florian has quit [Ping timeout: 276 seconds]
xmn_ has quit [Quit: xmn_]
xmn has joined #yocto
zeemate has quit [Ping timeout: 276 seconds]