distro/rhel84: fix s390x kernel options

Our s390x images now use the kernel commandline options set in the image
type's declaration.
This commit is contained in:
Jacob Kozol 2021-01-14 10:54:18 +01:00 committed by Ondřej Budai
parent 9d0d5967d6
commit 45138801f9

View file

@ -257,7 +257,7 @@ func (t *imageType) pipeline(c *blueprint.Customizations, options distro.ImageOp
p.AddStage(osbuild.NewKernelCmdlineStage(&osbuild.KernelCmdlineStageOptions{
RootFsUUID: rootPartition.UUID,
KernelOpts: "net.ifnames=0 crashkernel=auto",
KernelOpts: t.kernelOptions,
}))
}