From d11c10fb6af182a0ffaeb00c45e3e6d060329ce7 Mon Sep 17 00:00:00 2001 From: Nicholas Randon Date: Wed, 9 Apr 2014 09:56:07 +0100 Subject: [PATCH] Remove call to depmod in busybox The version of depmod in busybox does not work if two versions of the same kernel version are available, as search paths are not honoured correctly. However, we don't need to actually call depmod as it's done during image building anyway. Change-Id: Idd3cd5854e7c86e7ca1f2b0e50758d7db79ab6e7 Co-Author: matthew.gilliard@hp.com Closes-bug: #1302856 --- elements/ramdisk/extra-data.d/scripts/d/init-func | 1 - 1 file changed, 1 deletion(-) diff --git a/elements/ramdisk/extra-data.d/scripts/d/init-func b/elements/ramdisk/extra-data.d/scripts/d/init-func index 533695d7..cdde49d4 100755 --- a/elements/ramdisk/extra-data.d/scripts/d/init-func +++ b/elements/ramdisk/extra-data.d/scripts/d/init-func @@ -46,7 +46,6 @@ function string_contains() { } function load_modules_by_udev() { - depmod udevadm trigger --action=add udevadm settle }