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

Commit 70f86d2f authored by Tom Cherry's avatar Tom Cherry Committed by android-build-merger
Browse files

Merge "Allow ro. properties to have arbitrary lengths" am: 1d6e8e31 am: 47b3003e

am: 646f3c26

Change-Id: Ic1398ce6dee690b94e53e781296e8cbcddc4bfbf
parents c5122aee 646f3c26
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -64,7 +64,7 @@ def validate(prop):
  buildprops = prop.to_dict()
  for key, value in buildprops.iteritems():
    # Check build properties' length.
    if len(value) > PROP_VALUE_MAX:
    if len(value) > PROP_VALUE_MAX and not key.startswith("ro."):
      check_pass = False
      sys.stderr.write("error: %s cannot exceed %d bytes: " %
                       (key, PROP_VALUE_MAX))