Skip to content
Snippets Groups Projects
  1. Nov 10, 2017
  2. Nov 09, 2017
  3. Nov 07, 2017
  4. Nov 06, 2017
    • Tom Rini's avatar
      Prepare v2017.11-rc4 · 7a69604b
      Tom Rini authored
      
      Signed-off-by: default avatarTom Rini <trini@konsulko.com>
      7a69604b
    • Chris Brandt's avatar
      cosmetic: rmobile: renesas spelled wrong · fc856050
      Chris Brandt authored
      
      Renesas was spelled wrong.
      
      Signed-off-by: default avatarChris Brandt <chris.brandt@renesas.com>
      fc856050
    • Jan Kundrát's avatar
      Do not attempt to use the systemwide libfdt · b95a5190
      Jan Kundrát authored
      
      U-Boot bundles a patched copy of libfdt, so it's wrong to attempt to
      include it <like/this>. This breaks the build for me when I have dtc
      fully installed in my host -- as happened earlier tonight with
      Buildroot, for example.
      
      There are several other occurrences throughout the code where '<libfdt'
      matches. I'm not modifying these because I have no clue why the
      <systemwide> include style is being used -- IMHO wrongly.
      
      Signed-off-by: default avatarJan Kundrát <jan.kundrat@cesnet.cz>
      b95a5190
    • Angelo Dureghello's avatar
      m68k: doc: update outdated documentation · 6ba2da90
      Angelo Dureghello authored
      
      Update m68k documentation to reflect the current ColdFire
      architecture support status.
      
      Signed-off-by: default avatarAngelo Dureghello <angelo@sysam.it>
      6ba2da90
    • Shawn Guo's avatar
      disk: part_dos: fix part_get_info_extended() function · 8f7102cf
      Shawn Guo authored
      
      The check in part_get_info_extended() for a successful partition
      searching misses a condition for extended partition. In case of
      (ext_part_sector == 0), we should anyway mark the partition as found,
      even if it's an extended partition, i.e. (is_extended(pt->sys_ind) == 0).
      Otherwise, the extended partition (type 0x0f) will never be identified,
      and the following recursive call to part_get_info_extended() will get a
      wrong 'part_num' and 'which_part' parameter.  In the end, all those
      partitions in extended table will not be identified.
      
      Let's add the missing OR condition of (ext_part_sector == 0) for
      is_extended() check to fix the problem.
      
      The issue is discovered by running fastboot flash to an extended
      partition on eMMC.
      
        $ fastboot flash mmcsda5 cache.img
        target reported max download size of 536870912 bytes
        sending 'mmcsda5' (18796 KB)...
        OKAY [  2.144s]
        writing 'mmcsda5'...
        FAILED (remote: cannot find partition)
        finished. total time: 2.261s
      
      Signed-off-by: default avatarShawn Guo <shawn.guo@linaro.org>
      8f7102cf
    • Lukasz Majewski's avatar
      gpt: Use cache aligned buffers for gpt_h and gpt_e · bb021013
      Lukasz Majewski authored
      
      Before this patch one could receive following errors when executing
      "gpt write" command on machine with cache enabled:
      
      display5 factory > gpt write mmc ${mmcdev} ${partitions}
      Writing GPT:
      CACHE: Misaligned operation at range [4ef8f7f0, 4ef8f9f0]
      CACHE: Misaligned operation at range [4ef8f9f8, 4ef939f8]
      CACHE: Misaligned operation at range [4ef8f9f8, 4ef939f8]
      CACHE: Misaligned operation at range [4ef8f7f0, 4ef8f9f0]
      success!
      
      To alleviate this problem - the calloc()s have been replaced with
      malloc_cache_aligned() and memset().
      
      After those changes the buffers are properly aligned (with both start
      address and size) to SoC cache line.
      
      Signed-off-by: default avatarLukasz Majewski <lukma@denx.de>
      bb021013
Loading