diff options
author | Vagrant Cascadian <vagrant+debianbugs@freegeek.org> | 2010-04-09 20:32:23 -0700 |
---|---|---|
committer | maximilian attems <maks@debian.org> | 2010-04-10 06:33:19 +0200 |
commit | 5db5becc85059e56075de5a331ed7c5a4cc2de0c (patch) | |
tree | 327884a5f155dfe1471cfea9a015a9d4289a002d /scripts | |
parent | 3041c946e22f5e461ce25ea546b0b583e55ad578 (diff) | |
download | initramfs-tools-5db5becc85059e56075de5a331ed7c5a4cc2de0c.tar.gz initramfs-tools-5db5becc85059e56075de5a331ed7c5a4cc2de0c.zip |
configure_networking: pxelinux BOOTIF fixes
looks like i missed a few things on implementing BOOTIF support properly.
somehow i managed to get the order of the mac address backwards. i know i
tested it many times..
Signed-off-by: maximilian attems <maks@debian.org>
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/functions | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/functions b/scripts/functions index ec8a44b..88f1bbd 100644 --- a/scripts/functions +++ b/scripts/functions @@ -323,7 +323,7 @@ configure_networking() if [ -z "$bootif_mac" ]; then bootif_mac="$x" else - bootif_mac="$x:$bootif_mac" + bootif_mac="$bootif_mac:$x" fi done unset IFS |