From 7a1ad32d1a18ce60331c9260c5ea0aedae342621 Mon Sep 17 00:00:00 2001 From: Jan Engelhardt Date: Sat, 31 Dec 2011 03:06:56 +0100 Subject: [PATCH] doc: document --without-kbuild References: http://comments.gmane.org/gmane.comp.security.firewalls.netfilter.general/42337 --- INSTALL | 4 ++++ configure.ac | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/INSTALL b/INSTALL index ee9d838..1fc1af0 100644 --- a/INSTALL +++ b/INSTALL @@ -41,6 +41,10 @@ Configuring and compiling ./configure [options] +--without-kbuild + + Deactivate building kernel modules, and just do userspace parts. + --with-kbuild= Specifies the path to the kernel build output directory. We need diff --git a/configure.ac b/configure.ac index 969ee0d..a851286 100644 --- a/configure.ac +++ b/configure.ac @@ -11,7 +11,7 @@ AC_PROG_LIBTOOL AC_ARG_WITH([kbuild], AS_HELP_STRING([--with-kbuild=PATH], [Path to kernel build directory [[/lib/modules/CURRENT/build]]]) - AS_HELP_STRING([--without-kbuild], +AS_HELP_STRING([--without-kbuild], [Build only userspace tools]), [kbuilddir="$withval"], [kbuilddir="/lib/modules/$(uname -r)/build"])