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"])