1. 02 9月, 2008 1 次提交
  2. 24 8月, 2008 1 次提交
  3. 11 8月, 2008 2 次提交
  4. 09 8月, 2008 1 次提交
  5. 07 8月, 2008 2 次提交
  6. 03 8月, 2008 1 次提交
  7. 02 8月, 2008 1 次提交
    • D
      [MTD] Fix !CONFIG_BLOCK compile for mtdsuper.c · f1136d02
      David Woodhouse 提交于
      As reported by Adrian Bunk, commit d5686b44
      (switch mtd and dm-table to lookup_bdev()) causes the following compile
      error with CONFIG_BLOCK=n:
      
        CC      drivers/mtd/mtdsuper.o
      drivers/mtd/mtdsuper.c: In function `get_sb_mtd':
      drivers/mtd/mtdsuper.c:184: error: implicit declaration of function 'lookup_bdev'
      drivers/mtd/mtdsuper.c:184: warning: assignment makes pointer from integer without a cast
      drivers/mtd/mtdsuper.c:197: error: implicit declaration of function 'bdput'
      make[3]: *** [drivers/mtd/mtdsuper.o] Error 1
      
      Fix it by putting the block device lookup inside #ifdef CONFIG_BLOCK
      Signed-off-by: NDavid Woodhouse <David.Woodhouse@intel.com>
      f1136d02
  8. 01 8月, 2008 11 次提交
  9. 31 7月, 2008 1 次提交
  10. 30 7月, 2008 3 次提交
  11. 25 7月, 2008 14 次提交
  12. 24 7月, 2008 2 次提交
    • A
      UBI: fix gcc warning · eeb16e87
      Artem Bityutskiy 提交于
      Fix the following warning:
      
      drivers/mtd/ubi/vmt.c: In function 'ubi_rename_volumes':
      drivers/mtd/ubi/vmt.c:642: warning: statement with no effect
      Signed-off-by: NArtem Bityutskiy <Artem.Bityutskiy@nokia.com>
      eeb16e87
    • A
      UBI: remove pre-sqnum images support · 9869cd80
      Artem Bityutskiy 提交于
      Before UBI got into mainline, there was a slight flash format
      change - we did not have sequence number support, then added it.
      
      We have carried full support of those ancient images till this
      moment. Now the support is removed, well, not fully removed.
      
      Now UBI will support only _clean_ old images, which were cleanly
      detached last time (just before kernel upgrade). This is most
      likely the case.
      
      But we will not support unclean ancient images. Surprisingly,
      this allows us to remove a big chunk of legacy code.
      
      And the same should be true for downgrading: clean images should
      downgrade fine, but unclean ones will not.
      Signed-off-by: NArtem Bityutskiy <Artem.Bityutskiy@nokia.com>
      9869cd80