Blame SOURCES/mozilla-bmo1554971.patch
Branch: e7a30c8c0a101ae4ff0ac5f195c7d569229b48da
c59d34
# HG changeset patch
c59d34
# Parent a25cebecb02d5460b8ad757fe9cb4a9c8d1d7658
c59d34
Eliminate startup error message:
c59d34
JavaScript error: , line 0: Error: Type error for platformInfo value (Error processing arch: Invalid enumeration value "s390x") for runtime.getPlatformInfo.
c59d34
c59d34
Reported here: https://bugzilla.mozilla.org/show_bug.cgi?id=1554971
c59d34
c59d34
Uncertain if this is causing real problems or not. Also uncertain if the fix actually fixes anything.
c59d34
No response from upstream yet.
c59d34
c59d34
diff -r a25cebecb02d -r 378b81b00e73 toolkit/components/extensions/schemas/runtime.json
c59d34
--- a/toolkit/components/extensions/schemas/runtime.json Fri Jul 05 12:42:44 2019 +0200
c59d34
+++ b/toolkit/components/extensions/schemas/runtime.json Fri Jul 19 13:19:30 2019 +0200
c59d34
@@ -64,7 +64,7 @@
c59d34
{
c59d34
"id": "PlatformArch",
c59d34
"type": "string",
c59d34
- "enum": ["arm", "x86-32", "x86-64"],
c59d34
+ "enum": ["arm", "x86-32", "x86-64", "s390x", "aarch64", "ppc64le"],
c59d34
"allowedContexts": ["content", "devtools"],
c59d34
"description": "The machine's processor architecture."
c59d34
},