xypron changed the topic of #u-boot to: SOURCE MOVED TO https://source.denx.de/u-boot/u-boot.git / U-Boot 2023.01 / Merge Window is OPEN / Release v2023.04 is scheduled for 2023-04-03 / Channel archives at https://libera.irclog.whitequark.org/u-boot
vagrantc has joined #u-boot
qschulz has quit [Remote host closed the connection]
qschulz has joined #u-boot
alpernebbi has quit [Ping timeout: 260 seconds]
alpernebbi has joined #u-boot
thopiekar has quit [Ping timeout: 260 seconds]
thopiekar has joined #u-boot
persmule has quit [Remote host closed the connection]
vagrantc has quit [Quit: leaving]
mlaga97 has quit [Ping timeout: 252 seconds]
mlaga97 has joined #u-boot
mmu_man has quit [Ping timeout: 264 seconds]
Wouter01006704 has quit [Quit: The Lounge - https://thelounge.chat]
Wouter01006704 has joined #u-boot
stipa_ has joined #u-boot
stipa has quit [Ping timeout: 246 seconds]
stipa_ is now known as stipa
redbrain has quit [Read error: Connection reset by peer]
redbrain has joined #u-boot
Wouter01006704 has quit [Quit: The Lounge - https://thelounge.chat]
Wouter01006704 has joined #u-boot
camus has quit [Quit: camus]
camus has joined #u-boot
stefanro1 has joined #u-boot
stefanro has quit [Ping timeout: 256 seconds]
ikarso has joined #u-boot
eloy has quit [Quit: eloy]
eloy has joined #u-boot
rburkholder has quit [Ping timeout: 268 seconds]
ikarso has quit [Quit: Connection closed for inactivity]
GNUtoo has quit [Remote host closed the connection]
GNUtoo has joined #u-boot
mmu_man has joined #u-boot
persmule has joined #u-boot
clarity has quit [Ping timeout: 268 seconds]
clarity has joined #u-boot
Wouter01006704 has quit [Quit: The Lounge - https://thelounge.chat]
Wouter01006704 has joined #u-boot
Gravis has quit [Ping timeout: 260 seconds]
Gravis has joined #u-boot
Gravis has quit [Ping timeout: 268 seconds]
mthall has joined #u-boot
<sjg1> Tartarus: I fixed it yesterday. It seemed to need a reboot as systemd did not like running out of disk space. We should fix the 'conf' tool to give up when it sees EOF on stdin (or perhaps after prompting 100 times)
Gravis has joined #u-boot
___nick___ has joined #u-boot
indy has quit [Ping timeout: 256 seconds]
rvalue has quit [Read error: Connection reset by peer]
rvalue has joined #u-boot
vagrantc has joined #u-boot
___nick___ has quit [Quit: https://quassel-irc.org - Chat comfortably. Anywhere.]
___nick___ has joined #u-boot
___nick___ has joined #u-boot
GNUtoo has quit [Remote host closed the connection]
GNUtoo has joined #u-boot
Leopold_ has quit [Ping timeout: 260 seconds]
Leopold has joined #u-boot
Leopold has quit [Remote host closed the connection]
rburkholder has joined #u-boot
Leopold has joined #u-boot
___nick___ has quit [Ping timeout: 248 seconds]
Patater has quit [Quit: Explodes into a thousand pieces]
Patater has joined #u-boot
Patater has quit [Remote host closed the connection]
Patater has joined #u-boot
<vagrantc> i noticed imx8 boards require the bl31.bin to be present in the top-level directory of u-boot to build ... how feasible would it be to support a BL31 variable like done with rockchip and sunxi boards?
<vagrantc> when building multiple boards from the same sources, this ... makes it difficult to ensure the correct bl31.bin is present at build time
<marex> vagrantc: I'll be talking at fosdem about removing that bl31 dependency altogether ;-)
<vagrantc> marex: infinitely better! :)
<marex> vagrantc: yeah ;-)
<marex> vagrantc: although, I practiced the talk today and I need to slim it down, it is already lengthy
<marex> vagrantc: you coming for fosdem btw ?
<vagrantc> marex: unfortunately no :/
<marex> oh well, check the recording or patches posted to the ML a few weeks ago ;-)
WoC has quit [Read error: Connection reset by peer]
WoC has joined #u-boot
Wouter01006704 has quit [Quit: The Lounge - https://thelounge.chat]
Wouter01006704 has joined #u-boot
<sjg1> marex: That is great to see. If it is just some C code with no great magic, why didn't ARM do this ages ago?
<marex> sjg1: I suspect because they wanted BSD-licensed bootloader where others would contribute and big companies could take without giving back
<sjg1> marex: Sad. Does it completely replace BL31 or just parts of it? I suppose it depends on the SoC
<marex> on mx8m , the bl31 blob really only provides the PSCI and NXP custom extensions on which the vendor kernel depends
<marex> if you dont use vendorkernel, the u-boot support is enough
<marex> the PSCI should really only provide CPU core on/off , power off, system reset ... functionality
<marex> and that isn't hard to implement in u-boot
<sjg1> marex: I see. You have the code in arch/arm/mach-imx/imx8m/psci.c - it is not actually generic to all ARM64?
<marex> nope
<marex> that part is SoC specific
<marex> there is another one in r8a779a0 , different one
<marex> and another one for stm32mp15xx
<marex> and so on
<sjg1> marex: OK, that's a shame. I had hoped it would be standard