Public bug reported:

The file /usr/share/initramfs-tools/init contains a error of processing
hwaddr kernel option: the prefix "BOOTIF" is removed from the option
string "hwaddr=*".

    hwaddr=*)
        BOOTIF=${x#BOOTIF=}                                                     
                         
        ;;

It should be

    hwaddr=*)
        BOOTIF=${x#hwaddr=}                                                     
                         
        ;;

The patch is attached.

** Affects: initramfs-tools (Ubuntu)
     Importance: Undecided
         Status: New

** Patch added: "Fix-hwaddr-option-processing.patch"
   
https://bugs.launchpad.net/bugs/1536597/+attachment/4554060/+files/Fix-hwaddr-option-processing.patch

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1536597

Title:
  error of processing hwaddr kernel option

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/initramfs-tools/+bug/1536597/+subscriptions

-- 
ubuntu-bugs mailing list
[email protected]
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

Reply via email to