1. 08 8月, 2010 2 次提交
  2. 07 8月, 2010 1 次提交
  3. 06 8月, 2010 1 次提交
  4. 04 8月, 2010 5 次提交
  5. 03 8月, 2010 2 次提交
  6. 02 8月, 2010 3 次提交
  7. 30 7月, 2010 1 次提交
  8. 27 7月, 2010 15 次提交
  9. 26 7月, 2010 7 次提交
  10. 25 7月, 2010 3 次提交
    • W
      fs/fat: Big code cleanup. · 7385c28e
      Wolfgang Denk 提交于
      - reformat
      - throw out macros like FAT_DPRINT and FAT_DPRINT
      - remove dead code
      Signed-off-by: NWolfgang Denk <wd@denx.de>
      7385c28e
    • W
      usb_storage.c: change progress output in debug() message · 226fa9bb
      Wolfgang Denk 提交于
      The dots printed by common/usb_storage.c as progress meter corrupt the
      output for example of "fatls usb" commands like this:
      
      => fatls usb 0
      .			<<==== here
             29   file.001
             29   file.002
             29   file.003
             29   file.004
             29   file.005
             29   file.006
             29   file.007
             29   file.008
             29   file.009
             29   file.010
             29   file.011
             29   file.012
             29   file.013
             29   file.014
             29   file.015
             29   file.016
      .			<<==== here
             29   file.017
             29   file.018
             29   file.019
      ...
      
      Turn the progress output into a debug message.
      Signed-off-by: NWolfgang Denk <wd@denx.de>
      Cc: Remy Bohmer <linux@bohmer.net>
      226fa9bb
    • W
      FAT32: fix broken root directory handling. · 2aa98c66
      Wolfgang Denk 提交于
      On FAT32, instead of fetching the cluster numbers from the FAT, the
      code assumed (incorrectly) that the clusters for the root directory
      were allocated contiguously. In the result, only the first cluster
      could be accessed. At the typical cluster size of 8 sectors this
      caused all accesses to files after the first 128 entries to fail -
      "fatls" would terminate after 128 files (usually displaying a bogus
      file name, occasionally even crashing the system), and "fatload"
      would fail to find any files that were not in the first directory
      cluster.
      Signed-off-by: NWolfgang Denk <wd@denx.de>
      2aa98c66