1. 03 6月, 2009 7 次提交
  2. 29 5月, 2009 2 次提交
    • W
      5520ab1f
    • S
      jffs2/mtdparts: Fix problem with usage from JFFS2 and MTDPARTS together · 76b5883d
      Stefan Roese 提交于
      Currently using JFFS2 with MTDPARTS enabled doesn't work. This is because
      mtdparts_init() is available in both files, cmd_mtdparts.c and
      cmd_jffs2.c. Please note that in the original cmd_jffs2.c file (before
      the jffs2/mtdparts command/file split those 2 different versions
      already existed. So this is nothing new. The main problem is that the
      variables "current_dev" and "current_partnum" are declared in both
      files now. This doesn't work.
      
      This patch now changes the names of those variable to more specific
      names: "current_mtd_dev" and "current_mtd_partnum". This is because
      this patch also changes the declaration from static to global, so
      that they can be used from both files.
      
      Please note that my first tests were not successful. The MTD devices
      selected via mtdparts are now accessed but I'm failing to see the
      directory listed via the "ls" command. Nothing is displayed. Perhaps
      I didn't generate the JFFS2 image correctly (I never used JFFS2 in
      U-Boot before). Not sure. Perhaps somebody else could take a look at
      this as well. I'll continue looking into this on Monday.
      Signed-off-by: NStefan Roese <sr@denx.de>
      Cc: Wolfgang Denk <wd@denx.de>
      Cc: Detlev Zundel <dzu@denx.de>
      Cc: Ilya Yanok <yanok@emcraft.com>
      Cc: Renaud barbier <renaud.barbier@ge.com>
      76b5883d
  3. 26 5月, 2009 1 次提交
  4. 23 5月, 2009 3 次提交
  5. 21 5月, 2009 4 次提交
  6. 20 5月, 2009 1 次提交
  7. 19 5月, 2009 1 次提交
    • G
      Blackfin: fix timer_init()/timer_reset() · ec01481d
      Graf Yang 提交于
      The timer_init() function was not using the right csync instruction, nor
      was it doing it right after disabling the core timer.
      
      The timer_reset() function would reset the timestamp, but not the actual
      timer, so there was a common edge case where get_timer() return a jump of
      one timestamp (couple milliseconds) right after resetting.  This caused
      many functions to improperly timeout right away.
      Signed-off-by: NGraf Yang <graf.yang@analog.com>
      Signed-off-by: NMike Frysinger <vapier@gentoo.org>
      ec01481d
  8. 16 5月, 2009 19 次提交
  9. 15 5月, 2009 2 次提交