[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <20101103165505.GA3281@fedora-14-r710.oslab.blr.amer.dell.com>
Date: Wed, 3 Nov 2010 22:25:25 +0530
From: <Narendra_K@...l.com>
To: <linux-hotplug@...r.kernel.org>
CC: <netdev@...r.kernel.org>, <Matt_Domsch@...l.com>,
<Jordan_Hargrave@...l.com>, <Charles_Rose@...l.com>
Subject: [PATCH 1/1] UDEV - Add 'udevlom' command line param to start_udev
Hello,
This patch allows users to specify if they want the onboard network
interfaces to be renamed to lomN by implementing a command line param
'udevlom'.
From: Narendra K <narendra_k@...l.com>
Subject: [PATCH] UDEV - Add 'udevlom' command line param to start_udev
This patch implements 'udevlom' command line parameter, which
when passed, results in onboard network interfaces getting
renamed to lomN.
Signed-off-by: Narendra K <narendra_k@...l.com>
---
start_udev | 5 +++++
1 files changed, 5 insertions(+), 0 deletions(-)
diff --git a/start_udev b/start_udev
index 49fc286..57d60c9 100755
--- a/start_udev
+++ b/start_udev
@@ -32,6 +32,7 @@ export TZ=/etc/localtime
. /etc/init.d/functions
prog=udev
+cmdline=`cat /proc/cmdline`
touch_recursive() {
( cd $1;
@@ -60,6 +61,10 @@ fi
ret=$[$ret + $?]
+if strstr "$cmdline" udevlom; then
+ /sbin/udevadm control --env=UDEVLOM="y"
+fi
+
/sbin/udevadm trigger --type=subsystems --action=add
/sbin/udevadm trigger --type=devices --action=add
/sbin/udevadm settle
--
1.7.3.1
With regards,
Narendra K
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists