distro/rhel: set ostree sysroot.readonly to false
We used to always set the sysroot.readonly setting to true, but this never worked because of a bug in osbuild [1]. The bug is now fixed and the RHEL and CentOS edge-raw images are crated with sysroot.readonly = true, and the images aren't booting. Fixing the option to false. This changes the manifests, but not the generated images because of the change in osbuild. If sysroot is meant to be readonly, we will change it in a future update. [1] https://github.com/osbuild/osbuild/pull/1129
This commit is contained in:
parent
55b1e2b6ee
commit
7ebe3f550c
30 changed files with 86 additions and 72 deletions
|
|
@ -935,7 +935,7 @@ func ostreeDeployPipeline(
|
|||
OSName: osname,
|
||||
},
|
||||
))
|
||||
p.AddStage(osbuild.NewOSTreeConfigStage(ostreeConfigStageOptions(repoPath, true)))
|
||||
p.AddStage(osbuild.NewOSTreeConfigStage(ostreeConfigStageOptions(repoPath, false)))
|
||||
p.AddStage(osbuild.NewMkdirStage(efiMkdirStageOptions()))
|
||||
kernelOpts := osbuild.GenImageKernelOptions(pt)
|
||||
p.AddStage(osbuild.NewOSTreeDeployStage(
|
||||
|
|
|
|||
|
|
@ -931,7 +931,7 @@ func ostreeDeployPipeline(
|
|||
OSName: osname,
|
||||
},
|
||||
))
|
||||
p.AddStage(osbuild.NewOSTreeConfigStage(ostreeConfigStageOptions(repoPath, true)))
|
||||
p.AddStage(osbuild.NewOSTreeConfigStage(ostreeConfigStageOptions(repoPath, false)))
|
||||
p.AddStage(osbuild.NewMkdirStage(efiMkdirStageOptions()))
|
||||
kernelOpts := osbuild.GenImageKernelOptions(pt)
|
||||
p.AddStage(osbuild.NewOSTreeDeployStage(
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue