1. Sep 06, 2016
  2. Jan 13, 2016
  3. Nov 29, 2015
  4. Nov 26, 2015
  5. Nov 19, 2015
  6. Nov 18, 2015
  7. Nov 17, 2015
    • Andrew Waterman's avatar
      Use IPIs to wake up harts · 197a8b81
      Andrew Waterman authored
      This has the side effect of testing the IPI mechanism.  Still not sure
      this is the best approach to booting, but it works...
      197a8b81
  8. Nov 13, 2015
  9. Oct 20, 2015
  10. Sep 17, 2015
  11. Sep 15, 2015
  12. Sep 12, 2015
  13. Sep 09, 2015
  14. Sep 04, 2015
  15. Sep 03, 2015
  16. Jul 28, 2015
  17. Jul 25, 2015
  18. Jul 24, 2015
  19. Jul 23, 2015
  20. Jul 06, 2015
  21. Jun 25, 2015
  22. Jun 12, 2015
  23. Jun 03, 2015
  24. Jun 01, 2015
  25. May 30, 2015
  26. May 29, 2015
    • Andrew Waterman's avatar
      "Fix" mremap bug by returning -ENOSYS · 835d03d2
      Andrew Waterman authored
      mremap was badly broken, and maybe it's not worth the time to fix it.
      glibc still seems to work ok, because the malloc implementation handles
      mremap failure gracefully (though at a performance cost).
      835d03d2
  27. May 19, 2015
    • Andrew Waterman's avatar
      Merge pull request #9 from palmer-dabbelt/destdir · b2251a98
      Andrew Waterman authored
      Change the behavior of the DESTDIR make variable
      b2251a98
    • Palmer Dabbelt's avatar
      Change the behavior of the DESTDIR make variable · 3cf271eb
      Palmer Dabbelt authored
      DESTDIR is a common make idiom.  As per the GNU coding standards
      
        https://www.gnu.org/prep/standards/html_node/DESTDIR.html
      
        "DESTDIR is a variable prepended to each installed target file, like
        this:
      
        $(INSTALL_PROGRAM) foo $(DESTDIR)$(bindir)/foo
        $(INSTALL_DATA) libfoo.a $(DESTDIR)$(libdir)/libfoo.a
      
        The DESTDIR variable is specified by the user on the make command
        line as an absolute file name. For example:
      
        make DESTDIR=/tmp/stage install
      
        DESTDIR should be supported only in the install* and uninstall*
        targets, as those are the only targets where it is useful.
      
        If your installation step would normally install /usr/local/bin/foo
        and /usr/local/lib/libfoo.a, then an installation invoked as in the
        example above would install /tmp/stage/usr/local/bin/foo and
        /tmp/stage/usr/local/lib/libfoo.a instead."
      
      The current Makefile.in uses DESTDIR, but has a slightly non-standard
      behavior: the target install location doesn't include "$prefix".  This
      breaks package managers, because stuff ends up getting installed to
      the wrong location.
      
      Unfortunately the only way I can think of to fix this involves
      silently changing the behavior of DESTDIR.  Hopefully nobody is using
      it...?
      
      [port of 8a2088b59162fe16c16d26ddc1cfcaaaa8c4156f in riscv-fesvr]
      3cf271eb
  28. May 14, 2015