* 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:
Eelco Dolstra 2008-10-29 13:38:43 +00:00
parent 3a9700b226
commit ea67a42d26

View file

@ -102,7 +102,7 @@ done
# Load some kernel modules.
for i in $(cat @modulesClosure@/insmod-list); do
echo "loading module $(basename $i)..."
insmod $i
insmod $i || true
done