Re: [U-Boot] How to boot bare board binary from U-Boot>

2016-02-14 Thread Michael Zimmermann
so you just want to boot a raw binary which is not a kernel and doesn't use the U-Boot API? Actually, this shouldn't change anything. Linux isn't anything more than a "self-contained" raw binary either. I don't see why bootm wouldn't work in you situation. Michael On Sun, Feb 14, 2016 at 8:24 PM

Re: [U-Boot] How to boot bare board binary from U-Boot>

2016-02-14 Thread veerendranathj
thanks for the reply... I am aware of these options. Here problem is when I use go command my program has to use U-Boot service functions(I mean standalone binaries will run in U-Boot environment)... But I want to take complete control from U-Boot as my binary is self-contained binary like kernel..

Re: [U-Boot] How to boot bare board binary from U-Boot>

2016-02-13 Thread Michael Zimmermann
Hi you can either run the binary directly from memory or you can build a uboot image from your raw binary using the mkimage command. Michael On Fri, Feb 12, 2016 at 10:32 AM, veerendranathj wrote: > Hello, > > How can we boot independent bare board binary(not standalone binary which > runs usi

[U-Boot] How to boot bare board binary from U-Boot>

2016-02-13 Thread veerendranathj
Hello, How can we boot independent bare board binary(not standalone binary which runs using U-Boot environment and not linux kernel) from U-Boot. My requirement is to reinitialize the board and drivers using my binary... I can replace the U-Boot in the boot medium(here NOR Flash) with my binary b