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
sdfgsdfg has quit [Quit: ZzzZ]
sdfgsdfg has joined #u-boot
vagrantc has quit [Quit: leaving]
sdfgsdfg has quit [Ping timeout: 256 seconds]
mps has quit [Ping timeout: 256 seconds]
mps has joined #u-boot
vagrantc has joined #u-boot
jimpo has quit [Quit: ZNC 1.8.2 - https://znc.in]
jimpo has joined #u-boot
narmstrong has quit [Read error: Connection reset by peer]
nohit has quit [Ping timeout: 240 seconds]
narmstrong has joined #u-boot
Crofton_ has joined #u-boot
nohit has joined #u-boot
iopaniuk_ has joined #u-boot
rburton_ has joined #u-boot
pavelow_ has joined #u-boot
vfazio_ has joined #u-boot
BobBeck2 has joined #u-boot
swiftgeek has quit [Ping timeout: 256 seconds]
vfazio has quit [Ping timeout: 256 seconds]
v3r3mitz has joined #u-boot
swiftgeek has joined #u-boot
samekh has quit [Ping timeout: 245 seconds]
samekh has joined #u-boot
persmule_ has quit [Ping timeout: 276 seconds]
iopaniuk has quit [Ping timeout: 240 seconds]
rburton has quit [Ping timeout: 240 seconds]
Crofton has quit [Ping timeout: 240 seconds]
iopaniuk_ is now known as iopaniuk
pavelow has quit [Ping timeout: 240 seconds]
Crofton_ is now known as Crofton
Tartarus has quit [Ping timeout: 240 seconds]
jordemort has quit [Ping timeout: 240 seconds]
cpackham[m] has quit [Ping timeout: 240 seconds]
rburton_ is now known as rburton
kveremitz has quit [Ping timeout: 240 seconds]
BobBeck has quit [Ping timeout: 240 seconds]
BobBeck2 is now known as BobBeck
v3r3mitz is now known as kveremitz
Tartarus has joined #u-boot
jimpo has quit [Ping timeout: 256 seconds]
jimpo has joined #u-boot
milkylainen has quit [Ping timeout: 256 seconds]
jordemort has joined #u-boot
cpackham[m] has joined #u-boot
persmule has joined #u-boot
persmule has quit [Ping timeout: 276 seconds]
persmule has joined #u-boot
apritzel_ has quit [Ping timeout: 256 seconds]
thopiekar has quit [Ping timeout: 256 seconds]
thopiekar has joined #u-boot
apalos has quit [Read error: Connection reset by peer]
thopiekar has quit [Ping timeout: 240 seconds]
thopiekar has joined #u-boot
apalos has joined #u-boot
Xavier7 has joined #u-boot
persmule has quit [Remote host closed the connection]
sdfgsdfg has joined #u-boot
vagrantc has quit [Ping timeout: 240 seconds]
mmu_man has quit [Ping timeout: 240 seconds]
sbach has quit [Read error: Connection reset by peer]
Xavier7 has quit [Quit: • IRcap • 8.72 •]
sbach has joined #u-boot
sdfgsdfg has quit [Quit: ZzzZ]
sdfgsdfg has joined #u-boot
apritzel_ has joined #u-boot
apritzel_ has quit [Ping timeout: 240 seconds]
alpernebbi has quit [Ping timeout: 240 seconds]
alpernebbi has joined #u-boot
tlwoerner has quit [Ping timeout: 256 seconds]
tlwoerner has joined #u-boot
redbrain has joined #u-boot
apritzel_ has joined #u-boot
redbrain has quit [Ping timeout: 250 seconds]
redbrain has joined #u-boot
sdfgsdfg has quit [Quit: ZzzZ]
persmule has joined #u-boot
mmu_man has joined #u-boot
<apritzel_> xypron, Tartarus: many thanks for the fix and the merge, I see readthedocs.io now being updated
apritzel_ is now known as apritzel
redbrain has quit [Ping timeout: 240 seconds]
<Forty-Bot> are the upper 16 bits of registers on rockchip a mask for the lower 16 bits?
<Tartarus> sjg1: kaki died again
<xypron> mps: Tartarus: I think it would be worthwhile adding a Alpine Linux Docker image to U-Boot (tools/docker/Dockerfile.alpine). Once the bugs are fixed we could regularly run it in our CI.
<Tartarus> I know we can tell Azure to run some jobs in other containers
<Tartarus> Don't know if GitLab can, off-hand, but maybe
<Tartarus> otherwise just having some further checks in Azure isn't too bad
vagrantc has joined #u-boot
<xypron> mps: just rename it to Dockerfile and execute 'docker build -t alpine .'
<Forty-Bot> I pushed to a public branch and discovered that a patch caused CI to fail
<Forty-Bot> do I need to submit a separate patch to fix it to the list and then apply that
<Forty-Bot> or can I just drop the patch and force push?
<mps> xypron: as I told I don't have much experience with docker and setting CI with it
<mps> xypron: I can ask some of alpine developers which have experience with this if you need helo
<xypron> mps: Once your have Docker installed on your machine you just need two commands: 'docker build -t alpine .', 'docker run -ti alpine:latest' to reproduce the problem we were discussing. Both commands executed in the directory with Dockerfile.
<mps> xypron: https://gitlab.alpinelinux.org/alpine/aports/-/merge_requests/29565 is the merge request for u-boot 2022.01 on alpine
<xypron> mps: so you just dropped kwboot
<mps> xypron: yes
<mps> you can see in patch to Makefile that the problem is musl don't have c_ospeed and c_ispeed types
<mps> in latest few u-boot versions on alpine kwboot didn't existed so I decide to 'patch it out' for now
<xypron> mps: There is an #ifdef BOTHER. What happens if you undefine it? Does this solve your issue?
<xypron> mps: I wonder where this is defined at all.
<xypron> mps: asm-generic/termbits.h:144:#define BOTHER 0010000
<mps> xypron: this is glibc 'feature' which abstracts somehow something from kernel interface, I don't know that this about c_ospeed and c_ispeed
<xypron> mps: could you try building with #undef BOTHER after the includes
<xypron> mps: tools/kwboot.c:652: * If BOTHER is defined, Linux always fills out c_ospeed / c_ispeed
<mps> xypron: could try tomorrow if something doesn't IRQ me
<xypron> mps: the fields seem to provide the current baudrate of the serial console
<mps> xypron: could be, I didn't looked in glibc source
<mps> Rich (musl author) told me that we should look at this and to implement in musl but this will probably take some time
redbrain has joined #u-boot
Xavier7 has joined #u-boot
GNUtoo has quit [Remote host closed the connection]
GNUtoo has joined #u-boot
redbrain has quit [Ping timeout: 256 seconds]
redbrain has joined #u-boot
persmule has quit [Ping timeout: 276 seconds]
sdfgsdfg has joined #u-boot
redbrain has quit [Ping timeout: 256 seconds]
GNUtoo has quit [Ping timeout: 276 seconds]
GNUtoo has joined #u-boot
Xavier7 has quit [Quit: • IRcap • 8.72 •]
mripard has quit [Read error: Connection reset by peer]
<sjg1> Tartarus: do you have a link for kaki? It seems to be doing stuff
mripard has joined #u-boot
sdfgsdfg has quit [Quit: ZzzZ]