1. 26 4月, 2013 1 次提交
  2. 25 4月, 2013 7 次提交
  3. 19 4月, 2013 3 次提交
  4. 17 4月, 2013 3 次提交
  5. 16 4月, 2013 1 次提交
  6. 15 4月, 2013 3 次提交
  7. 12 4月, 2013 1 次提交
  8. 09 4月, 2013 2 次提交
  9. 29 3月, 2013 1 次提交
  10. 27 3月, 2013 1 次提交
  11. 26 3月, 2013 3 次提交
  12. 20 3月, 2013 3 次提交
  13. 19 3月, 2013 3 次提交
  14. 12 3月, 2013 3 次提交
  15. 09 3月, 2013 3 次提交
  16. 01 3月, 2013 2 次提交
    • P
      hw: include hw header files with full paths · 83c9f4ca
      Paolo Bonzini 提交于
      Done with this script:
      
      cd hw
      for i in `find . -name '*.h' | sed 's/^..//'`; do
        echo '\,^#.*include.*["<]'$i'[">], s,'$i',hw/&,'
      done | sed -i -f - `find . -type f`
      
      This is so that paths remain valid as files are moved.
      
      Instead, files in hw/dataplane are referenced with the relative path.
      We know they are not going to move to include/, and they are the only
      include files that are in subdirectories _and_ move.
      Signed-off-by: NPaolo Bonzini <pbonzini@redhat.com>
      83c9f4ca
    • P
      hw: move qdev-monitor.o to toplevel directory · b4a42f81
      Paolo Bonzini 提交于
      qdev-monitor.c is the only "core qdev" file that is not used in
      user-mode emulation, and it does not define anything that is used
      by hardware models.  Remove it from the hw/ directory and
      remove hw/qdev-monitor.h from hw/qdev.h too; this requires
      some files to have some new explicitly includes.
      Signed-off-by: NPaolo Bonzini <pbonzini@redhat.com>
      b4a42f81