Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 941ff41f authored by Yumi Yukimura's avatar Yumi Yukimura Committed by Jan Altensen
Browse files

releasetools: build_super_image: Do not set readonly attr

* Makes logical partitions writable when flashed to the device

Change-Id: Id473acaedab9400870700bc317a140fd73a58456
parent f3922402
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -62,7 +62,7 @@ def GetArgumentsForImage(partition, group, image=None):
  image_size = sparse_img.GetImagePartitionSize(image) if image else 0

  cmd = ["--partition",
         "{}:readonly:{}:{}".format(partition, image_size, group)]
         "{}:none:{}:{}".format(partition, image_size, group)]
  if image:
    cmd += ["--image", "{}={}".format(partition, image)]