Merge "Allow ro. properties to have arbitrary lengths" am: 1d6e8e31d0
am: 47b3003e9b
am: 646f3c2651
am: 70f86d2f96
Change-Id: I1a4af547ee4345f7aba12c8d8c302f8ef4ce70b9
This commit is contained in:
commit
671fcedf7b
|
@ -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))
|
||||
|
|
Loading…
Reference in New Issue