← Back to team overview

touch-packages team mailing list archive

[Bug 1536597] Re: error of processing hwaddr kernel option

 

The attachment "Fix-hwaddr-option-processing.patch" seems to be a patch.
If it isn't, please remove the "patch" flag from the attachment, remove
the "patch" tag, and if you are a member of the ~ubuntu-reviewers,
unsubscribe the team.

[This is an automated message performed by a Launchpad user owned by
~brian-murray, for any issues please contact him.]

** Tags added: patch

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to initramfs-tools in Ubuntu.
https://bugs.launchpad.net/bugs/1536597

Title:
  error of processing hwaddr kernel option

Status in initramfs-tools package in Ubuntu:
  New

Bug description:
  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.

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


References