<Clamor>
Maybe someone knows under which license vendor android images are distributed?
<f_>
xypron: I was working on a website that would be @ u-boot.org, but didn't have much time lately
<f_>
I'll try working on it today.
<f_>
Need to address a bunch of feedback I got.
<f_>
(thanks everyone for that :D)
<xypron>
f_: It is nice to have a domain for our project. I was just wondering who the owner is.
Clamor has quit [Ping timeout: 260 seconds]
<f_>
Oh ok
<f_>
I think sjg1 might be the owner?
Clamor has joined #u-boot
<mkorpershoek>
Clamor: there is a NOTICE file in the android vendor image which contains licence info: vendor/etc/NOTICE.xml.gz
<Clamor>
mkorpershoek: thanks
sszy has joined #u-boot
mmu_man has joined #u-boot
<Clamor>
mkorpershoek: it seems that this file is not present, devices are too old, 12 yo to be exact
prabhakar has quit [Quit: Connection closed]
prabhakarlad has joined #u-boot
prabhakar has joined #u-boot
<mkorpershoek>
oh, yeah indeed that's very old
<Clamor>
mkorpershoek: I am trying to submit a few broadcom blobs into linux firmware, and got this question. I have never actually thought under which license those vendor images are shipped. It always feeled like take it and go.
<Clamor>
And maybe here are boardcom employees who could help some old forgotten devices with their Signed Off?
mmu_man has quit [Ping timeout: 276 seconds]
<LeSpocky>
okay I can built without host openssl again, will prepare a patch series after lunch
sukrutb has quit [Ping timeout: 264 seconds]
slobodan has joined #u-boot
dsimic has quit [Ping timeout: 245 seconds]
dsimic has joined #u-boot
rvalue has quit [Ping timeout: 268 seconds]
ldevulder has joined #u-boot
zsoltiv__ has quit [Ping timeout: 256 seconds]
rvalue has joined #u-boot
tnovotny has joined #u-boot
goliath has joined #u-boot
zsoltiv_ has joined #u-boot
Raito_Bezarius has quit [Read error: Connection reset by peer]
Mis012 has quit [Remote host closed the connection]
Mis012 has joined #u-boot
Clamor has quit [Ping timeout: 252 seconds]
prabhakarlad has joined #u-boot
GNUtoo has quit [Ping timeout: 240 seconds]
GNUtoo has joined #u-boot
jaganteki has quit [Ping timeout: 250 seconds]
rvalue has quit [Ping timeout: 264 seconds]
rvalue- has joined #u-boot
rvalue- is now known as rvalue
Hammdist has joined #u-boot
<ac_slater>
hey guys, I'm not new to uboot but I am new to `bootm`. I'm on a Xilinx ZynqMP (aarch64). I can successfully use `booti ${k} ${r} ${d}`. But, putting the SAME files in an ITS/ITB and using `bootm ${a}#conf` causes the kernel to crash.
<Hammdist>
hi all. I've had a look on github but I can't find the definition of the image header anywhere. on arm64 this begins with a jump pad (two code words) has the magic arm\x64 in it, but I haven't been able to locate the struct in the u-boot code. I am actually most interested in the arm32 version of this struct ...
<ac_slater>
just cant tell if bootm isnt loading things correctly - booti works if I just manually take the files out
<ac_slater>
could be this: [ 0.000000] [Firmware Bug]: Kernel image misaligned at boot, please fix your bootloader! .. not sure if that's causing REAL issues or the warning is pretty soft in this case
<Tartarus>
Yeaeh, that's a real issue
<Tartarus>
And full logs and env from both booti and bootm might help more
<ac_slater>
they use a tool to generate uboot's defconfig so I can't tell which UBOOT options to change to test this
<ac_slater>
Tartarus: ^
<Tartarus>
Hammdist: Yes, here's a 32bit version in the docs too, but note that one uses zImage instead on 32bit arm
<Hammdist>
argh. I'm trying to put together and boot a hobby kernel, not linux. is there a way I can boot from u-boot without going to the trouble of compressing my kernel?
<Hammdist>
it's looking like what would fit me best is a uImage, not a zImage
<Tartarus>
Uh, a hobby kernel?
<Tartarus>
If you wrote something from scratch for fun, just bootelf it
<Hammdist>
ah one can directly boot elfs?
<Hammdist>
indeed, I just found the do_bootelf function. ok I will try to use this
<Hammdist>
thanks
hanetzer has quit [Ping timeout: 255 seconds]
<ukky>
Hammdist: mkelfImage could wrap uImage kernel into ELF, not sure if the tool is up to date. The tool supports both compressed and uncompressed kernels
hanetzer has joined #u-boot
<Hammdist>
ukky: ah not needed. from gcc I get ELF directly so I'm thinking with a suitable linker script I could just use bootelf