fedora: add "rw" to kernel options for iot-raw-image

Needed when /sysroot is mounted read-only to keep other (stateful)
parts of the filesystem (/var and /etc) writeable.
This commit is contained in:
Achilleas Koutsou 2022-09-27 12:21:17 +02:00 committed by Christian Kellner
parent 445de61a80
commit 6f89e9d499

View file

@ -288,7 +288,7 @@ func iotRawImage(workload workload.Workload,
img.Users = users.UsersFromBP(customizations.GetUsers())
img.Groups = users.GroupsFromBP(customizations.GetGroups())
img.KernelOptionsAppend = []string{"modprobe.blacklist=vc4"}
img.KernelOptionsAppend = []string{"modprobe.blacklist=vc4", "rw"}
img.Keyboard = "us"
img.Locale = "C.UTF-8"