Skip to content
Snippets Groups Projects
  1. Jun 12, 2017
    • Heiko Schocher's avatar
      powerpc, 8xx: remove support for 8xx · 5b8e76c3
      Heiko Schocher authored and Tom Rini's avatar Tom Rini committed
      
      There was for long time no activity in the 8xx area.
      We need to go further and convert to Kconfig, but it
      turned out, nobody is interested anymore in 8xx,
      so remove it (with a heavy heart, knowing that I remove
      here the root of U-Boot).
      
      Signed-off-by: default avatarHeiko Schocher <hs@denx.de>
      5b8e76c3
    • Sam Protsenko's avatar
      arm: dra7: Set fastboot variables in environment · 4a30a939
      Sam Protsenko authored and Tom Rini's avatar Tom Rini committed
      
      One can obtain those variables using next commands:
      
          $ fastboot getvar cpu
          $ fastboot getvar secure
          $ fastboot getvar board_rev
          $ fastboot getvar userdata_size
      
      Those variables are needed for fastboot.sh script.
      
      Signed-off-by: default avatarSam Protsenko <semen.protsenko@linaro.org>
      Reviewed-by: default avatarTom Rini <trini@konsulko.com>
      4a30a939
    • Sam Protsenko's avatar
      arm: am57xx: Set fastboot variables in environment · 8bd29623
      Sam Protsenko authored and Tom Rini's avatar Tom Rini committed
      
      One can obtain those variables using next commands:
      
          $ fastboot getvar cpu
          $ fastboot getvar secure
          $ fastboot getvar board_rev
          $ fastboot getvar userdata_size
      
      Those variables are needed for fastboot.sh script.
      
      Signed-off-by: default avatarSam Protsenko <semen.protsenko@linaro.org>
      Reviewed-by: default avatarTom Rini <trini@konsulko.com>
      8bd29623
    • Sam Protsenko's avatar
      omap: Add routine for setting fastboot variables · fa24eca1
      Sam Protsenko authored and Tom Rini's avatar Tom Rini committed
      
      This patch reuses new option, which allows us to expose variables
      from environment to "fastboot getvar" command. Those variables must be
      of "fastboot.%s" format.
      
      Signed-off-by: default avatarSam Protsenko <semen.protsenko@linaro.org>
      fa24eca1
    • Manfred Schlaegl's avatar
      ARM: fixed relocation using proper alignment · cdde7de0
      Manfred Schlaegl authored and Tom Rini's avatar Tom Rini committed
      Using u-boot-2017.05 on i.MX6UL we ran into following problem:
      Initially U-Boot could be started normally.
      If we added one random command in configuration, the newly generated
      image hung at startup (last output was DRAM:  256 MiB).
      
      We tracked this down to a data abort within relocation (relocated_code).
      
      relocated_code in arch/arm/lib/relocate.S copies 8 bytes per loop
      iteration until the source pointer is equal to __image_copy_end.
      In a good case __image_copy_end was aligned to 8 bytes, so the loop
      stopped as suggested, but in an errornous case __image_copy_end was
      not aligned to 8 bytes, so the loop ran out of bounds and caused a
      data abort exception.
      
      This patches solves the issue by aligning __image_copy_end to 8 byte
      using the linker script related to arm.
      
      I don't know if it's the correct way to solve this, so some review would
      be very appreciated.
      cdde7de0
  2. Jun 10, 2017
  3. Jun 09, 2017
Loading