Tartarus changed the topic of #u-boot to: SOURCE MOVED TO https://source.denx.de/u-boot/u-boot.git / U-Boot v2021.10 is OUT / Merge Window is OPEN until 25 October 2021 / Release v2022.01 is scheduled for 10 January 2022 / http://www.denx.de/wiki/U-Boot / Channel archives at https://libera.irclog.whitequark.org/u-boot
v0|d has joined #u-boot
Ntemis has quit [Read error: Connection reset by peer]
Ntemis has joined #u-boot
vagrantc has quit [Quit: leaving]
camus has quit [Ping timeout: 240 seconds]
camus has joined #u-boot
Ntemis has quit [Read error: Connection reset by peer]
samekh has joined #u-boot
samekh_ has quit [Ping timeout: 256 seconds]
mmu_man has quit [Ping timeout: 240 seconds]
sdfgsdfg has quit [Quit: ZzzZ]
coldspark29 has quit [Ping timeout: 240 seconds]
coldspark29 has joined #u-boot
camus1 has joined #u-boot
camus has quit [Ping timeout: 268 seconds]
camus1 is now known as camus
sdfgsdfg has joined #u-boot
WenwuZhang has joined #u-boot
WenwuZhang has quit [Remote host closed the connection]
WenwuZhang has joined #u-boot
WenwuZhang has quit [Remote host closed the connection]
sdfgsdfg has quit [Quit: ZzzZ]
sdfgsdfg has joined #u-boot
agust has joined #u-boot
fdanis_away is now known as fdanis
sdfgsdfg has quit [Quit: ZzzZ]
<michalkotyla_> Hello, I have a problem with booting from SD card on u-boot v2021-11. Is a chance that u-boot interprets the device tree in a different way than the kernel? Kernel is bootable when I try to run it on u-boot version from 2018 without a new driver model and this same device tree works well for kernel. Should I focus on searching problems inside device tree, or it must be good if it works for kernel?
sstiller has joined #u-boot
sdfgsdfg has joined #u-boot
sdfgsdfg has quit [Client Quit]
guillaume_g has joined #u-boot
<coldspark29> rfs613: Morning, yes there is a bootscript, but it contains nothing regarding the setting of the mmcroot
<coldspark29> But actually that bootscript is from Android and not used for this case as it is Yocto
mckoan|away is now known as mckoan
sdfgsdfg has joined #u-boot
camus has quit [Ping timeout: 268 seconds]
camus has joined #u-boot
cpringle has quit [Ping timeout: 250 seconds]
coldspark29 has quit [Quit: Konversation terminated!]
coldspark29 has joined #u-boot
cpringle has joined #u-boot
sszy has joined #u-boot
gsz has joined #u-boot
camus1 has joined #u-boot
camus has quit [Read error: Connection reset by peer]
camus1 is now known as camus
sbach has quit [Read error: Connection reset by peer]
sbach has joined #u-boot
michalkotyla_ has quit [Ping timeout: 240 seconds]
michalkotyla has joined #u-boot
camus1 has joined #u-boot
camus has quit [Remote host closed the connection]
camus1 is now known as camus
michalkotyla has quit [Ping timeout: 256 seconds]
michalkotyla has joined #u-boot
sughosh has joined #u-boot
camus has quit [Read error: Connection reset by peer]
camus has joined #u-boot
lucaceresoli has joined #u-boot
camus1 has joined #u-boot
camus has quit [Ping timeout: 240 seconds]
camus1 is now known as camus
matthias_bgg has joined #u-boot
sughosh has quit [Remote host closed the connection]
michalkotyla has quit [Ping timeout: 240 seconds]
michalkotyla has joined #u-boot
sdfgsdfg has quit [Quit: ZzzZ]
gsz has quit [Quit: leaving]
michalkotyla has quit [Read error: Connection reset by peer]
michalkotyla has joined #u-boot
michalkotyla_ has joined #u-boot
michalkotyla has quit [Ping timeout: 256 seconds]
michalkotyla has joined #u-boot
michalkotyla_ has quit [Ping timeout: 256 seconds]
sdfgsdfg has joined #u-boot
mmu_man has joined #u-boot
coldspark29__ has joined #u-boot
<rfs613> coldspark29__: coldspark29: howdy, morning is just rolling around here ;-)
<rfs613> I'd suggest you try executing the commands in "bootcmd" one step at a time.
<rfs613> eg. first do 'env default -a' and confirm your mmcroot is correct.
<rfs613> then do mmc rescan... should not affect mmcroot
<rfs613> then run loadbootscript ... check mmcroo
<rfs613> then "run bootscript"... check mmcroot again
coldspark29__ has quit [Ping timeout: 245 seconds]
<rfs613> I'm around only intermittently today, will check back with you later.
camus has quit [Ping timeout: 240 seconds]
camus has joined #u-boot
GNUtoo has quit [Remote host closed the connection]
GNUtoo has joined #u-boot
coldspark29__ has joined #u-boot
coldspark29__ has quit [Ping timeout: 268 seconds]
zaungast has joined #u-boot
camus has quit [Quit: camus]
ccf has joined #u-boot
<ccf> Is it possible to "stream"-download a file by network (say tftp) into an e.g. emmc? My RAM is smaller than the image.
sdfgsdfg has quit [Read error: Connection reset by peer]
sdfgsdfg has joined #u-boot
camus has joined #u-boot
sdfgsdfg has quit [Quit: ZzzZ]
vagrantc has joined #u-boot
any1 has joined #u-boot
<any1> Is there a way to do an early return from a sourced script? "exit" doesn't seem to do anything
<any1> I'd like to keep my nesting level to a minimum
<marex> ccf: there is dfu ethernet, paging lukma
<marex> any1: uh ... that is a good and valid question and I have to admit, as surprising as it looks, exit doesn't do what one might expect
<marex> crud
<marex> any1: so yes, some degree of debugging/fixing is needed around the exit command
<any1> marex: Thanks. Looking at the implementation of the command, it looks like a noop
<marex> it does set return value of the script, look at examples in ...
<marex> 8c4e3b79bd0bb76eea16869e9666e19047c0d005
<any1> Ah, so it's only purpose is to set the return value..
<any1> its
<any1> I'll just tack a stack of annotated "fi"s at the end. :)
<marex> any1: no, I would expect e.g. this
<marex> setenv foo 'echo foo ; exit 1 ; echo bar' ; run foo ; echo $?
<marex> would print 'foo' and '1'
<marex> this is NOT what happens right now
<marex> this is flawed
sstiller has quit [Quit: Leaving]
<any1> Hmm, guess I might try to fix it then. We'll see..
<any1> Anyhow, I'm trying to apply a device tree overlay, but "fdt apply" returns FDT_ERR_NOTFOUND. Any ideas what might have gone wrong?
<any1> This is vc4-kms-v3d-pi4 on for the raspberry pi 4. Maybe those overlays don't really work with u-boot?
guillaume_g has quit [Quit: Konversation terminated!]
fdanis is now known as fdanis_away
vagrantc has quit [Quit: leaving]
sszy has quit [Quit: http://quassel-irc.org - Chat comfortably. Anywhere.]
mckoan is now known as mckoan|away
coldspark29__ has joined #u-boot
coldspark29__ has quit [Ping timeout: 260 seconds]
camus has quit [Remote host closed the connection]
vagrantc has joined #u-boot
cpringle has quit [Ping timeout: 268 seconds]
cambrian_invader has joined #u-boot
mmu_man has quit [Ping timeout: 240 seconds]
mmu_man has joined #u-boot
<coldspark29> rfs613: Thanks, will try on Monday. I did not really get that far earlier. I read a bit about how U-Boot environment works etc. and it just doesn't make sense
<coldspark29> Hoping to get this done before Christmas. It is all that is left on me todo list. I will keep in mind now that you are based in the US. I am in Germany and am in the urgent need of a beer now.
<coldspark29> Have a nice weekend!
coldspark29 has quit [Ping timeout: 268 seconds]
sdfgsdfg has joined #u-boot
mmu_man has quit [Ping timeout: 240 seconds]
redbrain has joined #u-boot
lucaceresoli has quit [Ping timeout: 252 seconds]
zaungast has quit [Quit: Different things to do.]
mmu_man has joined #u-boot
mmu_man has quit [Remote host closed the connection]
mmu_man has joined #u-boot
<any1> It appears that applying an overlay which starts at fragment@1 rather than fragment@0 fails
<any1> it showed me the path of the failed fragment and it was "fragment@0" which doesn't exist in the dtbo
redbrain has quit [Ping timeout: 240 seconds]
sdfgsdfg has quit [Quit: ZzzZ]