diff options
author | Jérôme Pouiller <jezz@sysmic.org> | 2013-02-12 12:21:26 +0100 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2013-08-13 23:09:34 +0200 |
commit | f62a006639bb4222027415bee7193061ca1c514c (patch) | |
tree | 39b6e8d8a9d2799253bc4e22d3140e8b00309bb4 /package/lxc/lxc.mk | |
parent | bda69bf4e4b642ab199ffa13c7356709885f129d (diff) | |
download | buildroot-f62a006639bb4222027415bee7193061ca1c514c.tar.gz buildroot-f62a006639bb4222027415bee7193061ca1c514c.zip |
lxc: new package
Linux Containers (LXC), provides the ability to group and isolate
of a set of processes in a jail by virtualizing and accounting the
kernel resources. It is similar to Linux-Vserver or Openvz.
Signed-off-by: Jérôme Pouiller <jezz@sysmic.org>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/lxc/lxc.mk')
-rw-r--r-- | package/lxc/lxc.mk | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/package/lxc/lxc.mk b/package/lxc/lxc.mk new file mode 100644 index 0000000000..4e069029d5 --- /dev/null +++ b/package/lxc/lxc.mk @@ -0,0 +1,14 @@ +################################################################################ +# +# lxc +# +################################################################################ + +LXC_VERSION = 0.9.0 +LXC_SITE = http://downloads.sourceforge.net/project/lxc/lxc/lxc-$(LXC_VERSION) +LXC_LICENSE = LGPLv2.1+ +LXC_LICENSE_FILES = COPYING +LXC_DEPENDENCIES = libcap +LXC_CONF_OPT = --disable-apparmor + +$(eval $(autotools-package)) |