1. 14 Mar, 2017 3 commits
  2. 12 Mar, 2017 1 commit
  3. 11 Mar, 2017 4 commits
  4. 09 Mar, 2017 1 commit
  5. 06 Mar, 2017 2 commits
  6. 03 Mar, 2017 1 commit
  7. 02 Mar, 2017 1 commit
  8. 27 Feb, 2017 2 commits
  9. 26 Feb, 2017 2 commits
  10. 25 Feb, 2017 1 commit
  11. 23 Feb, 2017 4 commits
  12. 22 Feb, 2017 1 commit
  13. 19 Feb, 2017 2 commits
  14. 18 Feb, 2017 6 commits
  15. 17 Feb, 2017 1 commit
  16. 16 Feb, 2017 1 commit
  17. 15 Feb, 2017 2 commits
  18. 12 Feb, 2017 3 commits
    • Merge pull request #1430 from ffontaine/master · 1f14c2ea
      Christian Brauner authored
      Add HAVE_LIBCAP
    • Add HAVE_LIBCAP · e37dda71
      Fabrice Fontaine authored
      Currently it is impossible to build lxc with --disable-capabilities if
      the user has libcap-dev installed on his system as:
       - calls to cap_xxx functions are not protected by HAVE_LIBCAP defines.
       The whole file is only protected by HAVE_SYS_CAPABILITY_H.
       - AC_CHECK_LIB default action-if-found is overriden by [true] so
       HAVE_LIBCAP is never written to config.h
      
      This patch replaces all HAVE_SYS_CAPABILITY_H checks by HAVE_LIBCAP
      checks (fix #1361)
      Signed-off-by: 's avatarFabrice Fontaine <fontaine.fabrice@gmail.com>
    • seccomp: allow x32 guests on amd64 hosts. · 11de80d6
      Adam Borowski authored
      Without this patch, x32 guests (and no others) worked "natively" with x32
      host lxc, but not on regular amd64 hosts.  That was especially problematic
      as a number of ioctls such as those needed by netfilter don't work in such
      scenarios, thus you want to run amd64 on the host.
      
      With the patch, you can use all three ABIs: i386 x32 amd64 on amd64 hosts.
      
      Despite x32 being little used, there's no reason to deny it by default:
      the admin needs to compile their own kernel with CONFIG_X86_X32=y or (on
      Debian) boot with syscall.x32=y.  If they've done so, it is a reasonable
      assumption they want x32 guests.
      Signed-off-by: 's avatarAdam Borowski <kilobyte@angband.pl>
  19. 08 Feb, 2017 2 commits