Make sure the MACADDR value gets propagated to the iface struct so that writeNetInfo() will succeed on s390 hosts. --- loader/net.c | 4 ++++ 1 files changed, 4 insertions(+), 0 deletions(-) diff --git a/loader/net.c b/loader/net.c index 0a15224..eb324e0 100644 --- a/loader/net.c +++ b/loader/net.c @@ -433,6 +433,10 @@ void setupIfaceStruct(iface_t * iface, struct loaderData_s * loaderData) { iface->dhcptimeout = loaderData->dhcpTimeout; + if (loaderData->macaddr) { + iface->macaddr = strdup(loaderData->macaddr); + } + return; } -- 1.7.1.1 _______________________________________________ Anaconda-devel-list mailing list Anaconda-devel-list@xxxxxxxxxx https://www.redhat.com/mailman/listinfo/anaconda-devel-list