File tree Expand file tree Collapse file tree 2 files changed +14
-13
lines changed Expand file tree Collapse file tree 2 files changed +14
-13
lines changed Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ binutils 2.20 ld -v
35
35
flex 2.5.35 flex --version
36
36
bison 2.0 bison --version
37
37
util-linux 2.10o fdformat --version
38
- module-init-tools 0.9.10 depmod -V
38
+ kmod 13 depmod -V
39
39
e2fsprogs 1.41.4 e2fsck -V
40
40
jfsutils 1.1.3 fsck.jfs -V
41
41
reiserfsprogs 3.6.3 reiserfsck -V
@@ -156,12 +156,6 @@ is not build with ``CONFIG_KALLSYMS`` and you have no way to rebuild and
156
156
reproduce the Oops with that option, then you can still decode that Oops
157
157
with ksymoops.
158
158
159
- Module-Init-Tools
160
- -----------------
161
-
162
- A new module loader is now in the kernel that requires ``module-init-tools ``
163
- to use. It is backward compatible with the 2.4.x series kernels.
164
-
165
159
Mkinitrd
166
160
--------
167
161
@@ -371,16 +365,17 @@ Util-linux
371
365
372
366
- <https://www.kernel.org/pub/linux/utils/util-linux/>
373
367
368
+ Kmod
369
+ ----
370
+
371
+ - <https://www.kernel.org/pub/linux/utils/kernel/kmod/>
372
+ - <https://git.kernel.org/pub/scm/utils/kernel/kmod/kmod.git>
373
+
374
374
Ksymoops
375
375
--------
376
376
377
377
- <https://www.kernel.org/pub/linux/utils/kernel/ksymoops/v2.4/>
378
378
379
- Module-Init-Tools
380
- -----------------
381
-
382
- - <https://www.kernel.org/pub/linux/utils/kernel/module-init-tools/>
383
-
384
379
Mkinitrd
385
380
--------
386
381
Original file line number Diff line number Diff line change 10
10
DEPMOD=$1
11
11
KERNELRELEASE=$2
12
12
13
- if ! test -r System.map -a -x " $DEPMOD " ; then
13
+ if ! test -r System.map ; then
14
14
exit 0
15
15
fi
16
16
17
+ if [ -z $( command -v $DEPMOD ) ]; then
18
+ echo " 'make modules_install' requires $DEPMOD . Please install it." >&2
19
+ echo " This is probably in the kmod package." >&2
20
+ exit 1
21
+ fi
22
+
17
23
# older versions of depmod require the version string to start with three
18
24
# numbers, so we cheat with a symlink here
19
25
depmod_hack_needed=true
You can’t perform that action at this time.
0 commit comments