* Continue booting when loading a kernel module fails. For instance,
on my system when booting Linux 2.6.27, ide-generic fails with "Cannot allocate memory" (maybe because ata_piix already claimed the IDE devices?). svn path=/nixos/trunk/; revision=13147
This commit is contained in:
parent
3a9700b226
commit
ea67a42d26
|
@ -102,7 +102,7 @@ done
|
||||||
# Load some kernel modules.
|
# Load some kernel modules.
|
||||||
for i in $(cat @modulesClosure@/insmod-list); do
|
for i in $(cat @modulesClosure@/insmod-list); do
|
||||||
echo "loading module $(basename $i)..."
|
echo "loading module $(basename $i)..."
|
||||||
insmod $i
|
insmod $i || true
|
||||||
done
|
done
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue