]> Git Repo - linux.git/commitdiff
kbuild: do not check for ancient modutils tools
authorLucas De Marchi <[email protected]>
Tue, 17 Jan 2012 16:50:51 +0000 (14:50 -0200)
committerMichal Marek <[email protected]>
Mon, 23 Jan 2012 14:12:19 +0000 (15:12 +0100)
scripts/depmod.sh checks for the output of '-V' expecting that it has
module-init-tools in it. It's a hack to prevent users from using
modutils instead of module-init-tools, that only works with 2.4.x
kernels. This however prints an annoying warning for kmod tool, that is
currently replacing module-init-tools.

Rather than putting another check for kmod's version, just remove it
since users of 2.4.x kernel are unlikely to upgrade to 3.x, and if they
do, let depmod fail in that case because they should know what they are
doing.

Signed-off-by: Lucas De Marchi <[email protected]>
Acked-by: WANG Cong <[email protected]>
Acked-By: Kay Sievers <[email protected]>
Signed-off-by: Michal Marek <[email protected]>
scripts/depmod.sh

index a272356859497fec41796a37e750c4dfc891827d..2ae4817031415a87af016a29fe9125bfccc82855 100755 (executable)
@@ -9,12 +9,6 @@ fi
 DEPMOD=$1
 KERNELRELEASE=$2
 
-if ! "$DEPMOD" -V 2>/dev/null | grep -q module-init-tools; then
-       echo "Warning: you may need to install module-init-tools" >&2
-       echo "See http://www.codemonkey.org.uk/docs/post-halloween-2.6.txt" >&2
-       sleep 1
-fi
-
 if ! test -r System.map -a -x "$DEPMOD"; then
        exit 0
 fi
This page took 0.053543 seconds and 4 git commands to generate.