0

I am trying to build a UBOOT standalone application.

Looking at the README and the minimal documentation on this, I am curious.

Is the hello world example standalone, simply just compiled/cross-compiled the same way any other application is? Obviously for whatever the target architecture is.

Do I need to use makeelf or something to get a .bin file?

user_ABCD
  • 347
  • 2
  • 15
  • 1
    *"Is the hello world example standalone, simply just compiled/cross-compiled the same way..."* -- Use the same toolchain that you use for building U-Boot. *"Do I need to use makeelf or something to get a .bin file?"* -- No, the **makefile** has a rule for the **.bin** file. Be sure to define an appropriate CONFIG_STANDALONE_LOAD_ADDR. – sawdust Sep 08 '16 at 23:19
  • 1
    *"I assume I need #define CONFIG_STANDALONE_LOAD_ADDR 0x0ADDRESS in /include/configs/board_name.h???"* -- Yes. – sawdust Sep 14 '16 at 00:58

0 Answers0