1. 17 10月, 2019 7 次提交
  2. 15 10月, 2019 4 次提交
    • S
      image: android: Support boot image v1 and v2 · bb63363f
      Sam Protsenko 提交于
      In new versions of Android Boot Image next fields are added to the
      header (and corresponding payloads are added to the image itself):
        - v1: Recovery DTBO
        - v2: DTB
      
      Account for these new fields in next functions:
        1. android_image_get_end(): as v1 and v2 have new payloads in the
           image, the calculation of image end address should be extended
           correspondingly; this is used e.g. by "bootm" command when booting
           the kernel from Android Boot Image
        2. android_print_contents(): new fields values in v1 and v2 should be
           printed; the result of this function can be seen e.g. in "iminfo"
           command
      
      This commit doesn't add the means for working with new payloads in v1
      and v2 images (it will be done in further commits), it only updates
      existing functions w.r.t. changes in boot image v1/v2.
      Signed-off-by: NSam Protsenko <semen.protsenko@linaro.org>
      bb63363f
    • S
      image: android: Fix possible build errors · 35e99836
      Sam Protsenko 提交于
      As android_image.h uses types like u32, we need to include corresponding
      headers in place. Otherwise the user will be forced to include those in
      C file, or next build error can occur:
      
          include/android_image.h:32:5: error: unknown type name 'u32'
               u32 kernel_size; /* size in bytes */
      
      Include required headers for data types used. While at it, remove
      typedef struct, which is prohibited by kernel coding style, and fix the
      comment.
      Signed-off-by: NSam Protsenko <semen.protsenko@linaro.org>
      35e99836
    • T
      Merge branch 'master' of git://git.denx.de/u-boot-socfpga · 6891152a
      Tom Rini 提交于
      - vining_fpga updates
      6891152a
    • T
      Merge tag 'u-boot-imx-20191014' of https://gitlab.denx.de/u-boot/custodians/u-boot-imx · 6f1f28b8
      Tom Rini 提交于
      u-boot-imx-20191014
      -------------------
      
      Travis: https://travis-ci.org/sbabic/u-boot-imx/builds/597498628
      
      	- logicpd pinmux
      	- i.MX7ULP: imx_ddr_size
      	- fixes Toradex i.MX6/i.MX7
      	- pico-imx7d
      	- tpc70 converted to DM
      	- New Board: meerkat96
      	- add HAB version command
      	- i.MX8 :
            		imx8: Jump from alias to OCRAM address at SPL init
            		imx8qm/qxp: Set SPL TEXT base to OCRAM base
      6f1f28b8
  3. 14 10月, 2019 29 次提交