Forum | Documentation | Website | Blog

Skip to content
Snippets Groups Projects
  1. Oct 16, 2024
  2. Oct 11, 2024
  3. Oct 10, 2024
  4. Aug 13, 2024
  5. Jul 19, 2024
  6. Feb 29, 2024
  7. Jan 17, 2024
    • Rasmus Villemoes's avatar
      README: drop mention of MEM_SUPPORT_64BIT_DATA · d060c49a
      Rasmus Villemoes authored
      
      The first sentence is half-way true; the macro is always defined, but
      has the value 0 or 1.
      
      The second is outright false. A lot of code guarded by
      MEM_SUPPORT_64BIT_DATA uses a "ulong" to store values, so if
      sizeof(long) is not 8, that code would probably compile, but not work
      at all as expected.
      
      It would probably be possible to make all such code explicitly use u64
      and thus make it work on 32 bit targets, but until that is done, do
      not pretend that it's ok to override the automatic value of
      MEM_SUPPORT_64BIT_DATA.
      
      Signed-off-by: default avatarRasmus Villemoes <rasmus.villemoes@prevas.dk>
      d060c49a
  8. Jan 03, 2024
  9. Dec 13, 2023
  10. Nov 16, 2023
  11. Oct 06, 2023
  12. Jul 15, 2023
    • Heinrich Schuchardt's avatar
      README: remove Minicom comment · a12b3643
      Heinrich Schuchardt authored
      
      The main README file is the wrong place to document how different terminal
      emulations can be used to access the U-Boot serial console. C-Kermit which
      requires a configuration file or several commands to access the U-Boot
      console may not be the preferred choice for newcomers. The provided wiki
      link is invalid.
      
      The man-pages for loadb and loads already show how to use the commands with
      picocom.
      
      Signed-off-by: default avatarHeinrich Schuchardt <heinrich.schuchardt@canonical.com>
      a12b3643
  13. Feb 07, 2023
  14. Feb 06, 2023
    • Linus Walleij's avatar
      cmd: Add a SEAMA image load command · 41a29f28
      Linus Walleij authored
      
      Add a command to load SEAMA (Seattle Image), a NAND flash
      on-flash storage format.
      
      This type of flash image is found in some D-Link routers such
      as DIR-645, DIR-842, DIR-859, DIR-860L, DIR-885L, DIR890L and
      DCH-M225, as well as in WD and NEC routers on the ath79
      (MIPS), Broadcom BCM53xx, and RAMIPS platforms.
      
      This U-Boot command will read and decode a SEAMA image from
      raw NAND flash on any platform. As it is always using big endian
      format for the data decoding is always necessary on platforms
      such as ARM.
      
      The command is needed to read a SEAMA-encoded boot image on the
      D-Link DIR-890L router for boot from NAND flash in an upcoming
      port of U-Boot to the Broadcom Northstar (BCM4709, BCM53xx)
      architecture.
      
      A basic test and documentation is added as well. The test must
      be run on a target with NAND flash support and at least one
      resident SEAMA image in flash.
      
      Cc: Rafał Miłecki <rafal@milecki.pl>
      Signed-off-by: default avatarLinus Walleij <linus.walleij@linaro.org>
      41a29f28
  15. Jan 27, 2023
  16. Jan 20, 2023
    • Tom Rini's avatar
      global: Finish CONFIG -> CFG migration · 6e7df1d1
      Tom Rini authored
      
      At this point, the remaining places where we have a symbol that is
      defined as CONFIG_... are in fairly odd locations. While as much dead
      code has been removed as possible, some of these locations are simply
      less obvious at first. In other cases, this code is used, but was
      defined in such a way as to have been missed by earlier checks.  Perform
      a rename of all such remaining symbols to be CFG_... rather than
      CONFIG_...
      
      Signed-off-by: default avatarTom Rini <trini@konsulko.com>
      Reviewed-by: default avatarSimon Glass <sjg@chromium.org>
      6e7df1d1
  17. Dec 23, 2022