Tartarus changed the topic of #u-boot to: SOURCE MOVED TO https://source.denx.de/u-boot/u-boot.git / U-Boot v2024.01, v2024.04-rc4 are OUT / Merge Window is CLOSED, next branch is OPEN / Release v2024.04 is scheduled for 02 April 2024 / Channel archives at https://libera.irclog.whitequark.org/u-boot
mmu_man has quit [Ping timeout: 252 seconds]
mmu_man has joined #u-boot
ikarso has quit [Quit: Connection closed for inactivity]
zeemate_ has quit [Ping timeout: 240 seconds]
sakman has quit [Ping timeout: 260 seconds]
sakman has joined #u-boot
vagrantc has quit [Quit: leaving]
joeskb7 has quit [Quit: leaving]
sakman has quit [Ping timeout: 256 seconds]
^kaNJeng^ has quit [Quit: Going offline, see ya!]
F0rTex has quit [Ping timeout: 252 seconds]
F0rTex has joined #u-boot
goliath has quit [Quit: SIGSEGV]
jclsn has quit [Ping timeout: 260 seconds]
jclsn has joined #u-boot
Leopold has quit [Ping timeout: 260 seconds]
Leopold has joined #u-boot
mmu_man has quit [Ping timeout: 272 seconds]
mmu_man has joined #u-boot
mmu_man has quit [Ping timeout: 272 seconds]
sakman has joined #u-boot
sakman has quit [Ping timeout: 268 seconds]
sakman has joined #u-boot
sakman has quit [Ping timeout: 268 seconds]
Stat_headcrabed has joined #u-boot
Stat_headcrabed has quit [Client Quit]
Stat_headcrabed has joined #u-boot
Stat_headcrabed has quit [Client Quit]
Leopold has quit [Ping timeout: 260 seconds]
Leopold has joined #u-boot
Leopold has quit [Remote host closed the connection]
Leopold has joined #u-boot
Leopold has quit [Excess Flood]
Leopold has joined #u-boot
naoki has quit [Quit: naoki]
Leopold has quit [Ping timeout: 260 seconds]
Leopold has joined #u-boot
mmu_man has joined #u-boot
zeemate_ has joined #u-boot
Leopold has quit [Ping timeout: 260 seconds]
Leopold has joined #u-boot
mmu_man has quit [Ping timeout: 252 seconds]
slobodan has joined #u-boot
dsimic has quit [Ping timeout: 260 seconds]
Stat_headcrabed has joined #u-boot
dsimic has joined #u-boot
Stat_headcrabed has quit [Client Quit]
Leopold has quit [Ping timeout: 260 seconds]
Leopold has joined #u-boot
Leopold has quit [Ping timeout: 260 seconds]
Leopold has joined #u-boot
jfsimon1981 has joined #u-boot
edwinistrator2 has quit [Quit: The Lounge - https://thelounge.chat]
edwinistrator2 has joined #u-boot
zeemate_ has quit [Ping timeout: 256 seconds]
f_ has quit [Ping timeout: 240 seconds]
persmule has joined #u-boot
f_ has joined #u-boot
sakman has joined #u-boot
flyback has quit [Ping timeout: 268 seconds]
persmule has quit [Remote host closed the connection]
persmule has joined #u-boot
goliath has joined #u-boot
flyback has joined #u-boot
jfsimon1981 has quit [Remote host closed the connection]
davlefou has quit [Ping timeout: 256 seconds]
davlefou has joined #u-boot
slobodan has quit [Ping timeout: 260 seconds]
slobodan has joined #u-boot
rvalue has quit [Ping timeout: 268 seconds]
Stat_headcrabed has joined #u-boot
rvalue has joined #u-boot
zeemate_ has joined #u-boot
persmule has quit [Remote host closed the connection]
persmule has joined #u-boot
slobodan has quit [Ping timeout: 260 seconds]
slobodan has joined #u-boot
slobodan_ has joined #u-boot
slobodan has quit [Ping timeout: 260 seconds]
<marex> can I do nested conditionals with CPP ?
<marex> like ...
<marex> #define TEST_COND(cond) \ #if ##cond #define otherstuff #else ...
<marex> and then use it like
<marex> struct foo { TEST_COND(CONFIG...) ... }; ?
<marex> oh ... but wait, isnt CONFIG_IS_ENABLED exactly what I need ?
* marex face->palm
<marex> I guess it is kind-of what I need, but the mechanism is there
ikarso has joined #u-boot
<quinq> Just try not abusing CPP too much :)
<marex> I need a variant of this I think
<quinq> What's missing?
Leopold has quit [Ping timeout: 260 seconds]
<marex> quinq: I dont know, yet
<quinq> ok :)
Leopold has joined #u-boot
slobodan has joined #u-boot
slobodan_ has quit [Ping timeout: 264 seconds]
<marex> well CONFIG_IS_ENABLED(FOO, (do_positive_stuff();), (do_negative_stuff();)); is truly weird
<marex> and yes, the parenthesis are needed
<quinq> Yeah that's not really readble
<quinq> readable
<quinq> Rather something like #if CONFIG_IS_ENABLED(FOO) \n do_positive_stuff(); \n #else \n do_negative_stuff(); #endif
<marex> quinq: that's what the previous version of the bugfix was rejected on, followed by extensive discussion, and that was the end of the fix ;-)
<quinq> :/
Stat_headcrabed has quit [Quit: Stat_headcrabed]
Stat_headcrabed has joined #u-boot
Stat_headcrabed has quit [Quit: Stat_headcrabed]
mmu_man has joined #u-boot
mmu_man has quit [Ping timeout: 252 seconds]
<pivi> Hello, do anybody have any suggestion on getting colibri-imx7 RNG working in mainline ? caam driver fails to load. marex I can't believe you know nothing :-). https://lore.kernel.org/all/4b64a9de-a840-4065-a530-f81155b4b9f2@toradex.com/
mmu_man has joined #u-boot
germ has quit [Quit: https://quassel-irc.org - Chat comfortably. Anywhere.]
alan_o has quit [Ping timeout: 260 seconds]
slobodan has quit [Ping timeout: 256 seconds]
<marex> pivi: you want to run linux in NS for sure
<marex> pivi: as for CAAM ... init errors ... sounds vaguely familiar
<marex> pivi: did they enable CAAM in U-Boot, so U-Boot would do the CAAM preinit ?
alan_o has joined #u-boot
<marex> pivi: I recall the init took forever unless U-Boot did the CAAM preinitialization, so check that
<marex> pivi: there was some patch against Linux that did something to it too, but I think that sould be in 6.6.y already