[Feature]add MT2731_MP2_MR2_SVN388 baseline version
Change-Id: Ief04314834b31e27effab435d3ca8ba33b499059
diff --git a/meta/meta-mediatek-ivt/recipes-platform/service-launcher/files/mark-rc-name-limitation.patch b/meta/meta-mediatek-ivt/recipes-platform/service-launcher/files/mark-rc-name-limitation.patch
new file mode 100644
index 0000000..8f4fb01
--- /dev/null
+++ b/meta/meta-mediatek-ivt/recipes-platform/service-launcher/files/mark-rc-name-limitation.patch
@@ -0,0 +1,24 @@
+diff --git a/system/core/init/service.cpp b/system/core/init/service.cpp
+index ac4070c..a040632 100644
+--- a/system/core/init/service.cpp
++++ b/system/core/init/service.cpp
+@@ -860,13 +860,16 @@ void ServiceParser::EndSection() {
+ }
+
+ bool ServiceParser::IsValidName(const std::string& name) const {
+- if (name.size() > 16) {
++ if (name.size() > 92) {
+ return false;
+ }
+- for (const auto& c : name) {
++
++ /*
++ for (const auto& c : name) {
+ if (!isalnum(c) && (c != '_') && (c != '-')) {
+ return false;
+ }
+- }
++ }
++ */
+ return true;
+ }