diff options
author | nslu2-linux.adm@bkbits.net <nslu2-linux.adm@bkbits.net> | 2005-01-22 00:40:11 +0000 |
---|---|---|
committer | nslu2-linux.adm@bkbits.net <nslu2-linux.adm@bkbits.net> | 2005-01-22 00:40:11 +0000 |
commit | 53c6a3e91599dd402036d9eff69c5be5128cd645 (patch) | |
tree | bf2d30ac0802f332f01384704ccc8b1a6ebb7645 /classes/kernel.bbclass | |
parent | 026f351b53cc8448315f20a1487a0f03ddf6d9d8 (diff) |
Merge bk://oe-devel.bkbits.net/openembedded
into bkbits.net:/repos/n/nslu2-linux/openembedded
2005/01/22 00:33:40+00:00 nexus.co.uk!pb
ignore errors from modprobe during module autoload
2005/01/21 19:28:39-05:00 handhelds.org!kergoth
Add udev 050, and consolodate the common udev metadata into a .inc.
2005/01/21 19:20:29-05:00 handhelds.org!kergoth
Upgrade to sudo 1.6.8p6, as versions of Sudo prior to 1.6.8p2 are affected by
a potential security flaw that could allow a malicious user to subvert Bash
shell scripts.
BKrev: 41f1a0ebM799gMlmTP1rllhZZDpNAw
Diffstat (limited to 'classes/kernel.bbclass')
-rw-r--r-- | classes/kernel.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/classes/kernel.bbclass b/classes/kernel.bbclass index 36d004bfe5..4bf7aad3d9 100644 --- a/classes/kernel.bbclass +++ b/classes/kernel.bbclass @@ -148,7 +148,7 @@ update-modules || true autoload_postinst_fragment() { if [ x"$D" = "x" ]; then - modprobe %s + modprobe %s || true fi } |