All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/1] Convert MAC in BOOTIF parameter to lower case
@ 2012-06-26 18:34 Srinivasa T N
       [not found] ` <4FEA00BC.8090505-23VcF4HTsmIX0ybBhKVfKdBPR1lH4CV8@public.gmane.org>
  0 siblings, 1 reply; 4+ messages in thread
From: Srinivasa T N @ 2012-06-26 18:34 UTC (permalink / raw)
  To: initramfs-u79uwXL29TY76Z2rM5mHXA

[-- Attachment #1: Type: text/plain, Size: 469 bytes --]

The patch at http://comments.gmane.org/gmane.linux.kernel.initramfs/2244 
takes care of only the MAC conversion to lower case in the interface 
name.  But the same has to be taken care for BOOTIF also.  This patch 
takes care of changing the BOOTIF to lower case.

Note that sed has been used instead of tr, as dracut does not install tr 
to the initramfs, atleast on RHEL 6.x.

Signed-off-by: Srinivasa T N (seenutn-23VcF4HTsmIX0ybBhKVfKdBPR1lH4CV8@public.gmane.org)


[-- Attachment #2: convert-mac-to-lower-net-genrules.patch --]
[-- Type: text/plain, Size: 628 bytes --]

diff -rNu a/dracut-004/modules.d/40network/net-genrules.sh b/dracut-004/modules.d/40network/net-genrules.sh
--- a/dracut-004/modules.d/40network/net-genrules.sh	2012-06-26 21:51:37.835027611 +0530
+++ b/dracut-004/modules.d/40network/net-genrules.sh	2012-06-25 14:21:02.905652291 +0530
@@ -10,7 +10,8 @@
     macaddr=${macaddr%:}
     # strip hardware type field from pxelinux
     [ -n "${macaddr%??:??:??:??:??:??}" ] && macaddr=${macaddr#??:}
-    echo $macaddr
+    # return macaddr with lowercase alpha characters expected by udev
+    echo $macaddr | sed 'y/ABCDEF/abcdef/'
 }
 
 # Don't continue if we don't need network

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH 1/1] Convert MAC in BOOTIF parameter to lower case
       [not found] ` <4FEA00BC.8090505-23VcF4HTsmIX0ybBhKVfKdBPR1lH4CV8@public.gmane.org>
@ 2012-06-27 10:33   ` Anton Blanchard
  2012-06-27 11:37     ` Srinivasa T N
  0 siblings, 1 reply; 4+ messages in thread
From: Anton Blanchard @ 2012-06-27 10:33 UTC (permalink / raw)
  To: Srinivasa T N; +Cc: initramfs-u79uwXL29TY76Z2rM5mHXA


Hi,

> The patch at
> http://comments.gmane.org/gmane.linux.kernel.initramfs/2244 takes
> care of only the MAC conversion to lower case in the interface name.
> But the same has to be taken care for BOOTIF also.  This patch takes
> care of changing the BOOTIF to lower case.
> 
> Note that sed has been used instead of tr, as dracut does not install
> tr to the initramfs, atleast on RHEL 6.x.

Good to know, could you replace the existing interface MAC conversion
with sed too?

Thanks,
Anton

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH 1/1] Convert MAC in BOOTIF parameter to lower case
  2012-06-27 10:33   ` Anton Blanchard
@ 2012-06-27 11:37     ` Srinivasa T N
       [not found]       ` <4FEAF08F.1030103-23VcF4HTsmIX0ybBhKVfKdBPR1lH4CV8@public.gmane.org>
  0 siblings, 1 reply; 4+ messages in thread
From: Srinivasa T N @ 2012-06-27 11:37 UTC (permalink / raw)
  To: Anton Blanchard; +Cc: initramfs-u79uwXL29TY76Z2rM5mHXA

[-- Attachment #1: Type: text/plain, Size: 596 bytes --]

On 06/27/2012 04:03 PM, Anton Blanchard wrote:
>
> Hi,
>
>> The patch at
>> http://comments.gmane.org/gmane.linux.kernel.initramfs/2244 takes
>> care of only the MAC conversion to lower case in the interface name.
>> But the same has to be taken care for BOOTIF also.  This patch takes
>> care of changing the BOOTIF to lower case.
>>
>> Note that sed has been used instead of tr, as dracut does not install
>> tr to the initramfs, atleast on RHEL 6.x.
>
> Good to know, could you replace the existing interface MAC conversion
> with sed too?
>

Attached a patch to do the same.

Regards,
Seenu.

[-- Attachment #2: convert-mac-to-lower-parse-ifname.sh --]
[-- Type: application/x-shellscript, Size: 905 bytes --]

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH 1/1] Convert MAC in BOOTIF parameter to lower case
       [not found]       ` <4FEAF08F.1030103-23VcF4HTsmIX0ybBhKVfKdBPR1lH4CV8@public.gmane.org>
@ 2012-06-29 10:32         ` Srinivasa T N
  0 siblings, 0 replies; 4+ messages in thread
From: Srinivasa T N @ 2012-06-29 10:32 UTC (permalink / raw)
  To: Srinivasa T N
  Cc: Anton Blanchard, initramfs-u79uwXL29TY76Z2rM5mHXA,
	Kamalesh Babulal, luciano.chavez-r/Jw6+rmf7HQT0dZR+AlfA

[-- Attachment #1: Type: text/plain, Size: 763 bytes --]

On 06/27/2012 05:07 PM, Srinivasa T N wrote:
> On 06/27/2012 04:03 PM, Anton Blanchard wrote:
>>
>> Hi,
>>
>>> The patch at
>>> http://comments.gmane.org/gmane.linux.kernel.initramfs/2244 takes
>>> care of only the MAC conversion to lower case in the interface name.
>>> But the same has to be taken care for BOOTIF also. This patch takes
>>> care of changing the BOOTIF to lower case.
>>>
>>> Note that sed has been used instead of tr, as dracut does not install
>>> tr to the initramfs, atleast on RHEL 6.x.
>>
>> Good to know, could you replace the existing interface MAC conversion
>> with sed too?
>>
>
> Attached a patch to do the same.
>
Sorry for sending the wrong patch yesterday.  I am sending the correct 
patch with both the patches.

Regards,
Seenu.

[-- Attachment #2: convert-mac-to-lower-case.patch --]
[-- Type: text/plain, Size: 2056 bytes --]

From 2ec9c91adbf808dbad9bdd2057d9df55a62b711f Mon Sep 17 00:00:00 2001
From: Srinivasa T N <seenutn-23VcF4HTsmIX0ybBhKVfKdBPR1lH4CV8@public.gmane.org>
Date: Wed, 27 Jun 2012 11:20:13 +0530
Subject: [PATCH 1/2] Fixed BOOTIF for converting mac addr to lowercase

---
 modules.d/40network/net-genrules.sh |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/modules.d/40network/net-genrules.sh b/modules.d/40network/net-genrules.sh
index 99d0fe5..b2f4fbf 100755
--- a/modules.d/40network/net-genrules.sh
+++ b/modules.d/40network/net-genrules.sh
@@ -10,7 +10,8 @@ fix_bootif() {
     macaddr=${macaddr%:}
     # strip hardware type field from pxelinux
     [ -n "${macaddr%??:??:??:??:??:??}" ] && macaddr=${macaddr#??:}
-    echo $macaddr
+    # return macaddr with lowercase alpha characters expected by udev
+    echo $macaddr | sed 'y/ABCDEF/abcdef/'
 }
 
 # Don't continue if we don't need network
-- 
1.7.4.4


From 675f6055c742a7aa2c92420cd73d9299eb2d8166 Mon Sep 17 00:00:00 2001
From: Srinivasa T N <seenutn-23VcF4HTsmIX0ybBhKVfKdBPR1lH4CV8@public.gmane.org>
Date: Wed, 27 Jun 2012 16:59:27 +0530
Subject: [PATCH 2/2] Convert the MAC in interface name to use sed instead of
 tr

---
 modules.d/40network/parse-ifname.sh |    3 +--
 1 files changed, 1 insertions(+), 2 deletions(-)

diff --git a/modules.d/40network/parse-ifname.sh b/modules.d/40network/parse-ifname.sh
index 26e6084..863fd2f 100755
--- a/modules.d/40network/parse-ifname.sh
+++ b/modules.d/40network/parse-ifname.sh
@@ -5,7 +5,6 @@
 # Format:
 #       ifname=<interface>:<mac>
 #
-# Note letters in the macaddress must be lowercase!
 #
 # Examples:
 # ifname=eth0:4a:3f:4c:04:f8:d7
@@ -26,7 +25,7 @@ parse_ifname_opts() {
         7)
             ifname_if=$1
             # udev requires MAC addresses to be lower case
-            ifname_mac=`echo $2:$3:$4:$5:$6:$7 | tr '[:upper:]' '[:lower:]'`
+            ifname_mac=`echo $2:$3:$4:$5:$6:$7 | sed 'y/ABCDEF/abcdef'`
             ;;
         *)
             die "Invalid arguments for ifname="
-- 
1.7.4.4


^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2012-06-29 10:32 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-06-26 18:34 [PATCH 1/1] Convert MAC in BOOTIF parameter to lower case Srinivasa T N
     [not found] ` <4FEA00BC.8090505-23VcF4HTsmIX0ybBhKVfKdBPR1lH4CV8@public.gmane.org>
2012-06-27 10:33   ` Anton Blanchard
2012-06-27 11:37     ` Srinivasa T N
     [not found]       ` <4FEAF08F.1030103-23VcF4HTsmIX0ybBhKVfKdBPR1lH4CV8@public.gmane.org>
2012-06-29 10:32         ` Srinivasa T N

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.