1. 22 7月, 2014 10 次提交
  2. 21 7月, 2014 1 次提交
  3. 19 7月, 2014 20 次提交
  4. 16 7月, 2014 2 次提交
  5. 15 7月, 2014 1 次提交
  6. 14 7月, 2014 4 次提交
    • P
      socfpga: timer actually counts down · 2cc0ea72
      Pavel Machek 提交于
      Timer on cyclone5 actually counts down. It took me a while to figure
      out, as timer counting in wrong direction actually _can_ be used, it
      just appears to tick at extremely high frequency in u-boot.
      
      The bug was introduced in commit
      23ab7ee0.
      Signed-off-by: NPavel Machek <pavel@denx.de>
      Acked-by: NMarek Vasut <marex@denx.de>
      2cc0ea72
    • L
      ARM: DRA7xx: Update the board_name env variable · 4ec3f6e5
      Lokesh Vutla 提交于
      Update the board_name env variable and accordingly
      populate the dtb file.
      Signed-off-by: NLokesh Vutla <lokeshvutla@ti.com>
      4ec3f6e5
    • M
      boards.cfg: change "<none>" in the board field to "-" · 75e6cd27
      Masahiro Yamada 提交于
      In the previous commit, all the board fields were filled.
      
      Now we can use "-" in the board field for a different meaning.
      
      Going forward, "-" stands for no board directory
      as in cpu, soc, vendor fields.
      Signed-off-by: NMasahiro Yamada <yamada.m@jp.panasonic.com>
      75e6cd27
    • M
      boards.cfg: keep it sorted filling the board field · 5b0421e6
      Masahiro Yamada 提交于
      The boards.cfg file has allowed to use "-" for the board (= 6th) field
      if the board name is the same as the 7th field.
      
      But I notice one problem.
      Because tools/reformat.py sorts the lines in the simple alphabetical
      order (= the order of character code), some entries for the same board
      are not lined up together.
      
      For example, "bf527-ezkit" and "bf527-ezkit-v2" share the same board.
      But they are located separately because "bf527-ezkit" fills the board
      field with "-" whereas "bf527-ezkit-v2" specifies it explicitely.
      
      The similar things can be seen:
       - between "trizepsive" and "polaris"
       - between "RRvision" and "RRvision_LCD"
       - between "korat" and "korat_perm"
       - between "lwmon5" and "lcd4_lwmon5"
      
      This commit was generated by the following command:
      
      awk '$6 == "-" { $6 = $7 } { print }' boards.cfg \
        | tools/reformat.py -i -d '-' -s 8  > boards0.cfg; \
        mv boards0.cfg boards.cfg
      Signed-off-by: NMasahiro Yamada <yamada.m@jp.panasonic.com>
      5b0421e6
  7. 12 7月, 2014 1 次提交
  8. 10 7月, 2014 1 次提交