zoukankan      html  css  js  c++  java
  • Compiling U-Boot

    To configure and build U-Boot for a target board "cd" to, or copy the source tree to somewhere local and then type:

    host% make distclean
    host% make <config>
    host% make

    Where <config> is one of the configuration names given in the table in here.

    Note: If building for a 32-bit environment (SE=1) then the config will have a "se" suffix after the board name, otherwise, for 29-bit mode (SE=0) it will not.

    This will create the following set of files:

    • u-boot - Elf executable file (for download with GDB)
    • u-boot.bin - binary file (for burning into Flash)
    • u-boot.map - Linker memory map file

    For example, to build a 29-bit U-Boot for a STx7111 on a MB618 board, then run the following commands:

    host% make distclean
    host% make mb618_config
    host% make

    To build a 32-bit U-Boot for a STx7105 on a MB680 board, then run the following commands:

    host% make distclean
    host% make mb680se_config
    host% make
    博客讨论一些室内定位(DWM1000/CC2431/CC2530) 以及一些随性的技术。博文可以转载,但需要注明出处!
  • 相关阅读:
    python-study-08
    第一周代码整理
    python-study-阶段总结
    python-study-07
    二分查找数组中与目标数字(可以是浮点型)最近的数的位置
    寻找最大数
    零件分组(stick)
    走迷宫
    自然数的拆分问题 字典序
    素数环(回溯)
  • 原文地址:https://www.cnblogs.com/tuzhuke/p/4312958.html
Copyright © 2011-2022 走看看