ASR_BASE
Change-Id: Icf3719cc0afe3eeb3edc7fa80a2eb5199ca9dda1
diff --git a/package/system/fstools/patches/020-asr_oem_data_fix.patch b/package/system/fstools/patches/020-asr_oem_data_fix.patch
new file mode 100644
index 0000000..5baeefc
--- /dev/null
+++ b/package/system/fstools/patches/020-asr_oem_data_fix.patch
@@ -0,0 +1,15 @@
+--- a/block.c
++++ b/block.c
+@@ -568,8 +568,10 @@ static int _cache_load(const char *path)
+
+ for (j = 0; j < gl.gl_pathc; j++) {
+ struct probe_info *pr = _probe_path(gl.gl_pathv[j]);
+- if (pr)
+- list_add_tail(&pr->list, &devices);
++ if (pr) {
++ if (!pr->label || strcmp(pr->label, "oemdata"))
++ list_add_tail(&pr->list, &devices);
++ }
+ }
+
+ globfree(&gl);