Tartarus changed the topic of #u-boot to: SOURCE MOVED TO https://source.denx.de/u-boot/u-boot.git / U-Boot v2023.07.02, v2023.10-rc2 are OUT / Merge Window is CLOSED, next branch is OPEN / Release v2023.10 is scheduled for 02 October 2023 / Channel archives at https://libera.irclog.whitequark.org/u-boot
lucascastro has quit [Ping timeout: 260 seconds]
thopiekar has quit [Ping timeout: 245 seconds]
thopiekar has joined #u-boot
mmu_man has quit [Ping timeout: 245 seconds]
Wouter0100670440 has quit [Quit: The Lounge - https://thelounge.chat]
Wouter0100670440 has joined #u-boot
jclsn has quit [Ping timeout: 245 seconds]
jclsn has joined #u-boot
persmule has quit [Remote host closed the connection]
ikarso has joined #u-boot
sng has joined #u-boot
sng has quit [Remote host closed the connection]
stipa has quit [Quit: WeeChat 3.0]
ex--parrot is now known as ex-parrot
Clamor has joined #u-boot
Leopold has joined #u-boot
Leopold_ has quit [Ping timeout: 246 seconds]
alpernebbi has quit [Ping timeout: 245 seconds]
ikarso has quit [Quit: Connection closed for inactivity]
pivi has joined #u-boot
alpernebbi has joined #u-boot
Clamor has quit [Ping timeout: 248 seconds]
Clamor has joined #u-boot
<lvrp16> sjg1: another thought about bootstd, it prioritizes efi over script. if my memory serves me correctly, distro_bootcmd is the other way around?
<lvrp16> https://raw.githubusercontent.com/u-boot/u-boot/master/include/config_distro_bootcmd.h yep, this behavior change causes bootargs to not be set from boot.scr for my systems
<lvrp16> since it goes straight to efi instead of going through bootargs
<lvrp16> boot.scr*
sng has joined #u-boot
<Kwiboo> lvrp16: you can control order with bootmeths env, see https://u-boot.readthedocs.io/en/latest/develop/bootstd.html#bootmeths
<lvrp16> Kwiboo: nice thanks I'll apply on mine. but the question still lingers for migration users
<Kwiboo> I think it make perfect sense to have script last, with bootstd we have standard ways to boot, and script is the least standard way to boot
<lvrp16> yes, but this has to be noted as breaking change since previous users may suddenly end up with a non-booting system
<lvrp16> if it wasn't in the main path, I think such behavior changes are inconsequential
Wouter0100670440 has quit [Quit: The Lounge - https://thelounge.chat]
Wouter0100670440 has joined #u-boot
<lvrp16> i'm not saying this for my own applications, we have no images that use boot.scr since we use grub for everything. but it may affect others.
mmu_man has joined #u-boot
<Kwiboo> I understand that it is a change in order, but fail to see it as a breaking change, if your distro have both efi and scripts I expect it should be able to boot with both options, so the order should not really matter
valdemaras has joined #u-boot
sng has quit [Remote host closed the connection]
stipa has joined #u-boot
valdemaras has quit [Quit: valdemaras]
ikarso has joined #u-boot
<Tartarus> lvrp16: It's hard to say what's right in that if you're using EFI, you're "supposed" to be using the distro method for changing boot args
<Tartarus> Which iirc means grub/etc, as only armbian was doing distro but not EFI, last I checked
mmu_man has quit [Ping timeout: 245 seconds]
<lvrp16> Tartarus: i'm not saying what's right but rather predefined behavior. It doesn't matter to me which way this goes. I was just pointing it out in case people didn't know about it.
<lvrp16> I was looking at setting bootargs via boot.scr for our buildroot release earlier today and realized I was doing it the wrong way.
mmu_man has joined #u-boot
<lvrp16> for anyone migrating distro_bootcmd to bootstd, it's a behavior change that ought to be mentioned
sng has joined #u-boot
persmule has joined #u-boot
sng has quit [Ping timeout: 256 seconds]
<Kwiboo> lvrp16: ahh, so you mean that the boot script did not actually boot anything, only set up env or something, and because nothing was booted the distro_bootcmd moved on and falled back on efi boot?
sng has joined #u-boot
<lvrp16> Kwiboo: yeah that was my intented use but discovered the order issue. I did something else in the end for my application that was more agnostic.
sng has quit [Ping timeout: 246 seconds]
<Kwiboo> guessing a preboot script or similar would make more sense in such scenario with bootstd. the script bootmeth should probably try and boot something and not be used to prepare env for some other bootmeth
<marex> is it just me who considers the name 'bootmeth' uh ... unfortunate ?
Clamor has quit [Read error: Connection reset by peer]
Clamor has joined #u-boot
sng has joined #u-boot
sng has quit [Ping timeout: 256 seconds]
mmu_man has quit [Ping timeout: 240 seconds]
mmu_man has joined #u-boot
sng has joined #u-boot
goliath has joined #u-boot
sng has quit [Ping timeout: 256 seconds]
ikarso has quit [Quit: Connection closed for inactivity]
<Forty-Bot> marex: yes
<Forty-Bot> event "spy" instead of event listener is a little strange too
sng has joined #u-boot
sng has quit [Ping timeout: 245 seconds]
<Tartarus> OK, good, we can increase the timeout on Azure to larger than 60min, and stop having to play the whack-a-mole time games
<marex> Forty-Bot: that too :)
Wouter0100670440 has quit [Quit: The Lounge - https://thelounge.chat]
Wouter0100670440 has joined #u-boot
sng has joined #u-boot
wooosaiiii has quit [Ping timeout: 246 seconds]
soxrok2212 has quit [Ping timeout: 244 seconds]
mmu_man has quit [Ping timeout: 246 seconds]
Clamor has quit [Ping timeout: 246 seconds]
mmu_man has joined #u-boot
soxrok2212 has joined #u-boot
soxrok2212 has quit [Read error: Connection reset by peer]
rvalue has quit [Quit: ZNC - https://znc.in]
rvalue has joined #u-boot
soxrok2212 has joined #u-boot
sng has quit [Remote host closed the connection]
sng has joined #u-boot
sng has quit [Remote host closed the connection]
ikarso has joined #u-boot
soxrok2212 has quit [Read error: Connection reset by peer]
soxrok2212 has joined #u-boot
soxrok2212 has quit [Ping timeout: 252 seconds]
soxrok2212 has joined #u-boot
sukrutb has quit [Ping timeout: 246 seconds]
soxrok2212_ has joined #u-boot
soxrok2212 has quit [Read error: Connection reset by peer]
<sjg1> lvrp16: OK I can send a patch
<sjg1> lvrp16: What is your email address? If I knew, I forgot, sorry
<lvrp16> da@libre.computer
<lvrp16> sjg1:
teejay_ has joined #u-boot
teejay has quit [Ping timeout: 246 seconds]
goliath has quit [Quit: SIGSEGV]
alpernebbi has quit [Ping timeout: 248 seconds]
alpernebbi has joined #u-boot
Wouter0100670440 has quit [Quit: The Lounge - https://thelounge.chat]
Wouter0100670440 has joined #u-boot
ikarso has quit [Quit: Connection closed for inactivity]