Re: [yocto] How to load into u-boot binary (srec) file

2019-07-09 Thread Khem Raj
On Mon, Jul 8, 2019 at 9:27 AM Szabolcs Báder wrote: > Hello, > > I created this code: > > ``` > # u-boot standalone hello-world.c test image > require recipes-core/images/core-image-base.bb > > COMPATIBLE_MACHINE = "^rpi$" > > ENABLE_UART="1" > RPI_USE_U_BOOT="1" > > # maybe works?? >

Re: [yocto] How to load into u-boot binary (srec) file

2019-07-09 Thread Khem Raj
On Mon, Jul 8, 2019 at 9:27 AM Szabolcs Báder wrote: > Hello, > > I created this code: > > ``` > # u-boot standalone hello-world.c test image > require recipes-core/images/core-image-base.bb > > COMPATIBLE_MACHINE = "^rpi$" > > ENABLE_UART="1" > RPI_USE_U_BOOT="1" > > # maybe works?? >

[yocto] How to load into u-boot binary (srec) file

2019-07-08 Thread Szabolcs Báder
Hello, I created this code: ``` # u-boot standalone hello-world.c test image require recipes-core/images/core-image-base.bb COMPATIBLE_MACHINE = "^rpi$" ENABLE_UART="1" RPI_USE_U_BOOT="1" # maybe works?? CONFIG_STANDALONE_LOAD_ADDR="0x1000" DEPENDS = "u-boot-mkimage-native"