Skip to content
Snippets Groups Projects
  1. Nov 11, 2019
    • Vignesh Rajendran's avatar
      gitattributes: dont treat non-text files as text · d6da4da3
      Vignesh Rajendran authored
      
      With recent update in u-boot gitattributes all files are treated as regular
      text files. This creates problems with special files and repo always
      shows uncommitted files like below.
      
      Your branch is up-to-date with 'origin/master'.
      Changes not staged for commit:
        (use "git add <file>..." to update what will be committed)
        (use "git checkout -- <file>..." to discard changes in working directory)
      
      	modified:   tools/logos/compulab.bmp
      	modified:   tools/logos/denx-comp.bmp
      	modified:   tools/logos/toradex.bmp
      
      To fix above problem special files bmp/ttf files are treated as binary
      files in the gitattributes.
      
      Signed-off-by: default avatarVignesh Rajendran <vignesh.rajendran@in.bosch.com>
      Signed-off-by: default avatarVeeraiyan Chidambaram <veeraiyan.chidambaram@in.bosch.com>
      d6da4da3
    • Michael Trimarchi's avatar
      .gitignore: Ignore .img files · d25a2d38
      Michael Trimarchi authored
      
      The generated idbloader.img file that rockchip uses should
      be not included in git status report
      
      Signed-off-by: default avatarMichael Trimarchi <michael@amarulasolutions.com>
      d25a2d38
    • Simon Glass's avatar
      binman: tegra: Adjust symbol calculation depending on end-at-4gb · 7c150136
      Simon Glass authored
      
      A recent change adjusted the symbol calculation to work on x86 but broke
      it for Tegra. In fact this is because they have different needs.
      
      On x86 devices the code is linked to a ROM address and the end-at-4gb
      property is used for the image. In this case there is no need to add the
      base address of the image, since the base address is already built into
      the offset and image-pos properties.
      
      On other devices we must add the base address since the offsets start at
      zero.
      
      In addition the base address is currently added to the 'offset' and 'size'
      values. It should in fact only be added to 'image-pos', since 'offset' is
      relative to its parent and 'size' is not actually an address. This code
      should have been adjusted when support for 'image-pos' and 'size' was
      added, but it was not.
      
      To correct these problems:
      - move the code that handles adding the base address to section.py, which
        can check the end-at-4gb property and which property
        (offset/size/image-pos) is being read
      - add the base address only when needed (only for image-pos and not if the
        image uses end-at-4gb)
      - add a note to the documentation
      - add a separate test to cover x86 behaviour
      
      Fixes: 15c981cc (binman: Correct symbol calculation with non-zero image base)
      
      Signed-off-by: default avatarSimon Glass <sjg@chromium.org>
      Tested-by: default avatarStephen Warren <swarren@nvidia.com>
      7c150136
    • Tom Rini's avatar
      Merge tag 'u-boot-rockchip-20191110' of https://gitlab.denx.de/u-boot/custodians/u-boot-rockchip · 086e391b
      Tom Rini authored
      - Add support for rockchip pmic rk805,rk809, rk816, rk817
      - Add rk3399 board Leez support
      - Fix bug in rk3328 ram driver
      - Adapt SPL to support ATF bl31 with entry at 0x40000
      - Fix the u8 type comparision with '-1'.
      - Fix checkpatch warning for multi blank line and review signature.
      086e391b
    • Tom Rini's avatar
      Merge https://gitlab.denx.de/u-boot/custodians/u-boot-fsl-qoriq · 0b73ef0c
      Tom Rini authored
      - Rename CONFIG_SECURE_BOOT to CONFIG_NXP_ESBC.
      - Few bug fixes and updates related to SPI, hwconfig, ethernet,
        fsl-layerscape, pci, icid, PSCI
      0b73ef0c
  2. Nov 10, 2019
  3. Nov 08, 2019
Loading