]> git.ipfire.org Git - thirdparty/dracut.git/commit
fix(iscsi): prefix syntax for static iBFT IPv6 addresses
authorMartin Wilck <mwilck@suse.com>
Fri, 3 Feb 2023 20:26:28 +0000 (21:26 +0100)
committerAntonio Álvarez Feijoo <antonio.feijoo@suse.com>
Mon, 13 Feb 2023 15:17:45 +0000 (16:17 +0100)
commitc3b65a493a635a3f85f9e65c4337cd4c144ff8fc
treea8de9a73bc05171a8e5758688896c83660100fae
parentaa5d9526eca23f642fd623d2c857fd8f9930b83d
fix(iscsi): prefix syntax for static iBFT IPv6 addresses

ibft_to_cmdline() formats a static IPv6 address like this
(without peer, gateway, hostname):

  ip="[fd09:9a46:b5c1:1fe:1::10/64]:::::ibft0:none"

This means that the "mask" field (4th) is left blank. When this is
parsed later by parse-ip-opts.sh, it bails out with the error
message "Sorry, automatic calculation of netmask is not yet supported".

parse-ip-opts.sh rather expects the prefix in the 4th field:

  ip="[fd09:9a46:b5c1:1fe:1::10]:::64::ibft0:none"

This syntax will be correctly transformed to the command

  ip addr add fd09:9a46:b5c1:1fe::10/64 dev ibft0

This patch fixes the formatting of the "ip=" line in ibft_to_cmdline().
modules.d/40network/net-lib.sh