From a312425823f84ef0b899795d460a83c652d00146 Mon Sep 17 00:00:00 2001 From: ramon Date: Wed, 6 Nov 2013 13:15:08 +0000 Subject: [PATCH] =?UTF-8?q?#382=20#603:=20Proceso=20de=20arranque=20del=20?= =?UTF-8?q?cliente=20usa=20el=20par=C3=A1metro=20{{{ognetmodule}}}=20para?= =?UTF-8?q?=20cargar=20el=20m=C3=B3dulo=20de=20red=20adecuado,=20junto=20c?= =?UTF-8?q?on=20sus=20dependencias.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit git-svn-id: https://opengnsys.es/svn/branches/version1.0@4077 a21b9725-9963-47de-94b9-378ad31fedc9 --- includes/etc/initramfs-tools/scripts/ogfunctions | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/includes/etc/initramfs-tools/scripts/ogfunctions b/includes/etc/initramfs-tools/scripts/ogfunctions index c12fa0b..1870dca 100644 --- a/includes/etc/initramfs-tools/scripts/ogfunctions +++ b/includes/etc/initramfs-tools/scripts/ogfunctions @@ -162,8 +162,8 @@ ogLoadNetModule () { if [ -n "$ognetmodule" ] then - echo "Cargando modulo de red $netmodule" - insmod `find /lib/modules/ -name ${netmodule}*` + echo "Cargando modulo de red $ognetmodule" + modprobe ${ognetmodule} fi }