1. 01 4月, 2019 2 次提交
  2. 29 3月, 2019 8 次提交
  3. 28 3月, 2019 6 次提交
  4. 27 3月, 2019 4 次提交
  5. 26 3月, 2019 15 次提交
  6. 25 3月, 2019 3 次提交
  7. 23 3月, 2019 2 次提交
    • T
      Merge branch '2019-03-22-master-imports' · cfb3e102
      Tom Rini 提交于
      - Don't attempt to write to ext4 volumes with the metadata_csum feature
        we don't support
      - Correct how we build dtb files.
      - Fix regression on SPL_FIT with FIT_IMAGE_TINY
      - Minor TI platform fixes
      cfb3e102
    • S
      fs: ext4: do not write on filesystem with metadata_csum feature · 2e736551
      Sébastien Szymanski 提交于
      U-Boot doesn't support metadata_csum feature. Writing to filesystem with
      metadata_csum feature makes the filesystem corrupted and unbootable by
      Linux:
      
      [    2.527495] EXT4-fs (mmcblk0p2): ext4_check_descriptors: Checksum for group 0 failed (52188!=0)
      [    2.537421] EXT4-fs (mmcblk0p2): ext4_check_descriptors: Checksum for group 1 failed (5262!=0)
      ...
      [    2.653308] EXT4-fs (mmcblk0p2): ext4_check_descriptors: Checksum for group 14 failed (42611!=0)
      [    2.662179] EXT4-fs (mmcblk0p2): ext4_check_descriptors: Checksum for group 15 failed (21527!=0)
      [    2.687920] JBD2: journal checksum error
      [    2.691982] EXT4-fs (mmcblk0p2): error loading journal
      [    2.698292] VFS: Cannot open root device "mmcblk0p2" or unknown-block(179,2): error -74
      
      Don't write to filesystem with meatadata_csum feature to not corrupt the
      filesystem.
      Signed-off-by: NSébastien Szymanski <sebastien.szymanski@armadeus.com>
      2e736551