1 struct cpuinfo_mock_file filesystem[] = {
2 #if CPUINFO_ARCH_ARM64
3 	{
4 		.path = "/proc/cpuinfo",
5 		.size = 1448,
6 		.content =
7 			"processor\t: 0\n"
8 			"BogoMIPS\t: 52.00\n"
9 			"Features\t: fp asimd evtstrm aes pmull sha1 sha2 crc32\n"
10 			"CPU implementer\t: 0x41\n"
11 			"CPU architecture: 8\n"
12 			"CPU variant\t: 0x0\n"
13 			"CPU part\t: 0xd03\n"
14 			"CPU revision\t: 4\n"
15 			"\n"
16 			"processor\t: 1\n"
17 			"BogoMIPS\t: 52.00\n"
18 			"Features\t: fp asimd evtstrm aes pmull sha1 sha2 crc32\n"
19 			"CPU implementer\t: 0x41\n"
20 			"CPU architecture: 8\n"
21 			"CPU variant\t: 0x0\n"
22 			"CPU part\t: 0xd03\n"
23 			"CPU revision\t: 4\n"
24 			"\n"
25 			"processor\t: 2\n"
26 			"BogoMIPS\t: 52.00\n"
27 			"Features\t: fp asimd evtstrm aes pmull sha1 sha2 crc32\n"
28 			"CPU implementer\t: 0x41\n"
29 			"CPU architecture: 8\n"
30 			"CPU variant\t: 0x0\n"
31 			"CPU part\t: 0xd03\n"
32 			"CPU revision\t: 4\n"
33 			"\n"
34 			"processor\t: 3\n"
35 			"BogoMIPS\t: 52.00\n"
36 			"Features\t: fp asimd evtstrm aes pmull sha1 sha2 crc32\n"
37 			"CPU implementer\t: 0x41\n"
38 			"CPU architecture: 8\n"
39 			"CPU variant\t: 0x0\n"
40 			"CPU part\t: 0xd03\n"
41 			"CPU revision\t: 4\n"
42 			"\n"
43 			"processor\t: 4\n"
44 			"BogoMIPS\t: 52.00\n"
45 			"Features\t: fp asimd evtstrm aes pmull sha1 sha2 crc32\n"
46 			"CPU implementer\t: 0x53\n"
47 			"CPU architecture: 8\n"
48 			"CPU variant\t: 0x4\n"
49 			"CPU part\t: 0x001\n"
50 			"CPU revision\t: 0\n"
51 			"\n"
52 			"processor\t: 5\n"
53 			"BogoMIPS\t: 52.00\n"
54 			"Features\t: fp asimd evtstrm aes pmull sha1 sha2 crc32\n"
55 			"CPU implementer\t: 0x53\n"
56 			"CPU architecture: 8\n"
57 			"CPU variant\t: 0x4\n"
58 			"CPU part\t: 0x001\n"
59 			"CPU revision\t: 0\n"
60 			"\n"
61 			"processor\t: 6\n"
62 			"BogoMIPS\t: 52.00\n"
63 			"Features\t: fp asimd evtstrm aes pmull sha1 sha2 crc32\n"
64 			"CPU implementer\t: 0x53\n"
65 			"CPU architecture: 8\n"
66 			"CPU variant\t: 0x4\n"
67 			"CPU part\t: 0x001\n"
68 			"CPU revision\t: 0\n"
69 			"\n"
70 			"processor\t: 7\n"
71 			"BogoMIPS\t: 52.00\n"
72 			"Features\t: fp asimd evtstrm aes pmull sha1 sha2 crc32\n"
73 			"CPU implementer\t: 0x53\n"
74 			"CPU architecture: 8\n"
75 			"CPU variant\t: 0x4\n"
76 			"CPU part\t: 0x001\n"
77 			"CPU revision\t: 0\n"
78 			"\n",
79 	},
80 #elif CPUINFO_ARCH_ARM
81 	{
82 		.path = "/proc/cpuinfo",
83 		.size = 1912,
84 		.content =
85 			"processor\t: 0\n"
86 			"BogoMIPS\t: 52.00\n"
87 			"Features\t: half thumb fastmult vfp edsp neon vfpv3 tls vfpv4 idiva idivt lpae evtstrm aes pmull sha1 sha2 crc32\n"
88 			"CPU implementer\t: 0x41\n"
89 			"CPU architecture: 8\n"
90 			"CPU variant\t: 0x0\n"
91 			"CPU part\t: 0xd03\n"
92 			"CPU revision\t: 4\n"
93 			"\n"
94 			"processor\t: 1\n"
95 			"BogoMIPS\t: 52.00\n"
96 			"Features\t: half thumb fastmult vfp edsp neon vfpv3 tls vfpv4 idiva idivt lpae evtstrm aes pmull sha1 sha2 crc32\n"
97 			"CPU implementer\t: 0x41\n"
98 			"CPU architecture: 8\n"
99 			"CPU variant\t: 0x0\n"
100 			"CPU part\t: 0xd03\n"
101 			"CPU revision\t: 4\n"
102 			"\n"
103 			"processor\t: 2\n"
104 			"BogoMIPS\t: 52.00\n"
105 			"Features\t: half thumb fastmult vfp edsp neon vfpv3 tls vfpv4 idiva idivt lpae evtstrm aes pmull sha1 sha2 crc32\n"
106 			"CPU implementer\t: 0x41\n"
107 			"CPU architecture: 8\n"
108 			"CPU variant\t: 0x0\n"
109 			"CPU part\t: 0xd03\n"
110 			"CPU revision\t: 4\n"
111 			"\n"
112 			"processor\t: 3\n"
113 			"BogoMIPS\t: 52.00\n"
114 			"Features\t: half thumb fastmult vfp edsp neon vfpv3 tls vfpv4 idiva idivt lpae evtstrm aes pmull sha1 sha2 crc32\n"
115 			"CPU implementer\t: 0x41\n"
116 			"CPU architecture: 8\n"
117 			"CPU variant\t: 0x0\n"
118 			"CPU part\t: 0xd03\n"
119 			"CPU revision\t: 4\n"
120 			"\n"
121 			"processor\t: 4\n"
122 			"BogoMIPS\t: 52.00\n"
123 			"Features\t: half thumb fastmult vfp edsp neon vfpv3 tls vfpv4 idiva idivt lpae evtstrm aes pmull sha1 sha2 crc32\n"
124 			"CPU implementer\t: 0x53\n"
125 			"CPU architecture: 8\n"
126 			"CPU variant\t: 0x4\n"
127 			"CPU part\t: 0x001\n"
128 			"CPU revision\t: 0\n"
129 			"\n"
130 			"processor\t: 5\n"
131 			"BogoMIPS\t: 52.00\n"
132 			"Features\t: half thumb fastmult vfp edsp neon vfpv3 tls vfpv4 idiva idivt lpae evtstrm aes pmull sha1 sha2 crc32\n"
133 			"CPU implementer\t: 0x53\n"
134 			"CPU architecture: 8\n"
135 			"CPU variant\t: 0x4\n"
136 			"CPU part\t: 0x001\n"
137 			"CPU revision\t: 0\n"
138 			"\n"
139 			"processor\t: 6\n"
140 			"BogoMIPS\t: 52.00\n"
141 			"Features\t: half thumb fastmult vfp edsp neon vfpv3 tls vfpv4 idiva idivt lpae evtstrm aes pmull sha1 sha2 crc32\n"
142 			"CPU implementer\t: 0x53\n"
143 			"CPU architecture: 8\n"
144 			"CPU variant\t: 0x4\n"
145 			"CPU part\t: 0x001\n"
146 			"CPU revision\t: 0\n"
147 			"\n"
148 			"processor\t: 7\n"
149 			"BogoMIPS\t: 52.00\n"
150 			"Features\t: half thumb fastmult vfp edsp neon vfpv3 tls vfpv4 idiva idivt lpae evtstrm aes pmull sha1 sha2 crc32\n"
151 			"CPU implementer\t: 0x53\n"
152 			"CPU architecture: 8\n"
153 			"CPU variant\t: 0x4\n"
154 			"CPU part\t: 0x001\n"
155 			"CPU revision\t: 0\n"
156 			"\n",
157 	},
158 #endif
159 	{
160 		.path = "/system/build.prop",
161 		.size = 5179,
162 		.content =
163 			"\n"
164 			"# begin build properties\n"
165 			"# autogenerated by buildinfo.sh\n"
166 			"ro.build.id=NRD90M\n"
167 			"ro.build.display.id=NRD90M.G950FXXU1AQL5\n"
168 			"ro.build.version.incremental=G950FXXU1AQL5\n"
169 			"ro.build.version.sdk=24\n"
170 			"ro.build.version.preview_sdk=0\n"
171 			"ro.build.version.codename=REL\n"
172 			"ro.build.version.all_codenames=REL\n"
173 			"ro.build.version.release=7.0\n"
174 			"ro.build.version.security_patch=2017-12-01\n"
175 			"ro.build.version.base_os=\n"
176 			"ro.build.version.security_index=1\n"
177 			"ro.build.date=Wed Dec 13 20:58:07 KST 2017\n"
178 			"ro.build.date.utc=1513166287\n"
179 			"ro.build.type=user\n"
180 			"ro.build.user=dpi\n"
181 			"ro.build.host=SWDG4522\n"
182 			"ro.build.tags=release-keys\n"
183 			"ro.build.flavor=dreamltexx-user\n"
184 			"ro.product.model=SM-G950F\n"
185 			"ro.product.brand=samsung\n"
186 			"ro.product.name=dreamltexx\n"
187 			"ro.product.device=dreamlte\n"
188 			"ro.product.board=universal8895\n"
189 			"# ro.product.cpu.abi and ro.product.cpu.abi2 are obsolete,\n"
190 			"# use ro.product.cpu.abilist instead.\n"
191 			"ro.product.cpu.abi=arm64-v8a\n"
192 			"ro.product.cpu.abilist=arm64-v8a,armeabi-v7a,armeabi\n"
193 			"ro.product.cpu.abilist32=armeabi-v7a,armeabi\n"
194 			"ro.product.cpu.abilist64=arm64-v8a\n"
195 			"ro.product.manufacturer=samsung\n"
196 			"ro.product.locale=en-GB\n"
197 			"ro.wifi.channels=\n"
198 			"ro.board.platform=exynos5\n"
199 			"# ro.build.product is obsolete; use ro.product.device\n"
200 			"ro.build.product=dreamlte\n"
201 			"# Do not try to parse description, fingerprint, or thumbprint\n"
202 			"ro.build.description=dreamltexx-user 7.0 NRD90M G950FXXU1AQL5 release-keys\n"
203 			"ro.build.fingerprint=samsung/dreamltexx/dreamlte:7.0/NRD90M/G950FXXU1AQL5:user/release-keys\n"
204 			"ro.build.characteristics=phone,emulator\n"
205 			"# Samsung Specific Properties\n"
206 			"ro.build.PDA=G950FXXU1AQL5\n"
207 			"ro.build.official.release=true\n"
208 			"ro.config.rm_preload_enabled=1\n"
209 			"ro.build.changelist=12640043\n"
210 			"ro.product_ship=true\n"
211 			"ro.chipname=exynos8895\n"
212 			"# end build properties\n"
213 			"\n"
214 			"#\n"
215 			"# HWUI_BUILD_PROPERTIES\n"
216 			"#\n"
217 			"ro.hwui.texture_cache_size=88\n"
218 			"ro.hwui.layer_cache_size=58\n"
219 			"ro.hwui.path_cache_size=16\n"
220 			"ro.hwui.texture_cache_flushrate=0.4\n"
221 			"ro.hwui.shape_cache_size=4\n"
222 			"ro.hwui.gradient_cache_size=2\n"
223 			"ro.hwui.drop_shadow_cache_size=6\n"
224 			"ro.hwui.r_buffer_cache_size=8\n"
225 			"ro.hwui.text_small_cache_width=1024\n"
226 			"ro.hwui.text_small_cache_height=1024\n"
227 			"ro.hwui.text_large_cache_width=4096\n"
228 			"ro.hwui.text_large_cache_height=2048\n"
229 			"#\n"
230 			"# from device/samsung/dreamlte/system.prop\n"
231 			"#\n"
232 			"#\n"
233 			"# system.prop for universal8895\n"
234 			"#\n"
235 			"\n"
236 			"ro.sf.lcd_density=480\n"
237 			"ro.sf.init.lcd_density=640\n"
238 			"\n"
239 			"ro.arch=exynos8895\n"
240 			"ro.kernel.qemu=0\n"
241 			"ro.kernel.qemu.gles=0\n"
242 			"persist.demo.hdmirotationlock=false\n"
243 			"\n"
244 			"# read DS/SS property\n"
245 			"import /efs/factory.prop\n"
246 			"\n"
247 			"#\n"
248 			"# ADDITIONAL_BUILD_PROPERTIES\n"
249 			"#\n"
250 			"ro.astcenc.astcsupport=1\n"
251 			"ro.mct.compressiontype=ETC1\n"
252 			"persist.radio.sib16_support=1\n"
253 			"ro.config.dmverity=true\n"
254 			"ro.config.rkp=true\n"
255 			"ro.config.kap_default_on=true\n"
256 			"ro.config.kap=true\n"
257 			"ro.supportmodel.mptcp=1\n"
258 			"rild.libpath=/system/lib64/libsec-ril.so\n"
259 			"rild.libpath2=/system/lib64/libsec-ril-dsds.so\n"
260 			"ro.radio.noril=no\n"
261 			"ro.telephony.default_network=9\n"
262 			"ro.multisim.simslotcount=2\n"
263 			"ro.knox.enhance.zygote.aslr=0\n"
264 			"ro.product.first_api_level=24\n"
265 			"ro.config.ringtone=Over_the_Horizon.ogg\n"
266 			"ro.config.notification_sound=Skyline.ogg\n"
267 			"ro.config.alarm_alert=Morning_Glory.ogg\n"
268 			"ro.config.media_sound=Media_preview_Touch_the_light.ogg\n"
269 			"ro.config.ringtone_2=Basic_Bell.ogg\n"
270 			"ro.config.notification_sound_2=S_Charming_Bell.ogg\n"
271 			"ro.config.systemaudiodebug=abox\n"
272 			"dalvik.vm.heapstartsize=8m\n"
273 			"dalvik.vm.heapgrowthlimit=256m\n"
274 			"dalvik.vm.heapsize=512m\n"
275 			"dalvik.vm.heaptargetutilization=0.75\n"
276 			"dalvik.vm.heapminfree=2m\n"
277 			"dalvik.vm.heapmaxfree=8m\n"
278 			"ro.opengles.version=196610\n"
279 			"ro.sf.lcd_density=480\n"
280 			"debug.slsi_platform=1\n"
281 			"debug.hwc.winupdate=1\n"
282 			"drm.service.enabled=true\n"
283 			"ro.hdcp2.rx=tz\n"
284 			"ro.securestorage.support=true\n"
285 			"af.fast_period_size=192\n"
286 			"af.fast_track_multiplier=1\n"
287 			"ro.error.receiver.default=com.samsung.receiver.error\n"
288 			"ro.build.scafe.version=2017A\n"
289 			"ro.frp.pst=/dev/block/persistent\n"
290 			"security.mdpp.mass=skmm\n"
291 			"ro.security.vpnpp.ver=1.4\n"
292 			"ro.security.vpnpp.release=8.1\n"
293 			"security.mdpp=None\n"
294 			"ro.security.mdpp.ver=3.0\n"
295 			"ro.security.mdpp.release=2\n"
296 			"ro.security.wlan.ver=1.0\n"
297 			"ro.security.wlan.release=2\n"
298 			"security.mdpp.result=None\n"
299 			"ro.hardware.keystore=mdfpp\n"
300 			"ro.security.mdpp.ux=Enabled\n"
301 			"sys.config.amp_perf_enable=true\n"
302 			"ro.config.dha_cached_min=6\n"
303 			"ro.config.dha_cached_max=16\n"
304 			"ro.config.dha_empty_min=8\n"
305 			"ro.config.dha_empty_init=32\n"
306 			"ro.config.dha_empty_max=32\n"
307 			"ro.config.dha_th_rate=2.0\n"
308 			"ro.config.dha_pwhitelist_enable=1\n"
309 			"ro.config.dha_pwhl_key=7938\n"
310 			"ro.config.fall_prevent_enable=true\n"
311 			"ro.config.infinite_bg_enable=true\n"
312 			"sys.use_fifo_ui=0\n"
313 			"ro.wsmd.enable=true\n"
314 			"ro.security.vaultkeeper.feature=1\n"
315 			"keyguard.no_require_sim=true\n"
316 			"ro.carrier=unknown\n"
317 			"ro.security.icd.flagmode=multi\n"
318 			"security.ASKS.policy_version=000000\n"
319 			"ro.com.google.clientidbase=android-samsung\n"
320 			"ro.ril.hsxpa=1\n"
321 			"ro.ril.gprsclass=10\n"
322 			"ro.adb.qemud=1\n"
323 			"ro.gfx.driver.0=com.samsung.gpudriver.S8MaliG71_70\n"
324 			"ro.hardware.egl=mali\n"
325 			"ro.opa.eligible_device=true\n"
326 			"ro.setupwizard.mode=OPTIONAL\n"
327 			"ro.com.google.gmsversion=7.0_r11\n"
328 			"ro.build.selinux=1\n"
329 			"persist.sys.dalvik.vm.lib.2=libart.so\n"
330 			"dalvik.vm.isa.arm64.variant=exynos-m2\n"
331 			"dalvik.vm.isa.arm64.features=default\n"
332 			"dalvik.vm.isa.arm.variant=cortex-a53\n"
333 			"dalvik.vm.isa.arm.features=default\n"
334 			"ro.config.knox=v30\n"
335 			"ro.config.tima=1\n"
336 			"ro.config.timaversion=3.0\n"
337 			"ro.config.iccc_version=1.0\n"
338 			"ro.kernel.qemu=0\n"
339 			"net.bt.name=Android\n"
340 			"dalvik.vm.stack-trace-file=/data/anr/traces.txt\n"
341 			"ro.build.version.sem=2403\n"
342 			"ro.build.version.sep=80100\n"
343 			"ro.expect.recovery_id=0x48c53cca3ea48ceba1bcfabccc7259c10b06c5d2000000000000000000000000\n"
344 			"\n",
345 	},
346 	{
347 		.path = "/sys/devices/soc0/family",
348 		.size = 15,
349 		.content = "Samsung Exynos\n",
350 	},
351 	{
352 		.path = "/sys/devices/soc0/machine",
353 		.size = 53,
354 		.content = "Samsung DREAMLTE EUR rev06 board based on EXYNOS8895\n",
355 	},
356 	{
357 		.path = "/sys/devices/soc0/revision",
358 		.size = 3,
359 		.content = "17\n",
360 	},
361 	{
362 		.path = "/sys/devices/soc0/soc_id",
363 		.size = 11,
364 		.content = "EXYNOS8895\n",
365 	},
366 	{
367 		.path = "/sys/devices/system/cpu/isolated",
368 		.size = 1,
369 		.content = "\n",
370 	},
371 	{
372 		.path = "/sys/devices/system/cpu/kernel_max",
373 		.size = 2,
374 		.content = "7\n",
375 	},
376 	{
377 		.path = "/sys/devices/system/cpu/modalias",
378 		.size = 66,
379 		.content = "cpu:type:aarch64:feature:,0000,0001,0002,0003,0004,0005,0006,0007\n",
380 	},
381 	{
382 		.path = "/sys/devices/system/cpu/offline",
383 		.size = 1,
384 		.content = "\n",
385 	},
386 	{
387 		.path = "/sys/devices/system/cpu/online",
388 		.size = 4,
389 		.content = "0-7\n",
390 	},
391 	{
392 		.path = "/sys/devices/system/cpu/possible",
393 		.size = 4,
394 		.content = "0-7\n",
395 	},
396 	{
397 		.path = "/sys/devices/system/cpu/present",
398 		.size = 4,
399 		.content = "0-7\n",
400 	},
401 	{
402 		.path = "/sys/devices/system/cpu/cpufreq/current_in_state",
403 		.size = 1276,
404 		.content =
405 			"CPU0:1690000=60240 1456000=40410 1248000=27260 1053000=20180 949000=16850 832000=13710 715000=10710 598000=8290 455000=6060 \n"
406 			"CPU1:1690000=60240 1456000=40410 1248000=27260 1053000=20180 949000=16850 832000=13710 715000=10710 598000=8290 455000=6060 \n"
407 			"CPU2:1690000=60240 1456000=40410 1248000=27260 1053000=20180 949000=16850 832000=13710 715000=10710 598000=8290 455000=6060 \n"
408 			"CPU3:1690000=60240 1456000=40410 1248000=27260 1053000=20180 949000=16850 832000=13710 715000=10710 598000=8290 455000=6060 \n"
409 			"CPU4:2314000=355850 2158000=295970 2002000=251060 1937000=233620 1807000=201350 1703000=177320 1469000=137850 1261000=111850 1170000=100000 1066000=88090 962000=78470 858000=69380 741000=58880 \n"
410 			"CPU5:2314000=355850 2158000=295970 2002000=251060 1937000=233620 1807000=201350 1703000=177320 1469000=137850 1261000=111850 1170000=100000 1066000=88090 962000=78470 858000=69380 741000=58880 \n"
411 			"CPU6:2314000=355850 2158000=295970 2002000=251060 1937000=233620 1807000=201350 1703000=177320 1469000=137850 1261000=111850 1170000=100000 1066000=88090 962000=78470 858000=69380 741000=58880 \n"
412 			"CPU7:2314000=355850 2158000=295970 2002000=251060 1937000=233620 1807000=201350 1703000=177320 1469000=137850 1261000=111850 1170000=100000 1066000=88090 962000=78470 858000=69380 741000=58880 \n",
413 	},
414 	{
415 		.path = "/sys/devices/system/cpu/cpuidle/current_driver",
416 		.size = 12,
417 		.content = "exynos_idle\n",
418 	},
419 	{
420 		.path = "/sys/devices/system/cpu/cpuidle/current_governor_ro",
421 		.size = 5,
422 		.content = "menu\n",
423 	},
424 	{
425 		.path = "/sys/devices/system/cpu/cpu0/cpuidle/driver/name",
426 		.size = 12,
427 		.content = "exynos_idle\n",
428 	},
429 	{
430 		.path = "/sys/devices/system/cpu/cpu0/cpufreq/affected_cpus",
431 		.size = 8,
432 		.content = "0 1 2 3\n",
433 	},
434 	{
435 		.path = "/sys/devices/system/cpu/cpu0/cpufreq/cpuinfo_max_freq",
436 		.size = 8,
437 		.content = "1690000\n",
438 	},
439 	{
440 		.path = "/sys/devices/system/cpu/cpu0/cpufreq/cpuinfo_min_freq",
441 		.size = 7,
442 		.content = "455000\n",
443 	},
444 	{
445 		.path = "/sys/devices/system/cpu/cpu0/cpufreq/cpuinfo_transition_latency",
446 		.size = 7,
447 		.content = "100000\n",
448 	},
449 	{
450 		.path = "/sys/devices/system/cpu/cpu0/cpufreq/related_cpus",
451 		.size = 8,
452 		.content = "0 1 2 3\n",
453 	},
454 	{
455 		.path = "/sys/devices/system/cpu/cpu0/cpufreq/scaling_available_governors",
456 		.size = 23,
457 		.content = "userspace interactive \n",
458 	},
459 	{
460 		.path = "/sys/devices/system/cpu/cpu0/cpufreq/scaling_cur_freq",
461 		.size = 8,
462 		.content = "1456000\n",
463 	},
464 	{
465 		.path = "/sys/devices/system/cpu/cpu0/cpufreq/scaling_driver",
466 		.size = 15,
467 		.content = "exynos_cpufreq\n",
468 	},
469 	{
470 		.path = "/sys/devices/system/cpu/cpu0/cpufreq/scaling_governor",
471 		.size = 12,
472 		.content = "interactive\n",
473 	},
474 	{
475 		.path = "/sys/devices/system/cpu/cpu0/cpufreq/scaling_min_freq",
476 		.size = 7,
477 		.content = "455000\n",
478 	},
479 	{
480 		.path = "/sys/devices/system/cpu/cpu0/cpufreq/stats/time_in_state",
481 		.size = 101,
482 		.content =
483 			"1690000 6834\n"
484 			"1456000 427\n"
485 			"1248000 277\n"
486 			"1053000 102\n"
487 			"949000 117\n"
488 			"832000 75\n"
489 			"715000 64\n"
490 			"598000 83\n"
491 			"455000 257\n",
492 	},
493 	{
494 		.path = "/sys/devices/system/cpu/cpu0/cpufreq/stats/total_trans",
495 		.size = 4,
496 		.content = "216\n",
497 	},
498 	{
499 		.path = "/sys/devices/system/cpu/cpu0/topology/core_id",
500 		.size = 2,
501 		.content = "0\n",
502 	},
503 	{
504 		.path = "/sys/devices/system/cpu/cpu0/topology/core_siblings",
505 		.size = 3,
506 		.content = "0f\n",
507 	},
508 	{
509 		.path = "/sys/devices/system/cpu/cpu0/topology/core_siblings_list",
510 		.size = 4,
511 		.content = "0-3\n",
512 	},
513 	{
514 		.path = "/sys/devices/system/cpu/cpu0/topology/physical_package_id",
515 		.size = 2,
516 		.content = "1\n",
517 	},
518 	{
519 		.path = "/sys/devices/system/cpu/cpu0/topology/thread_siblings",
520 		.size = 3,
521 		.content = "01\n",
522 	},
523 	{
524 		.path = "/sys/devices/system/cpu/cpu0/topology/thread_siblings_list",
525 		.size = 2,
526 		.content = "0\n",
527 	},
528 	{
529 		.path = "/sys/devices/system/cpu/cpu1/cpuidle/driver/name",
530 		.size = 12,
531 		.content = "exynos_idle\n",
532 	},
533 	{
534 		.path = "/sys/devices/system/cpu/cpu1/cpufreq/affected_cpus",
535 		.size = 8,
536 		.content = "0 1 2 3\n",
537 	},
538 	{
539 		.path = "/sys/devices/system/cpu/cpu1/cpufreq/cpuinfo_max_freq",
540 		.size = 8,
541 		.content = "1690000\n",
542 	},
543 	{
544 		.path = "/sys/devices/system/cpu/cpu1/cpufreq/cpuinfo_min_freq",
545 		.size = 7,
546 		.content = "455000\n",
547 	},
548 	{
549 		.path = "/sys/devices/system/cpu/cpu1/cpufreq/cpuinfo_transition_latency",
550 		.size = 7,
551 		.content = "100000\n",
552 	},
553 	{
554 		.path = "/sys/devices/system/cpu/cpu1/cpufreq/related_cpus",
555 		.size = 8,
556 		.content = "0 1 2 3\n",
557 	},
558 	{
559 		.path = "/sys/devices/system/cpu/cpu1/cpufreq/scaling_available_governors",
560 		.size = 23,
561 		.content = "userspace interactive \n",
562 	},
563 	{
564 		.path = "/sys/devices/system/cpu/cpu1/cpufreq/scaling_cur_freq",
565 		.size = 7,
566 		.content = "455000\n",
567 	},
568 	{
569 		.path = "/sys/devices/system/cpu/cpu1/cpufreq/scaling_driver",
570 		.size = 15,
571 		.content = "exynos_cpufreq\n",
572 	},
573 	{
574 		.path = "/sys/devices/system/cpu/cpu1/cpufreq/scaling_governor",
575 		.size = 12,
576 		.content = "interactive\n",
577 	},
578 	{
579 		.path = "/sys/devices/system/cpu/cpu1/cpufreq/scaling_min_freq",
580 		.size = 7,
581 		.content = "455000\n",
582 	},
583 	{
584 		.path = "/sys/devices/system/cpu/cpu1/cpufreq/stats/time_in_state",
585 		.size = 101,
586 		.content =
587 			"1690000 6861\n"
588 			"1456000 471\n"
589 			"1248000 298\n"
590 			"1053000 105\n"
591 			"949000 141\n"
592 			"832000 75\n"
593 			"715000 69\n"
594 			"598000 91\n"
595 			"455000 391\n",
596 	},
597 	{
598 		.path = "/sys/devices/system/cpu/cpu1/cpufreq/stats/total_trans",
599 		.size = 4,
600 		.content = "235\n",
601 	},
602 	{
603 		.path = "/sys/devices/system/cpu/cpu1/topology/core_id",
604 		.size = 2,
605 		.content = "1\n",
606 	},
607 	{
608 		.path = "/sys/devices/system/cpu/cpu1/topology/core_siblings",
609 		.size = 3,
610 		.content = "0f\n",
611 	},
612 	{
613 		.path = "/sys/devices/system/cpu/cpu1/topology/core_siblings_list",
614 		.size = 4,
615 		.content = "0-3\n",
616 	},
617 	{
618 		.path = "/sys/devices/system/cpu/cpu1/topology/physical_package_id",
619 		.size = 2,
620 		.content = "1\n",
621 	},
622 	{
623 		.path = "/sys/devices/system/cpu/cpu1/topology/thread_siblings",
624 		.size = 3,
625 		.content = "02\n",
626 	},
627 	{
628 		.path = "/sys/devices/system/cpu/cpu1/topology/thread_siblings_list",
629 		.size = 2,
630 		.content = "1\n",
631 	},
632 	{
633 		.path = "/sys/devices/system/cpu/cpu2/cpuidle/driver/name",
634 		.size = 12,
635 		.content = "exynos_idle\n",
636 	},
637 	{
638 		.path = "/sys/devices/system/cpu/cpu2/cpufreq/affected_cpus",
639 		.size = 8,
640 		.content = "0 1 2 3\n",
641 	},
642 	{
643 		.path = "/sys/devices/system/cpu/cpu2/cpufreq/cpuinfo_max_freq",
644 		.size = 8,
645 		.content = "1690000\n",
646 	},
647 	{
648 		.path = "/sys/devices/system/cpu/cpu2/cpufreq/cpuinfo_min_freq",
649 		.size = 7,
650 		.content = "455000\n",
651 	},
652 	{
653 		.path = "/sys/devices/system/cpu/cpu2/cpufreq/cpuinfo_transition_latency",
654 		.size = 7,
655 		.content = "100000\n",
656 	},
657 	{
658 		.path = "/sys/devices/system/cpu/cpu2/cpufreq/related_cpus",
659 		.size = 8,
660 		.content = "0 1 2 3\n",
661 	},
662 	{
663 		.path = "/sys/devices/system/cpu/cpu2/cpufreq/scaling_available_governors",
664 		.size = 23,
665 		.content = "userspace interactive \n",
666 	},
667 	{
668 		.path = "/sys/devices/system/cpu/cpu2/cpufreq/scaling_cur_freq",
669 		.size = 7,
670 		.content = "455000\n",
671 	},
672 	{
673 		.path = "/sys/devices/system/cpu/cpu2/cpufreq/scaling_driver",
674 		.size = 15,
675 		.content = "exynos_cpufreq\n",
676 	},
677 	{
678 		.path = "/sys/devices/system/cpu/cpu2/cpufreq/scaling_governor",
679 		.size = 12,
680 		.content = "interactive\n",
681 	},
682 	{
683 		.path = "/sys/devices/system/cpu/cpu2/cpufreq/scaling_min_freq",
684 		.size = 7,
685 		.content = "455000\n",
686 	},
687 	{
688 		.path = "/sys/devices/system/cpu/cpu2/cpufreq/stats/time_in_state",
689 		.size = 101,
690 		.content =
691 			"1690000 6861\n"
692 			"1456000 471\n"
693 			"1248000 298\n"
694 			"1053000 105\n"
695 			"949000 150\n"
696 			"832000 75\n"
697 			"715000 71\n"
698 			"598000 95\n"
699 			"455000 647\n",
700 	},
701 	{
702 		.path = "/sys/devices/system/cpu/cpu2/cpufreq/stats/total_trans",
703 		.size = 4,
704 		.content = "240\n",
705 	},
706 	{
707 		.path = "/sys/devices/system/cpu/cpu2/topology/core_id",
708 		.size = 2,
709 		.content = "2\n",
710 	},
711 	{
712 		.path = "/sys/devices/system/cpu/cpu2/topology/core_siblings",
713 		.size = 3,
714 		.content = "0f\n",
715 	},
716 	{
717 		.path = "/sys/devices/system/cpu/cpu2/topology/core_siblings_list",
718 		.size = 4,
719 		.content = "0-3\n",
720 	},
721 	{
722 		.path = "/sys/devices/system/cpu/cpu2/topology/physical_package_id",
723 		.size = 2,
724 		.content = "1\n",
725 	},
726 	{
727 		.path = "/sys/devices/system/cpu/cpu2/topology/thread_siblings",
728 		.size = 3,
729 		.content = "04\n",
730 	},
731 	{
732 		.path = "/sys/devices/system/cpu/cpu2/topology/thread_siblings_list",
733 		.size = 2,
734 		.content = "2\n",
735 	},
736 	{
737 		.path = "/sys/devices/system/cpu/cpu3/cpuidle/driver/name",
738 		.size = 12,
739 		.content = "exynos_idle\n",
740 	},
741 	{
742 		.path = "/sys/devices/system/cpu/cpu3/cpufreq/affected_cpus",
743 		.size = 8,
744 		.content = "0 1 2 3\n",
745 	},
746 	{
747 		.path = "/sys/devices/system/cpu/cpu3/cpufreq/cpuinfo_max_freq",
748 		.size = 8,
749 		.content = "1690000\n",
750 	},
751 	{
752 		.path = "/sys/devices/system/cpu/cpu3/cpufreq/cpuinfo_min_freq",
753 		.size = 7,
754 		.content = "455000\n",
755 	},
756 	{
757 		.path = "/sys/devices/system/cpu/cpu3/cpufreq/cpuinfo_transition_latency",
758 		.size = 7,
759 		.content = "100000\n",
760 	},
761 	{
762 		.path = "/sys/devices/system/cpu/cpu3/cpufreq/related_cpus",
763 		.size = 8,
764 		.content = "0 1 2 3\n",
765 	},
766 	{
767 		.path = "/sys/devices/system/cpu/cpu3/cpufreq/scaling_available_governors",
768 		.size = 23,
769 		.content = "userspace interactive \n",
770 	},
771 	{
772 		.path = "/sys/devices/system/cpu/cpu3/cpufreq/scaling_cur_freq",
773 		.size = 8,
774 		.content = "1690000\n",
775 	},
776 	{
777 		.path = "/sys/devices/system/cpu/cpu3/cpufreq/scaling_driver",
778 		.size = 15,
779 		.content = "exynos_cpufreq\n",
780 	},
781 	{
782 		.path = "/sys/devices/system/cpu/cpu3/cpufreq/scaling_governor",
783 		.size = 12,
784 		.content = "interactive\n",
785 	},
786 	{
787 		.path = "/sys/devices/system/cpu/cpu3/cpufreq/scaling_min_freq",
788 		.size = 7,
789 		.content = "455000\n",
790 	},
791 	{
792 		.path = "/sys/devices/system/cpu/cpu3/cpufreq/stats/time_in_state",
793 		.size = 102,
794 		.content =
795 			"1690000 6951\n"
796 			"1456000 538\n"
797 			"1248000 301\n"
798 			"1053000 105\n"
799 			"949000 154\n"
800 			"832000 78\n"
801 			"715000 108\n"
802 			"598000 95\n"
803 			"455000 666\n",
804 	},
805 	{
806 		.path = "/sys/devices/system/cpu/cpu3/cpufreq/stats/total_trans",
807 		.size = 4,
808 		.content = "251\n",
809 	},
810 	{
811 		.path = "/sys/devices/system/cpu/cpu3/topology/core_id",
812 		.size = 2,
813 		.content = "3\n",
814 	},
815 	{
816 		.path = "/sys/devices/system/cpu/cpu3/topology/core_siblings",
817 		.size = 3,
818 		.content = "0f\n",
819 	},
820 	{
821 		.path = "/sys/devices/system/cpu/cpu3/topology/core_siblings_list",
822 		.size = 4,
823 		.content = "0-3\n",
824 	},
825 	{
826 		.path = "/sys/devices/system/cpu/cpu3/topology/physical_package_id",
827 		.size = 2,
828 		.content = "1\n",
829 	},
830 	{
831 		.path = "/sys/devices/system/cpu/cpu3/topology/thread_siblings",
832 		.size = 3,
833 		.content = "08\n",
834 	},
835 	{
836 		.path = "/sys/devices/system/cpu/cpu3/topology/thread_siblings_list",
837 		.size = 2,
838 		.content = "3\n",
839 	},
840 	{
841 		.path = "/sys/devices/system/cpu/cpu4/cpuidle/driver/name",
842 		.size = 12,
843 		.content = "exynos_idle\n",
844 	},
845 	{
846 		.path = "/sys/devices/system/cpu/cpu4/cpufreq/affected_cpus",
847 		.size = 8,
848 		.content = "4 5 6 7\n",
849 	},
850 	{
851 		.path = "/sys/devices/system/cpu/cpu4/cpufreq/cpuinfo_max_freq",
852 		.size = 8,
853 		.content = "2314000\n",
854 	},
855 	{
856 		.path = "/sys/devices/system/cpu/cpu4/cpufreq/cpuinfo_min_freq",
857 		.size = 7,
858 		.content = "741000\n",
859 	},
860 	{
861 		.path = "/sys/devices/system/cpu/cpu4/cpufreq/cpuinfo_transition_latency",
862 		.size = 7,
863 		.content = "100000\n",
864 	},
865 	{
866 		.path = "/sys/devices/system/cpu/cpu4/cpufreq/related_cpus",
867 		.size = 8,
868 		.content = "4 5 6 7\n",
869 	},
870 	{
871 		.path = "/sys/devices/system/cpu/cpu4/cpufreq/scaling_available_governors",
872 		.size = 23,
873 		.content = "userspace interactive \n",
874 	},
875 	{
876 		.path = "/sys/devices/system/cpu/cpu4/cpufreq/scaling_cur_freq",
877 		.size = 8,
878 		.content = "1261000\n",
879 	},
880 	{
881 		.path = "/sys/devices/system/cpu/cpu4/cpufreq/scaling_driver",
882 		.size = 15,
883 		.content = "exynos_cpufreq\n",
884 	},
885 	{
886 		.path = "/sys/devices/system/cpu/cpu4/cpufreq/scaling_governor",
887 		.size = 12,
888 		.content = "interactive\n",
889 	},
890 	{
891 		.path = "/sys/devices/system/cpu/cpu4/cpufreq/scaling_max_freq",
892 		.size = 8,
893 		.content = "2314000\n",
894 	},
895 	{
896 		.path = "/sys/devices/system/cpu/cpu4/cpufreq/scaling_min_freq",
897 		.size = 7,
898 		.content = "741000\n",
899 	},
900 	{
901 		.path = "/sys/devices/system/cpu/cpu4/cpufreq/stats/time_in_state",
902 		.size = 147,
903 		.content =
904 			"2314000 5088\n"
905 			"2158000 62\n"
906 			"2002000 22\n"
907 			"1937000 62\n"
908 			"1807000 120\n"
909 			"1703000 78\n"
910 			"1469000 143\n"
911 			"1261000 691\n"
912 			"1170000 28\n"
913 			"1066000 57\n"
914 			"962000 28\n"
915 			"858000 77\n"
916 			"741000 2792\n",
917 	},
918 	{
919 		.path = "/sys/devices/system/cpu/cpu4/cpufreq/stats/total_trans",
920 		.size = 4,
921 		.content = "347\n",
922 	},
923 	{
924 		.path = "/sys/devices/system/cpu/cpu4/topology/core_id",
925 		.size = 2,
926 		.content = "0\n",
927 	},
928 	{
929 		.path = "/sys/devices/system/cpu/cpu4/topology/core_siblings",
930 		.size = 3,
931 		.content = "f0\n",
932 	},
933 	{
934 		.path = "/sys/devices/system/cpu/cpu4/topology/core_siblings_list",
935 		.size = 4,
936 		.content = "4-7\n",
937 	},
938 	{
939 		.path = "/sys/devices/system/cpu/cpu4/topology/physical_package_id",
940 		.size = 2,
941 		.content = "0\n",
942 	},
943 	{
944 		.path = "/sys/devices/system/cpu/cpu4/topology/thread_siblings",
945 		.size = 3,
946 		.content = "10\n",
947 	},
948 	{
949 		.path = "/sys/devices/system/cpu/cpu4/topology/thread_siblings_list",
950 		.size = 2,
951 		.content = "4\n",
952 	},
953 	{
954 		.path = "/sys/devices/system/cpu/cpu5/cpuidle/driver/name",
955 		.size = 12,
956 		.content = "exynos_idle\n",
957 	},
958 	{
959 		.path = "/sys/devices/system/cpu/cpu5/cpufreq/affected_cpus",
960 		.size = 8,
961 		.content = "4 5 6 7\n",
962 	},
963 	{
964 		.path = "/sys/devices/system/cpu/cpu5/cpufreq/cpuinfo_max_freq",
965 		.size = 8,
966 		.content = "2314000\n",
967 	},
968 	{
969 		.path = "/sys/devices/system/cpu/cpu5/cpufreq/cpuinfo_min_freq",
970 		.size = 7,
971 		.content = "741000\n",
972 	},
973 	{
974 		.path = "/sys/devices/system/cpu/cpu5/cpufreq/cpuinfo_transition_latency",
975 		.size = 7,
976 		.content = "100000\n",
977 	},
978 	{
979 		.path = "/sys/devices/system/cpu/cpu5/cpufreq/related_cpus",
980 		.size = 8,
981 		.content = "4 5 6 7\n",
982 	},
983 	{
984 		.path = "/sys/devices/system/cpu/cpu5/cpufreq/scaling_available_governors",
985 		.size = 23,
986 		.content = "userspace interactive \n",
987 	},
988 	{
989 		.path = "/sys/devices/system/cpu/cpu5/cpufreq/scaling_cur_freq",
990 		.size = 8,
991 		.content = "1261000\n",
992 	},
993 	{
994 		.path = "/sys/devices/system/cpu/cpu5/cpufreq/scaling_driver",
995 		.size = 15,
996 		.content = "exynos_cpufreq\n",
997 	},
998 	{
999 		.path = "/sys/devices/system/cpu/cpu5/cpufreq/scaling_governor",
1000 		.size = 12,
1001 		.content = "interactive\n",
1002 	},
1003 	{
1004 		.path = "/sys/devices/system/cpu/cpu5/cpufreq/scaling_max_freq",
1005 		.size = 8,
1006 		.content = "2314000\n",
1007 	},
1008 	{
1009 		.path = "/sys/devices/system/cpu/cpu5/cpufreq/scaling_min_freq",
1010 		.size = 7,
1011 		.content = "741000\n",
1012 	},
1013 	{
1014 		.path = "/sys/devices/system/cpu/cpu5/cpufreq/stats/time_in_state",
1015 		.size = 148,
1016 		.content =
1017 			"2314000 5088\n"
1018 			"2158000 68\n"
1019 			"2002000 22\n"
1020 			"1937000 64\n"
1021 			"1807000 127\n"
1022 			"1703000 100\n"
1023 			"1469000 165\n"
1024 			"1261000 750\n"
1025 			"1170000 28\n"
1026 			"1066000 57\n"
1027 			"962000 28\n"
1028 			"858000 85\n"
1029 			"741000 2932\n",
1030 	},
1031 	{
1032 		.path = "/sys/devices/system/cpu/cpu5/cpufreq/stats/total_trans",
1033 		.size = 4,
1034 		.content = "375\n",
1035 	},
1036 	{
1037 		.path = "/sys/devices/system/cpu/cpu5/topology/core_id",
1038 		.size = 2,
1039 		.content = "1\n",
1040 	},
1041 	{
1042 		.path = "/sys/devices/system/cpu/cpu5/topology/core_siblings",
1043 		.size = 3,
1044 		.content = "f0\n",
1045 	},
1046 	{
1047 		.path = "/sys/devices/system/cpu/cpu5/topology/core_siblings_list",
1048 		.size = 4,
1049 		.content = "4-7\n",
1050 	},
1051 	{
1052 		.path = "/sys/devices/system/cpu/cpu5/topology/physical_package_id",
1053 		.size = 2,
1054 		.content = "0\n",
1055 	},
1056 	{
1057 		.path = "/sys/devices/system/cpu/cpu5/topology/thread_siblings",
1058 		.size = 3,
1059 		.content = "20\n",
1060 	},
1061 	{
1062 		.path = "/sys/devices/system/cpu/cpu5/topology/thread_siblings_list",
1063 		.size = 2,
1064 		.content = "5\n",
1065 	},
1066 	{
1067 		.path = "/sys/devices/system/cpu/cpu6/cpuidle/driver/name",
1068 		.size = 12,
1069 		.content = "exynos_idle\n",
1070 	},
1071 	{
1072 		.path = "/sys/devices/system/cpu/cpu6/cpufreq/affected_cpus",
1073 		.size = 8,
1074 		.content = "4 5 6 7\n",
1075 	},
1076 	{
1077 		.path = "/sys/devices/system/cpu/cpu6/cpufreq/cpuinfo_max_freq",
1078 		.size = 8,
1079 		.content = "2314000\n",
1080 	},
1081 	{
1082 		.path = "/sys/devices/system/cpu/cpu6/cpufreq/cpuinfo_min_freq",
1083 		.size = 7,
1084 		.content = "741000\n",
1085 	},
1086 	{
1087 		.path = "/sys/devices/system/cpu/cpu6/cpufreq/cpuinfo_transition_latency",
1088 		.size = 7,
1089 		.content = "100000\n",
1090 	},
1091 	{
1092 		.path = "/sys/devices/system/cpu/cpu6/cpufreq/related_cpus",
1093 		.size = 8,
1094 		.content = "4 5 6 7\n",
1095 	},
1096 	{
1097 		.path = "/sys/devices/system/cpu/cpu6/cpufreq/scaling_available_governors",
1098 		.size = 23,
1099 		.content = "userspace interactive \n",
1100 	},
1101 	{
1102 		.path = "/sys/devices/system/cpu/cpu6/cpufreq/scaling_cur_freq",
1103 		.size = 7,
1104 		.content = "741000\n",
1105 	},
1106 	{
1107 		.path = "/sys/devices/system/cpu/cpu6/cpufreq/scaling_driver",
1108 		.size = 15,
1109 		.content = "exynos_cpufreq\n",
1110 	},
1111 	{
1112 		.path = "/sys/devices/system/cpu/cpu6/cpufreq/scaling_governor",
1113 		.size = 12,
1114 		.content = "interactive\n",
1115 	},
1116 	{
1117 		.path = "/sys/devices/system/cpu/cpu6/cpufreq/scaling_max_freq",
1118 		.size = 8,
1119 		.content = "2314000\n",
1120 	},
1121 	{
1122 		.path = "/sys/devices/system/cpu/cpu6/cpufreq/scaling_min_freq",
1123 		.size = 7,
1124 		.content = "741000\n",
1125 	},
1126 	{
1127 		.path = "/sys/devices/system/cpu/cpu6/cpufreq/stats/time_in_state",
1128 		.size = 148,
1129 		.content =
1130 			"2314000 5140\n"
1131 			"2158000 73\n"
1132 			"2002000 22\n"
1133 			"1937000 68\n"
1134 			"1807000 128\n"
1135 			"1703000 108\n"
1136 			"1469000 193\n"
1137 			"1261000 824\n"
1138 			"1170000 28\n"
1139 			"1066000 68\n"
1140 			"962000 28\n"
1141 			"858000 92\n"
1142 			"741000 3016\n",
1143 	},
1144 	{
1145 		.path = "/sys/devices/system/cpu/cpu6/cpufreq/stats/total_trans",
1146 		.size = 4,
1147 		.content = "413\n",
1148 	},
1149 	{
1150 		.path = "/sys/devices/system/cpu/cpu6/topology/core_id",
1151 		.size = 2,
1152 		.content = "2\n",
1153 	},
1154 	{
1155 		.path = "/sys/devices/system/cpu/cpu6/topology/core_siblings",
1156 		.size = 3,
1157 		.content = "f0\n",
1158 	},
1159 	{
1160 		.path = "/sys/devices/system/cpu/cpu6/topology/core_siblings_list",
1161 		.size = 4,
1162 		.content = "4-7\n",
1163 	},
1164 	{
1165 		.path = "/sys/devices/system/cpu/cpu6/topology/physical_package_id",
1166 		.size = 2,
1167 		.content = "0\n",
1168 	},
1169 	{
1170 		.path = "/sys/devices/system/cpu/cpu6/topology/thread_siblings",
1171 		.size = 3,
1172 		.content = "40\n",
1173 	},
1174 	{
1175 		.path = "/sys/devices/system/cpu/cpu6/topology/thread_siblings_list",
1176 		.size = 2,
1177 		.content = "6\n",
1178 	},
1179 	{
1180 		.path = "/sys/devices/system/cpu/cpu7/cpuidle/driver/name",
1181 		.size = 12,
1182 		.content = "exynos_idle\n",
1183 	},
1184 	{
1185 		.path = "/sys/devices/system/cpu/cpu7/cpufreq/affected_cpus",
1186 		.size = 8,
1187 		.content = "4 5 6 7\n",
1188 	},
1189 	{
1190 		.path = "/sys/devices/system/cpu/cpu7/cpufreq/cpuinfo_max_freq",
1191 		.size = 8,
1192 		.content = "2314000\n",
1193 	},
1194 	{
1195 		.path = "/sys/devices/system/cpu/cpu7/cpufreq/cpuinfo_min_freq",
1196 		.size = 7,
1197 		.content = "741000\n",
1198 	},
1199 	{
1200 		.path = "/sys/devices/system/cpu/cpu7/cpufreq/cpuinfo_transition_latency",
1201 		.size = 7,
1202 		.content = "100000\n",
1203 	},
1204 	{
1205 		.path = "/sys/devices/system/cpu/cpu7/cpufreq/related_cpus",
1206 		.size = 8,
1207 		.content = "4 5 6 7\n",
1208 	},
1209 	{
1210 		.path = "/sys/devices/system/cpu/cpu7/cpufreq/scaling_available_governors",
1211 		.size = 23,
1212 		.content = "userspace interactive \n",
1213 	},
1214 	{
1215 		.path = "/sys/devices/system/cpu/cpu7/cpufreq/scaling_cur_freq",
1216 		.size = 7,
1217 		.content = "741000\n",
1218 	},
1219 	{
1220 		.path = "/sys/devices/system/cpu/cpu7/cpufreq/scaling_driver",
1221 		.size = 15,
1222 		.content = "exynos_cpufreq\n",
1223 	},
1224 	{
1225 		.path = "/sys/devices/system/cpu/cpu7/cpufreq/scaling_governor",
1226 		.size = 12,
1227 		.content = "interactive\n",
1228 	},
1229 	{
1230 		.path = "/sys/devices/system/cpu/cpu7/cpufreq/scaling_max_freq",
1231 		.size = 8,
1232 		.content = "2314000\n",
1233 	},
1234 	{
1235 		.path = "/sys/devices/system/cpu/cpu7/cpufreq/scaling_min_freq",
1236 		.size = 7,
1237 		.content = "741000\n",
1238 	},
1239 	{
1240 		.path = "/sys/devices/system/cpu/cpu7/cpufreq/stats/time_in_state",
1241 		.size = 149,
1242 		.content =
1243 			"2314000 5140\n"
1244 			"2158000 73\n"
1245 			"2002000 22\n"
1246 			"1937000 68\n"
1247 			"1807000 128\n"
1248 			"1703000 122\n"
1249 			"1469000 220\n"
1250 			"1261000 904\n"
1251 			"1170000 28\n"
1252 			"1066000 70\n"
1253 			"962000 36\n"
1254 			"858000 108\n"
1255 			"741000 3112\n",
1256 	},
1257 	{
1258 		.path = "/sys/devices/system/cpu/cpu7/cpufreq/stats/total_trans",
1259 		.size = 4,
1260 		.content = "446\n",
1261 	},
1262 	{
1263 		.path = "/sys/devices/system/cpu/cpu7/topology/core_id",
1264 		.size = 2,
1265 		.content = "3\n",
1266 	},
1267 	{
1268 		.path = "/sys/devices/system/cpu/cpu7/topology/core_siblings",
1269 		.size = 3,
1270 		.content = "f0\n",
1271 	},
1272 	{
1273 		.path = "/sys/devices/system/cpu/cpu7/topology/core_siblings_list",
1274 		.size = 4,
1275 		.content = "4-7\n",
1276 	},
1277 	{
1278 		.path = "/sys/devices/system/cpu/cpu7/topology/physical_package_id",
1279 		.size = 2,
1280 		.content = "0\n",
1281 	},
1282 	{
1283 		.path = "/sys/devices/system/cpu/cpu7/topology/thread_siblings",
1284 		.size = 3,
1285 		.content = "80\n",
1286 	},
1287 	{
1288 		.path = "/sys/devices/system/cpu/cpu7/topology/thread_siblings_list",
1289 		.size = 2,
1290 		.content = "7\n",
1291 	},
1292 	{ NULL },
1293 };
1294 #ifdef __ANDROID__
1295 struct cpuinfo_mock_property properties[] = {
1296 	{
1297 		.key = "af.fast_period_size",
1298 		.value = "192",
1299 	},
1300 	{
1301 		.key = "af.fast_track_multiplier",
1302 		.value = "1",
1303 	},
1304 	{
1305 		.key = "audioflinger.bootsnd",
1306 		.value = "0",
1307 	},
1308 	{
1309 		.key = "boot.sfbootcomplete",
1310 		.value = "0",
1311 	},
1312 	{
1313 		.key = "dalvik.vm.appimageformat",
1314 		.value = "lz4",
1315 	},
1316 	{
1317 		.key = "dalvik.vm.dex2oat-Xms",
1318 		.value = "64m",
1319 	},
1320 	{
1321 		.key = "dalvik.vm.dex2oat-Xmx",
1322 		.value = "512m",
1323 	},
1324 	{
1325 		.key = "dalvik.vm.heapgrowthlimit",
1326 		.value = "256m",
1327 	},
1328 	{
1329 		.key = "dalvik.vm.heapmaxfree",
1330 		.value = "8m",
1331 	},
1332 	{
1333 		.key = "dalvik.vm.heapminfree",
1334 		.value = "2m",
1335 	},
1336 	{
1337 		.key = "dalvik.vm.heapsize",
1338 		.value = "512m",
1339 	},
1340 	{
1341 		.key = "dalvik.vm.heapstartsize",
1342 		.value = "8m",
1343 	},
1344 	{
1345 		.key = "dalvik.vm.heaptargetutilization",
1346 		.value = "0.75",
1347 	},
1348 	{
1349 		.key = "dalvik.vm.image-dex2oat-Xms",
1350 		.value = "64m",
1351 	},
1352 	{
1353 		.key = "dalvik.vm.image-dex2oat-Xmx",
1354 		.value = "64m",
1355 	},
1356 	{
1357 		.key = "dalvik.vm.isa.arm.features",
1358 		.value = "default",
1359 	},
1360 	{
1361 		.key = "dalvik.vm.isa.arm.variant",
1362 		.value = "cortex-a53",
1363 	},
1364 	{
1365 		.key = "dalvik.vm.isa.arm64.features",
1366 		.value = "default",
1367 	},
1368 	{
1369 		.key = "dalvik.vm.isa.arm64.variant",
1370 		.value = "exynos-m2",
1371 	},
1372 	{
1373 		.key = "dalvik.vm.stack-trace-file",
1374 		.value = "/data/anr/traces.txt",
1375 	},
1376 	{
1377 		.key = "dalvik.vm.usejit",
1378 		.value = "true",
1379 	},
1380 	{
1381 		.key = "dalvik.vm.usejitprofiles",
1382 		.value = "true",
1383 	},
1384 	{
1385 		.key = "debug.atrace.tags.enableflags",
1386 		.value = "0",
1387 	},
1388 	{
1389 		.key = "debug.force_rtl",
1390 		.value = "0",
1391 	},
1392 	{
1393 		.key = "debug.hwc.winupdate",
1394 		.value = "1",
1395 	},
1396 	{
1397 		.key = "debug.sf.layerdump",
1398 		.value = "0",
1399 	},
1400 	{
1401 		.key = "debug.slsi_platform",
1402 		.value = "1",
1403 	},
1404 	{
1405 		.key = "dev.bootcomplete",
1406 		.value = "1",
1407 	},
1408 	{
1409 		.key = "dev.kies.drivedisplay",
1410 		.value = "0",
1411 	},
1412 	{
1413 		.key = "dev.kies.drivedisplay.trust",
1414 		.value = "1",
1415 	},
1416 	{
1417 		.key = "dev.kies.sommode",
1418 		.value = "TRUE",
1419 	},
1420 	{
1421 		.key = "dev.kiessupport",
1422 		.value = "TRUE",
1423 	},
1424 	{
1425 		.key = "dev.knoxapp.running",
1426 		.value = "false",
1427 	},
1428 	{
1429 		.key = "dev.mtp.opensession",
1430 		.value = "0",
1431 	},
1432 	{
1433 		.key = "dev.ssrm.appsync3p",
1434 		.value = "true",
1435 	},
1436 	{
1437 		.key = "dev.ssrm.dex2oat.affinity",
1438 		.value = "",
1439 	},
1440 	{
1441 		.key = "dev.ssrm.gamelevel",
1442 		.value = "-4,6,-3,-3",
1443 	},
1444 	{
1445 		.key = "dev.ssrm.init",
1446 		.value = "1",
1447 	},
1448 	{
1449 		.key = "dev.ssrm.mode",
1450 		.value = "",
1451 	},
1452 	{
1453 		.key = "dev.ssrm.pst",
1454 		.value = "376",
1455 	},
1456 	{
1457 		.key = "dev.ssrm.smart_switch",
1458 		.value = "true",
1459 	},
1460 	{
1461 		.key = "drm.service.enabled",
1462 		.value = "true",
1463 	},
1464 	{
1465 		.key = "gsm.current.phone-type",
1466 		.value = "1",
1467 	},
1468 	{
1469 		.key = "gsm.network.type",
1470 		.value = "Unknown",
1471 	},
1472 	{
1473 		.key = "gsm.operator.alpha",
1474 		.value = "",
1475 	},
1476 	{
1477 		.key = "gsm.operator.iso-country",
1478 		.value = "us",
1479 	},
1480 	{
1481 		.key = "gsm.operator.ispsroaming",
1482 		.value = "false",
1483 	},
1484 	{
1485 		.key = "gsm.operator.isroaming",
1486 		.value = "false",
1487 	},
1488 	{
1489 		.key = "gsm.operator.numeric",
1490 		.value = "310260",
1491 	},
1492 	{
1493 		.key = "gsm.sim.operator.alpha",
1494 		.value = "",
1495 	},
1496 	{
1497 		.key = "gsm.sim.operator.iso-country",
1498 		.value = "",
1499 	},
1500 	{
1501 		.key = "gsm.sim.operator.numeric",
1502 		.value = "",
1503 	},
1504 	{
1505 		.key = "gsm.sim.state",
1506 		.value = "ABSENT",
1507 	},
1508 	{
1509 		.key = "gsm.version.baseband",
1510 		.value = "G950FXXU1AQL5",
1511 	},
1512 	{
1513 		.key = "gsm.version.ril-impl",
1514 		.value = "Samsung RIL v3.0",
1515 	},
1516 	{
1517 		.key = "init.svc.BCS-daemon",
1518 		.value = "running",
1519 	},
1520 	{
1521 		.key = "init.svc.DIAG-daemon",
1522 		.value = "running",
1523 	},
1524 	{
1525 		.key = "init.svc.DR-daemon",
1526 		.value = "running",
1527 	},
1528 	{
1529 		.key = "init.svc.SIDESYNC_service",
1530 		.value = "running",
1531 	},
1532 	{
1533 		.key = "init.svc.SMD-daemon",
1534 		.value = "running",
1535 	},
1536 	{
1537 		.key = "init.svc.TvoutService_C",
1538 		.value = "running",
1539 	},
1540 	{
1541 		.key = "init.svc.adbd",
1542 		.value = "running",
1543 	},
1544 	{
1545 		.key = "init.svc.apaservice",
1546 		.value = "running",
1547 	},
1548 	{
1549 		.key = "init.svc.argos-daemon",
1550 		.value = "running",
1551 	},
1552 	{
1553 		.key = "init.svc.at_distributor",
1554 		.value = "running",
1555 	},
1556 	{
1557 		.key = "init.svc.audioserver",
1558 		.value = "running",
1559 	},
1560 	{
1561 		.key = "init.svc.auditd",
1562 		.value = "running",
1563 	},
1564 	{
1565 		.key = "init.svc.bootanim",
1566 		.value = "stopped",
1567 	},
1568 	{
1569 		.key = "init.svc.bootchecker",
1570 		.value = "running",
1571 	},
1572 	{
1573 		.key = "init.svc.cameraserver",
1574 		.value = "running",
1575 	},
1576 	{
1577 		.key = "init.svc.ccm",
1578 		.value = "running",
1579 	},
1580 	{
1581 		.key = "init.svc.cpboot-daemon",
1582 		.value = "running",
1583 	},
1584 	{
1585 		.key = "init.svc.debuggerd",
1586 		.value = "running",
1587 	},
1588 	{
1589 		.key = "init.svc.debuggerd64",
1590 		.value = "running",
1591 	},
1592 	{
1593 		.key = "init.svc.drm",
1594 		.value = "running",
1595 	},
1596 	{
1597 		.key = "init.svc.epmlogd",
1598 		.value = "stopped",
1599 	},
1600 	{
1601 		.key = "init.svc.esecomm",
1602 		.value = "running",
1603 	},
1604 	{
1605 		.key = "init.svc.faced",
1606 		.value = "running",
1607 	},
1608 	{
1609 		.key = "init.svc.fingerprintd",
1610 		.value = "running",
1611 	},
1612 	{
1613 		.key = "init.svc.flash_recovery",
1614 		.value = "stopped",
1615 	},
1616 	{
1617 		.key = "init.svc.gatekeeperd",
1618 		.value = "running",
1619 	},
1620 	{
1621 		.key = "init.svc.gpsd",
1622 		.value = "running",
1623 	},
1624 	{
1625 		.key = "init.svc.healthd",
1626 		.value = "running",
1627 	},
1628 	{
1629 		.key = "init.svc.icd",
1630 		.value = "stopped",
1631 	},
1632 	{
1633 		.key = "init.svc.imsd",
1634 		.value = "running",
1635 	},
1636 	{
1637 		.key = "init.svc.installd",
1638 		.value = "running",
1639 	},
1640 	{
1641 		.key = "init.svc.iod",
1642 		.value = "running",
1643 	},
1644 	{
1645 		.key = "init.svc.irisd",
1646 		.value = "running",
1647 	},
1648 	{
1649 		.key = "init.svc.jackservice",
1650 		.value = "running",
1651 	},
1652 	{
1653 		.key = "init.svc.keystore",
1654 		.value = "running",
1655 	},
1656 	{
1657 		.key = "init.svc.lhd",
1658 		.value = "running",
1659 	},
1660 	{
1661 		.key = "init.svc.lmkd",
1662 		.value = "running",
1663 	},
1664 	{
1665 		.key = "init.svc.logd",
1666 		.value = "running",
1667 	},
1668 	{
1669 		.key = "init.svc.logd-reinit",
1670 		.value = "stopped",
1671 	},
1672 	{
1673 		.key = "init.svc.macloader",
1674 		.value = "stopped",
1675 	},
1676 	{
1677 		.key = "init.svc.media",
1678 		.value = "running",
1679 	},
1680 	{
1681 		.key = "init.svc.mediacodec",
1682 		.value = "running",
1683 	},
1684 	{
1685 		.key = "init.svc.mediadrm",
1686 		.value = "running",
1687 	},
1688 	{
1689 		.key = "init.svc.mediaextractor",
1690 		.value = "running",
1691 	},
1692 	{
1693 		.key = "init.svc.mobicore",
1694 		.value = "running",
1695 	},
1696 	{
1697 		.key = "init.svc.netd",
1698 		.value = "running",
1699 	},
1700 	{
1701 		.key = "init.svc.otp",
1702 		.value = "running",
1703 	},
1704 	{
1705 		.key = "init.svc.p2p_supplicant",
1706 		.value = "running",
1707 	},
1708 	{
1709 		.key = "init.svc.powersnd",
1710 		.value = "stopped",
1711 	},
1712 	{
1713 		.key = "init.svc.prepare_param",
1714 		.value = "stopped",
1715 	},
1716 	{
1717 		.key = "init.svc.ril-daemon",
1718 		.value = "running",
1719 	},
1720 	{
1721 		.key = "init.svc.scs",
1722 		.value = "stopped",
1723 	},
1724 	{
1725 		.key = "init.svc.sdp_cryptod",
1726 		.value = "running",
1727 	},
1728 	{
1729 		.key = "init.svc.sec-sh",
1730 		.value = "stopped",
1731 	},
1732 	{
1733 		.key = "init.svc.secure_storage",
1734 		.value = "running",
1735 	},
1736 	{
1737 		.key = "init.svc.sem_daemon",
1738 		.value = "stopped",
1739 	},
1740 	{
1741 		.key = "init.svc.sensorhubservice",
1742 		.value = "running",
1743 	},
1744 	{
1745 		.key = "init.svc.servicemanager",
1746 		.value = "running",
1747 	},
1748 	{
1749 		.key = "init.svc.surfaceflinger",
1750 		.value = "running",
1751 	},
1752 	{
1753 		.key = "init.svc.swapon",
1754 		.value = "stopped",
1755 	},
1756 	{
1757 		.key = "init.svc.ueventd",
1758 		.value = "running",
1759 	},
1760 	{
1761 		.key = "init.svc.vaultkeeperd",
1762 		.value = "running",
1763 	},
1764 	{
1765 		.key = "init.svc.visiond",
1766 		.value = "running",
1767 	},
1768 	{
1769 		.key = "init.svc.vold",
1770 		.value = "running",
1771 	},
1772 	{
1773 		.key = "init.svc.watchdogd",
1774 		.value = "running",
1775 	},
1776 	{
1777 		.key = "init.svc.wsmd",
1778 		.value = "running",
1779 	},
1780 	{
1781 		.key = "init.svc.zygote",
1782 		.value = "running",
1783 	},
1784 	{
1785 		.key = "init.svc.zygote_secondary",
1786 		.value = "running",
1787 	},
1788 	{
1789 		.key = "keyguard.no_require_sim",
1790 		.value = "true",
1791 	},
1792 	{
1793 		.key = "logd.auditd",
1794 		.value = "false",
1795 	},
1796 	{
1797 		.key = "logd.kernel",
1798 		.value = "false",
1799 	},
1800 	{
1801 		.key = "net.bt.name",
1802 		.value = "Android",
1803 	},
1804 	{
1805 		.key = "net.change",
1806 		.value = "net.iptype",
1807 	},
1808 	{
1809 		.key = "net.dns1",
1810 		.value = "208.67.222.222",
1811 	},
1812 	{
1813 		.key = "net.dns2",
1814 		.value = "208.67.220.220",
1815 	},
1816 	{
1817 		.key = "net.hostname",
1818 		.value = "android-59a0bfcfa426476b",
1819 	},
1820 	{
1821 		.key = "net.iptype",
1822 		.value = "502:v4v6v6",
1823 	},
1824 	{
1825 		.key = "net.knox.shareddevice.version",
1826 		.value = "2.8.0",
1827 	},
1828 	{
1829 		.key = "net.knoxscep.version",
1830 		.value = "2.2.0",
1831 	},
1832 	{
1833 		.key = "net.knoxvpn.version",
1834 		.value = "2.4.0",
1835 	},
1836 	{
1837 		.key = "net.qtaguid_enabled",
1838 		.value = "1",
1839 	},
1840 	{
1841 		.key = "net.smart_switch.disabled",
1842 		.value = "1",
1843 	},
1844 	{
1845 		.key = "net.tcp.default_init_rwnd",
1846 		.value = "60",
1847 	},
1848 	{
1849 		.key = "nfc.fw.dfl_areacode",
1850 		.value = "DEF",
1851 	},
1852 	{
1853 		.key = "nfc.fw.downloadmode_force",
1854 		.value = "0",
1855 	},
1856 	{
1857 		.key = "nfc.fw.rfreg_display_ver",
1858 		.value = "3",
1859 	},
1860 	{
1861 		.key = "nfc.fw.rfreg_ver",
1862 		.value = "17/6/22/21.53.25",
1863 	},
1864 	{
1865 		.key = "nfc.fw.ver",
1866 		.value = "S.LSI 4.5.2",
1867 	},
1868 	{
1869 		.key = "nfc.smartcard.binded",
1870 		.value = "true",
1871 	},
1872 	{
1873 		.key = "persist.audio.allsoundmute",
1874 		.value = "0",
1875 	},
1876 	{
1877 		.key = "persist.audio.corefx",
1878 		.value = "1",
1879 	},
1880 	{
1881 		.key = "persist.audio.effectcpufreq",
1882 		.value = "350000",
1883 	},
1884 	{
1885 		.key = "persist.audio.finemediavolume",
1886 		.value = "1",
1887 	},
1888 	{
1889 		.key = "persist.audio.globaleffect",
1890 		.value = "1",
1891 	},
1892 	{
1893 		.key = "persist.audio.headsetsysvolume",
1894 		.value = "9",
1895 	},
1896 	{
1897 		.key = "persist.audio.hphonesysvolume",
1898 		.value = "9",
1899 	},
1900 	{
1901 		.key = "persist.audio.k2hd",
1902 		.value = "1",
1903 	},
1904 	{
1905 		.key = "persist.audio.mpseek",
1906 		.value = "0",
1907 	},
1908 	{
1909 		.key = "persist.audio.mysound",
1910 		.value = "1",
1911 	},
1912 	{
1913 		.key = "persist.audio.ringermode",
1914 		.value = "1",
1915 	},
1916 	{
1917 		.key = "persist.audio.sales_code",
1918 		.value = "TPA",
1919 	},
1920 	{
1921 		.key = "persist.audio.soundalivefxsec",
1922 		.value = "1",
1923 	},
1924 	{
1925 		.key = "persist.audio.stereospeaker",
1926 		.value = "0",
1927 	},
1928 	{
1929 		.key = "persist.audio.sysvolume",
1930 		.value = "9",
1931 	},
1932 	{
1933 		.key = "persist.audio.uhqa",
1934 		.value = "1",
1935 	},
1936 	{
1937 		.key = "persist.audio.voipcpufreq",
1938 		.value = "0",
1939 	},
1940 	{
1941 		.key = "persist.bluetooth_fw_ver",
1942 		.value = "bcm4361B0_V0267.0301_semco.hcd",
1943 	},
1944 	{
1945 		.key = "persist.demo.hdmirotationlock",
1946 		.value = "false",
1947 	},
1948 	{
1949 		.key = "persist.radio.embms.support",
1950 		.value = "false",
1951 	},
1952 	{
1953 		.key = "persist.radio.initphone-type",
1954 		.value = "1",
1955 	},
1956 	{
1957 		.key = "persist.radio.latest-modeltype",
1958 		.value = "2",
1959 	},
1960 	{
1961 		.key = "persist.radio.multisim.config",
1962 		.value = "ss",
1963 	},
1964 	{
1965 		.key = "persist.radio.plmnname",
1966 		.value = "",
1967 	},
1968 	{
1969 		.key = "persist.radio.sib16_support",
1970 		.value = "1",
1971 	},
1972 	{
1973 		.key = "persist.ril.ims.eutranParam",
1974 		.value = "3",
1975 	},
1976 	{
1977 		.key = "persist.ril.ims.org.eutranParam",
1978 		.value = "3",
1979 	},
1980 	{
1981 		.key = "persist.ril.ims.org.utranParam",
1982 		.value = "0",
1983 	},
1984 	{
1985 		.key = "persist.ril.ims.utranParam",
1986 		.value = "0",
1987 	},
1988 	{
1989 		.key = "persist.ril.modem.board",
1990 		.value = "SHANNON355",
1991 	},
1992 	{
1993 		.key = "persist.service.bdroid.version",
1994 		.value = "5.0",
1995 	},
1996 	{
1997 		.key = "persist.service.bgkeycount",
1998 		.value = "",
1999 	},
2000 	{
2001 		.key = "persist.sys.camera.preview",
2002 		.value = "0",
2003 	},
2004 	{
2005 		.key = "persist.sys.ccm.date",
2006 		.value = "Wed Dec 13 20:58:07 KST 2017",
2007 	},
2008 	{
2009 		.key = "persist.sys.clssprld1",
2010 		.value = "888",
2011 	},
2012 	{
2013 		.key = "persist.sys.clssprld2",
2014 		.value = "348",
2015 	},
2016 	{
2017 		.key = "persist.sys.cpboot",
2018 		.value = "unknown",
2019 	},
2020 	{
2021 		.key = "persist.sys.csc_status",
2022 		.value = "normal",
2023 	},
2024 	{
2025 		.key = "persist.sys.dalvik.vm.lib.2",
2026 		.value = "libart.so",
2027 	},
2028 	{
2029 		.key = "persist.sys.debug_omc",
2030 		.value = "/system/omc/TPA",
2031 	},
2032 	{
2033 		.key = "persist.sys.debug_omcnw",
2034 		.value = "/system/omc/TPA",
2035 	},
2036 	{
2037 		.key = "persist.sys.display_density",
2038 		.value = "480",
2039 	},
2040 	{
2041 		.key = "persist.sys.locale",
2042 		.value = "en-US",
2043 	},
2044 	{
2045 		.key = "persist.sys.localedefault",
2046 		.value = "es-US",
2047 	},
2048 	{
2049 		.key = "persist.sys.omc.enable",
2050 		.value = "true",
2051 	},
2052 	{
2053 		.key = "persist.sys.omc_etcpath",
2054 		.value = "/system/omc/TPA/etc",
2055 	},
2056 	{
2057 		.key = "persist.sys.omc_path",
2058 		.value = "/system/omc/TPA",
2059 	},
2060 	{
2061 		.key = "persist.sys.omc_respath",
2062 		.value = "/omr/res",
2063 	},
2064 	{
2065 		.key = "persist.sys.omc_support",
2066 		.value = "true",
2067 	},
2068 	{
2069 		.key = "persist.sys.omcnw_path",
2070 		.value = "/system/omc/TPA",
2071 	},
2072 	{
2073 		.key = "persist.sys.prev_omcnwcode",
2074 		.value = "TPA",
2075 	},
2076 	{
2077 		.key = "persist.sys.prev_salescode",
2078 		.value = "TPA",
2079 	},
2080 	{
2081 		.key = "persist.sys.profiler_ms",
2082 		.value = "0",
2083 	},
2084 	{
2085 		.key = "persist.sys.sb.setting.enabled",
2086 		.value = "false",
2087 	},
2088 	{
2089 		.key = "persist.sys.setupwizard",
2090 		.value = "FINISH",
2091 	},
2092 	{
2093 		.key = "persist.sys.silent",
2094 		.value = "1",
2095 	},
2096 	{
2097 		.key = "persist.sys.sm_mode",
2098 		.value = "1",
2099 	},
2100 	{
2101 		.key = "persist.sys.storage_preload",
2102 		.value = "2",
2103 	},
2104 	{
2105 		.key = "persist.sys.timezone",
2106 		.value = "Asia/Shanghai",
2107 	},
2108 	{
2109 		.key = "persist.sys.usb.config",
2110 		.value = "mtp,adb",
2111 	},
2112 	{
2113 		.key = "persist.sys.usb.dualrole",
2114 		.value = "true",
2115 	},
2116 	{
2117 		.key = "persist.sys.webview.vmsize",
2118 		.value = "113626032",
2119 	},
2120 	{
2121 		.key = "pm.dexopt.ab-ota",
2122 		.value = "speed-profile",
2123 	},
2124 	{
2125 		.key = "pm.dexopt.bg-dexopt",
2126 		.value = "speed-profile",
2127 	},
2128 	{
2129 		.key = "pm.dexopt.boot",
2130 		.value = "verify-profile",
2131 	},
2132 	{
2133 		.key = "pm.dexopt.core-app",
2134 		.value = "speed",
2135 	},
2136 	{
2137 		.key = "pm.dexopt.first-boot",
2138 		.value = "interpret-only",
2139 	},
2140 	{
2141 		.key = "pm.dexopt.forced-dexopt",
2142 		.value = "speed",
2143 	},
2144 	{
2145 		.key = "pm.dexopt.install",
2146 		.value = "interpret-only",
2147 	},
2148 	{
2149 		.key = "pm.dexopt.nsys-library",
2150 		.value = "speed",
2151 	},
2152 	{
2153 		.key = "pm.dexopt.shared-apk",
2154 		.value = "speed",
2155 	},
2156 	{
2157 		.key = "ril.CHAR",
2158 		.value = "111727107",
2159 	},
2160 	{
2161 		.key = "ril.CompleteMsg",
2162 		.value = "OK",
2163 	},
2164 	{
2165 		.key = "ril.ICC_TYPE",
2166 		.value = "0",
2167 	},
2168 	{
2169 		.key = "ril.IsManualSelection",
2170 		.value = "0",
2171 	},
2172 	{
2173 		.key = "ril.LIMA",
2174 		.value = "40491",
2175 	},
2176 	{
2177 		.key = "ril.RildInit",
2178 		.value = "1",
2179 	},
2180 	{
2181 		.key = "ril.airplane.mode",
2182 		.value = "0",
2183 	},
2184 	{
2185 		.key = "ril.approved_codever",
2186 		.value = "none",
2187 	},
2188 	{
2189 		.key = "ril.approved_cscver",
2190 		.value = "none",
2191 	},
2192 	{
2193 		.key = "ril.approved_modemver",
2194 		.value = "none",
2195 	},
2196 	{
2197 		.key = "ril.atd_status",
2198 		.value = "1_1_0",
2199 	},
2200 	{
2201 		.key = "ril.backoffstate",
2202 		.value = "1024",
2203 	},
2204 	{
2205 		.key = "ril.cbd.boot_done",
2206 		.value = "1",
2207 	},
2208 	{
2209 		.key = "ril.cbd.dt_revision",
2210 		.value = "010",
2211 	},
2212 	{
2213 		.key = "ril.cbd.first_xmit_done",
2214 		.value = "1",
2215 	},
2216 	{
2217 		.key = "ril.cbd.rfs_check_done",
2218 		.value = "1",
2219 	},
2220 	{
2221 		.key = "ril.cs_svc",
2222 		.value = "1",
2223 	},
2224 	{
2225 		.key = "ril.data.intfprefix",
2226 		.value = "rmnet",
2227 	},
2228 	{
2229 		.key = "ril.debug_modemfactory",
2230 		.value = "CSC Feature State: IMS ON, EPDG ON",
2231 	},
2232 	{
2233 		.key = "ril.ecclist00",
2234 		.value = "112,911,999,000,110,118,119",
2235 	},
2236 	{
2237 		.key = "ril.ecclist_net0",
2238 		.value = "",
2239 	},
2240 	{
2241 		.key = "ril.hasisim",
2242 		.value = "0",
2243 	},
2244 	{
2245 		.key = "ril.hw_ver",
2246 		.value = "MP 0.700",
2247 	},
2248 	{
2249 		.key = "ril.ims.ecsupport",
2250 		.value = "2",
2251 	},
2252 	{
2253 		.key = "ril.ims.ltevoicesupport",
2254 		.value = "2",
2255 	},
2256 	{
2257 		.key = "ril.initPB",
2258 		.value = "0",
2259 	},
2260 	{
2261 		.key = "ril.iscdma",
2262 		.value = "0",
2263 	},
2264 	{
2265 		.key = "ril.isctc",
2266 		.value = "0",
2267 	},
2268 	{
2269 		.key = "ril.model_id",
2270 		.value = "QB8346489",
2271 	},
2272 	{
2273 		.key = "ril.modem.board",
2274 		.value = "SHANNON355",
2275 	},
2276 	{
2277 		.key = "ril.official_cscver",
2278 		.value = "G950FOXM1AQL5",
2279 	},
2280 	{
2281 		.key = "ril.product_code",
2282 		.value = "SM-G950FZKLTPA",
2283 	},
2284 	{
2285 		.key = "ril.radiostate",
2286 		.value = "10",
2287 	},
2288 	{
2289 		.key = "ril.read.done",
2290 		.value = "1",
2291 	},
2292 	{
2293 		.key = "ril.rfcal_date",
2294 		.value = "20170911",
2295 	},
2296 	{
2297 		.key = "ril.serialnumber",
2298 		.value = "RF8J9134VLF",
2299 	},
2300 	{
2301 		.key = "ril.servicestate",
2302 		.value = "2",
2303 	},
2304 	{
2305 		.key = "ril.signal.disprssi",
2306 		.value = "false",
2307 	},
2308 	{
2309 		.key = "ril.signal.param",
2310 		.value = "-11,0,255",
2311 	},
2312 	{
2313 		.key = "ril.simoperator",
2314 		.value = "",
2315 	},
2316 	{
2317 		.key = "ril.ss.routing",
2318 		.value = "0",
2319 	},
2320 	{
2321 		.key = "ril.subinfo",
2322 		.value = "0:-2",
2323 	},
2324 	{
2325 		.key = "ril.sw_ver",
2326 		.value = "G950FXXU1AQL5",
2327 	},
2328 	{
2329 		.key = "ril.timezoneID",
2330 		.value = "",
2331 	},
2332 	{
2333 		.key = "ril.twwan911Timer",
2334 		.value = "40",
2335 	},
2336 	{
2337 		.key = "ril.voice.rat",
2338 		.value = "3",
2339 	},
2340 	{
2341 		.key = "ril.voicecapable",
2342 		.value = "true",
2343 	},
2344 	{
2345 		.key = "rild.libpath",
2346 		.value = "/system/lib64/libsec-ril.so",
2347 	},
2348 	{
2349 		.key = "rild.libpath2",
2350 		.value = "/system/lib64/libsec-ril-dsds.so",
2351 	},
2352 	{
2353 		.key = "ro.adb.qemud",
2354 		.value = "1",
2355 	},
2356 	{
2357 		.key = "ro.adb.secure",
2358 		.value = "1",
2359 	},
2360 	{
2361 		.key = "ro.allow.mock.location",
2362 		.value = "0",
2363 	},
2364 	{
2365 		.key = "ro.arch",
2366 		.value = "exynos8895",
2367 	},
2368 	{
2369 		.key = "ro.astcenc.astcsupport",
2370 		.value = "1",
2371 	},
2372 	{
2373 		.key = "ro.baseband",
2374 		.value = "unknown",
2375 	},
2376 	{
2377 		.key = "ro.bluetooth.tty",
2378 		.value = "ttySAC1",
2379 	},
2380 	{
2381 		.key = "ro.board.platform",
2382 		.value = "exynos5",
2383 	},
2384 	{
2385 		.key = "ro.boot.ap_serial",
2386 		.value = "0x03B5CD48DA62",
2387 	},
2388 	{
2389 		.key = "ro.boot.bootloader",
2390 		.value = "G950FXXU1AQL5",
2391 	},
2392 	{
2393 		.key = "ro.boot.carrierid",
2394 		.value = "TPA",
2395 	},
2396 	{
2397 		.key = "ro.boot.carrierid_offset",
2398 		.value = "7340608",
2399 	},
2400 	{
2401 		.key = "ro.boot.cp_reserved_mem",
2402 		.value = "off",
2403 	},
2404 	{
2405 		.key = "ro.boot.debug_level",
2406 		.value = "0x4f4c",
2407 	},
2408 	{
2409 		.key = "ro.boot.em.did",
2410 		.value = "03b5cd48da62",
2411 	},
2412 	{
2413 		.key = "ro.boot.em.model",
2414 		.value = "SM-G950F",
2415 	},
2416 	{
2417 		.key = "ro.boot.em.status",
2418 		.value = "0x0",
2419 	},
2420 	{
2421 		.key = "ro.boot.emmc_checksum",
2422 		.value = "3",
2423 	},
2424 	{
2425 		.key = "ro.boot.flash.locked",
2426 		.value = "1",
2427 	},
2428 	{
2429 		.key = "ro.boot.fmp_config",
2430 		.value = "1",
2431 	},
2432 	{
2433 		.key = "ro.boot.hardware",
2434 		.value = "samsungexynos8895",
2435 	},
2436 	{
2437 		.key = "ro.boot.hmac_mismatch",
2438 		.value = "0",
2439 	},
2440 	{
2441 		.key = "ro.boot.hw_rev",
2442 		.value = "10",
2443 	},
2444 	{
2445 		.key = "ro.boot.odin_download",
2446 		.value = "1",
2447 	},
2448 	{
2449 		.key = "ro.boot.sales.param.offset",
2450 		.value = "7340572",
2451 	},
2452 	{
2453 		.key = "ro.boot.sec_atd.tty",
2454 		.value = "/dev/ttySAC0",
2455 	},
2456 	{
2457 		.key = "ro.boot.security_mode",
2458 		.value = "1526595585",
2459 	},
2460 	{
2461 		.key = "ro.boot.selinux",
2462 		.value = "enforcing",
2463 	},
2464 	{
2465 		.key = "ro.boot.serialno",
2466 		.value = "9889d5373450584155",
2467 	},
2468 	{
2469 		.key = "ro.boot.smsn_offset",
2470 		.value = "7345920",
2471 	},
2472 	{
2473 		.key = "ro.boot.ucs_mode",
2474 		.value = "0",
2475 	},
2476 	{
2477 		.key = "ro.boot.verifiedbootstate",
2478 		.value = "green",
2479 	},
2480 	{
2481 		.key = "ro.boot.warranty_bit",
2482 		.value = "0",
2483 	},
2484 	{
2485 		.key = "ro.boot_recovery",
2486 		.value = "unknown",
2487 	},
2488 	{
2489 		.key = "ro.bootimage.build.date",
2490 		.value = "Wed Dec 13 20:58:07 KST 2017",
2491 	},
2492 	{
2493 		.key = "ro.bootimage.build.date.utc",
2494 		.value = "1513166287",
2495 	},
2496 	{
2497 		.key = "ro.bootimage.build.fingerprint",
2498 		.value = "samsung/dreamltexx/dreamlte:7.0/NRD90M/G950FXXU1AQL5:user/test-keys",
2499 	},
2500 	{
2501 		.key = "ro.bootloader",
2502 		.value = "G950FXXU1AQL5",
2503 	},
2504 	{
2505 		.key = "ro.bootmode",
2506 		.value = "unknown",
2507 	},
2508 	{
2509 		.key = "ro.bt.bdaddr_path",
2510 		.value = "/efs/bluetooth/bt_addr",
2511 	},
2512 	{
2513 		.key = "ro.build.PDA",
2514 		.value = "G950FXXU1AQL5",
2515 	},
2516 	{
2517 		.key = "ro.build.changelist",
2518 		.value = "12640043",
2519 	},
2520 	{
2521 		.key = "ro.build.characteristics",
2522 		.value = "phone,emulator",
2523 	},
2524 	{
2525 		.key = "ro.build.date",
2526 		.value = "Wed Dec 13 20:58:07 KST 2017",
2527 	},
2528 	{
2529 		.key = "ro.build.date.utc",
2530 		.value = "1513166287",
2531 	},
2532 	{
2533 		.key = "ro.build.description",
2534 		.value = "dreamltexx-user 7.0 NRD90M G950FXXU1AQL5 release-keys",
2535 	},
2536 	{
2537 		.key = "ro.build.display.id",
2538 		.value = "NRD90M.G950FXXU1AQL5",
2539 	},
2540 	{
2541 		.key = "ro.build.fingerprint",
2542 		.value = "samsung/dreamltexx/dreamlte:7.0/NRD90M/G950FXXU1AQL5:user/release-keys",
2543 	},
2544 	{
2545 		.key = "ro.build.flavor",
2546 		.value = "dreamltexx-user",
2547 	},
2548 	{
2549 		.key = "ro.build.host",
2550 		.value = "SWDG4522",
2551 	},
2552 	{
2553 		.key = "ro.build.id",
2554 		.value = "NRD90M",
2555 	},
2556 	{
2557 		.key = "ro.build.official.release",
2558 		.value = "true",
2559 	},
2560 	{
2561 		.key = "ro.build.product",
2562 		.value = "dreamlte",
2563 	},
2564 	{
2565 		.key = "ro.build.scafe.version",
2566 		.value = "2017A",
2567 	},
2568 	{
2569 		.key = "ro.build.selinux",
2570 		.value = "1",
2571 	},
2572 	{
2573 		.key = "ro.build.selinux.enforce",
2574 		.value = "1",
2575 	},
2576 	{
2577 		.key = "ro.build.tags",
2578 		.value = "release-keys",
2579 	},
2580 	{
2581 		.key = "ro.build.type",
2582 		.value = "user",
2583 	},
2584 	{
2585 		.key = "ro.build.user",
2586 		.value = "dpi",
2587 	},
2588 	{
2589 		.key = "ro.build.version.all_codenames",
2590 		.value = "REL",
2591 	},
2592 	{
2593 		.key = "ro.build.version.base_os",
2594 		.value = "",
2595 	},
2596 	{
2597 		.key = "ro.build.version.codename",
2598 		.value = "REL",
2599 	},
2600 	{
2601 		.key = "ro.build.version.incremental",
2602 		.value = "G950FXXU1AQL5",
2603 	},
2604 	{
2605 		.key = "ro.build.version.preview_sdk",
2606 		.value = "0",
2607 	},
2608 	{
2609 		.key = "ro.build.version.release",
2610 		.value = "7.0",
2611 	},
2612 	{
2613 		.key = "ro.build.version.sdk",
2614 		.value = "24",
2615 	},
2616 	{
2617 		.key = "ro.build.version.security_index",
2618 		.value = "1",
2619 	},
2620 	{
2621 		.key = "ro.build.version.security_patch",
2622 		.value = "2017-12-01",
2623 	},
2624 	{
2625 		.key = "ro.build.version.sem",
2626 		.value = "2403",
2627 	},
2628 	{
2629 		.key = "ro.build.version.sep",
2630 		.value = "80100",
2631 	},
2632 	{
2633 		.key = "ro.carrier",
2634 		.value = "unknown",
2635 	},
2636 	{
2637 		.key = "ro.carrierid",
2638 		.value = "TPA",
2639 	},
2640 	{
2641 		.key = "ro.carrierid.param.offset",
2642 		.value = "7340608",
2643 	},
2644 	{
2645 		.key = "ro.chipname",
2646 		.value = "exynos8895",
2647 	},
2648 	{
2649 		.key = "ro.com.google.clientidbase",
2650 		.value = "android-samsung",
2651 	},
2652 	{
2653 		.key = "ro.com.google.gmsversion",
2654 		.value = "7.0_r11",
2655 	},
2656 	{
2657 		.key = "ro.config.alarm_alert",
2658 		.value = "Morning_Glory.ogg",
2659 	},
2660 	{
2661 		.key = "ro.config.dha_cached_max",
2662 		.value = "16",
2663 	},
2664 	{
2665 		.key = "ro.config.dha_cached_min",
2666 		.value = "6",
2667 	},
2668 	{
2669 		.key = "ro.config.dha_empty_init",
2670 		.value = "32",
2671 	},
2672 	{
2673 		.key = "ro.config.dha_empty_max",
2674 		.value = "32",
2675 	},
2676 	{
2677 		.key = "ro.config.dha_empty_min",
2678 		.value = "8",
2679 	},
2680 	{
2681 		.key = "ro.config.dha_pwhitelist_enable",
2682 		.value = "1",
2683 	},
2684 	{
2685 		.key = "ro.config.dha_pwhl_key",
2686 		.value = "7938",
2687 	},
2688 	{
2689 		.key = "ro.config.dha_th_rate",
2690 		.value = "2.0",
2691 	},
2692 	{
2693 		.key = "ro.config.dmverity",
2694 		.value = "true",
2695 	},
2696 	{
2697 		.key = "ro.config.fall_prevent_enable",
2698 		.value = "true",
2699 	},
2700 	{
2701 		.key = "ro.config.iccc_version",
2702 		.value = "1.0",
2703 	},
2704 	{
2705 		.key = "ro.config.infinite_bg_enable",
2706 		.value = "true",
2707 	},
2708 	{
2709 		.key = "ro.config.kap",
2710 		.value = "true",
2711 	},
2712 	{
2713 		.key = "ro.config.kap_default_on",
2714 		.value = "true",
2715 	},
2716 	{
2717 		.key = "ro.config.knox",
2718 		.value = "v30",
2719 	},
2720 	{
2721 		.key = "ro.config.media_sound",
2722 		.value = "Media_preview_Touch_the_light.ogg",
2723 	},
2724 	{
2725 		.key = "ro.config.notification_sound",
2726 		.value = "Skyline.ogg",
2727 	},
2728 	{
2729 		.key = "ro.config.notification_sound_2",
2730 		.value = "S_Charming_Bell.ogg",
2731 	},
2732 	{
2733 		.key = "ro.config.ringtone",
2734 		.value = "Over_the_Horizon.ogg",
2735 	},
2736 	{
2737 		.key = "ro.config.ringtone_2",
2738 		.value = "Basic_Bell.ogg",
2739 	},
2740 	{
2741 		.key = "ro.config.rkp",
2742 		.value = "true",
2743 	},
2744 	{
2745 		.key = "ro.config.rm_preload_enabled",
2746 		.value = "1",
2747 	},
2748 	{
2749 		.key = "ro.config.systemaudiodebug",
2750 		.value = "abox",
2751 	},
2752 	{
2753 		.key = "ro.config.tima",
2754 		.value = "1",
2755 	},
2756 	{
2757 		.key = "ro.config.timaversion",
2758 		.value = "3.0",
2759 	},
2760 	{
2761 		.key = "ro.cp_debug_level",
2762 		.value = "unknown",
2763 	},
2764 	{
2765 		.key = "ro.crypto.fs_crypto_blkdev",
2766 		.value = "/dev/block/dm-1",
2767 	},
2768 	{
2769 		.key = "ro.crypto.fuse_sdcard",
2770 		.value = "true",
2771 	},
2772 	{
2773 		.key = "ro.crypto.state",
2774 		.value = "encrypted",
2775 	},
2776 	{
2777 		.key = "ro.crypto.type",
2778 		.value = "block",
2779 	},
2780 	{
2781 		.key = "ro.csc.country_code",
2782 		.value = "PANAMA",
2783 	},
2784 	{
2785 		.key = "ro.csc.countryiso_code",
2786 		.value = "PA",
2787 	},
2788 	{
2789 		.key = "ro.csc.facebook.partnerid",
2790 		.value = "samsung:dec1cc9c-1497-4aab-b953-cee702c2a481",
2791 	},
2792 	{
2793 		.key = "ro.csc.omcnw_code",
2794 		.value = "TPA",
2795 	},
2796 	{
2797 		.key = "ro.csc.sales_code",
2798 		.value = "TPA",
2799 	},
2800 	{
2801 		.key = "ro.dalvik.vm.native.bridge",
2802 		.value = "0",
2803 	},
2804 	{
2805 		.key = "ro.debug_level",
2806 		.value = "0x4f4c",
2807 	},
2808 	{
2809 		.key = "ro.debuggable",
2810 		.value = "0",
2811 	},
2812 	{
2813 		.key = "ro.emmc_checksum",
2814 		.value = "3",
2815 	},
2816 	{
2817 		.key = "ro.error.receiver.default",
2818 		.value = "com.samsung.receiver.error",
2819 	},
2820 	{
2821 		.key = "ro.expect.recovery_id",
2822 		.value = "0x48c53cca3ea48ceba1bcfabccc7259c10b06c5d2000000000000000000000000",
2823 	},
2824 	{
2825 		.key = "ro.fmp_config",
2826 		.value = "1",
2827 	},
2828 	{
2829 		.key = "ro.frp.pst",
2830 		.value = "/dev/block/persistent",
2831 	},
2832 	{
2833 		.key = "ro.gfx.driver.0",
2834 		.value = "com.samsung.gpudriver.S8MaliG71_70",
2835 	},
2836 	{
2837 		.key = "ro.hardware",
2838 		.value = "samsungexynos8895",
2839 	},
2840 	{
2841 		.key = "ro.hardware.egl",
2842 		.value = "mali",
2843 	},
2844 	{
2845 		.key = "ro.hardware.keystore",
2846 		.value = "mdfpp",
2847 	},
2848 	{
2849 		.key = "ro.hdcp2.rx",
2850 		.value = "tz",
2851 	},
2852 	{
2853 		.key = "ro.hmac_mismatch",
2854 		.value = "0",
2855 	},
2856 	{
2857 		.key = "ro.hwui.drop_shadow_cache_size",
2858 		.value = "6",
2859 	},
2860 	{
2861 		.key = "ro.hwui.gradient_cache_size",
2862 		.value = "2",
2863 	},
2864 	{
2865 		.key = "ro.hwui.layer_cache_size",
2866 		.value = "58",
2867 	},
2868 	{
2869 		.key = "ro.hwui.path_cache_size",
2870 		.value = "16",
2871 	},
2872 	{
2873 		.key = "ro.hwui.r_buffer_cache_size",
2874 		.value = "8",
2875 	},
2876 	{
2877 		.key = "ro.hwui.shape_cache_size",
2878 		.value = "4",
2879 	},
2880 	{
2881 		.key = "ro.hwui.text_large_cache_height",
2882 		.value = "2048",
2883 	},
2884 	{
2885 		.key = "ro.hwui.text_large_cache_width",
2886 		.value = "4096",
2887 	},
2888 	{
2889 		.key = "ro.hwui.text_small_cache_height",
2890 		.value = "1024",
2891 	},
2892 	{
2893 		.key = "ro.hwui.text_small_cache_width",
2894 		.value = "1024",
2895 	},
2896 	{
2897 		.key = "ro.hwui.texture_cache_flushrate",
2898 		.value = "0.4",
2899 	},
2900 	{
2901 		.key = "ro.hwui.texture_cache_size",
2902 		.value = "88",
2903 	},
2904 	{
2905 		.key = "ro.im.param.offset",
2906 		.value = "unknown",
2907 	},
2908 	{
2909 		.key = "ro.input.resamplelatency",
2910 		.value = "1",
2911 	},
2912 	{
2913 		.key = "ro.kernel.qemu",
2914 		.value = "0",
2915 	},
2916 	{
2917 		.key = "ro.kernel.qemu.gles",
2918 		.value = "0",
2919 	},
2920 	{
2921 		.key = "ro.knox.enhance.zygote.aslr",
2922 		.value = "0",
2923 	},
2924 	{
2925 		.key = "ro.mct.compressiontype",
2926 		.value = "ETC1",
2927 	},
2928 	{
2929 		.key = "ro.me.param.offset",
2930 		.value = "unknown",
2931 	},
2932 	{
2933 		.key = "ro.mst.support",
2934 		.value = "1",
2935 	},
2936 	{
2937 		.key = "ro.multisim.simslotcount",
2938 		.value = "1",
2939 	},
2940 	{
2941 		.key = "ro.oem.key1",
2942 		.value = "TPA",
2943 	},
2944 	{
2945 		.key = "ro.oem_unlock_supported",
2946 		.value = "1",
2947 	},
2948 	{
2949 		.key = "ro.opa.eligible_device",
2950 		.value = "true",
2951 	},
2952 	{
2953 		.key = "ro.opengles.version",
2954 		.value = "196610",
2955 	},
2956 	{
2957 		.key = "ro.pr.param.offset",
2958 		.value = "unknown",
2959 	},
2960 	{
2961 		.key = "ro.product.board",
2962 		.value = "universal8895",
2963 	},
2964 	{
2965 		.key = "ro.product.brand",
2966 		.value = "samsung",
2967 	},
2968 	{
2969 		.key = "ro.product.cpu.abi",
2970 		.value = "arm64-v8a",
2971 	},
2972 	{
2973 		.key = "ro.product.cpu.abilist",
2974 		.value = "arm64-v8a,armeabi-v7a,armeabi",
2975 	},
2976 	{
2977 		.key = "ro.product.cpu.abilist32",
2978 		.value = "armeabi-v7a,armeabi",
2979 	},
2980 	{
2981 		.key = "ro.product.cpu.abilist64",
2982 		.value = "arm64-v8a",
2983 	},
2984 	{
2985 		.key = "ro.product.device",
2986 		.value = "dreamlte",
2987 	},
2988 	{
2989 		.key = "ro.product.first_api_level",
2990 		.value = "24",
2991 	},
2992 	{
2993 		.key = "ro.product.locale",
2994 		.value = "en-GB",
2995 	},
2996 	{
2997 		.key = "ro.product.manufacturer",
2998 		.value = "samsung",
2999 	},
3000 	{
3001 		.key = "ro.product.model",
3002 		.value = "SM-G950F",
3003 	},
3004 	{
3005 		.key = "ro.product.name",
3006 		.value = "dreamltexx",
3007 	},
3008 	{
3009 		.key = "ro.product_ship",
3010 		.value = "true",
3011 	},
3012 	{
3013 		.key = "ro.radio.noril",
3014 		.value = "no",
3015 	},
3016 	{
3017 		.key = "ro.revision",
3018 		.value = "10",
3019 	},
3020 	{
3021 		.key = "ro.ril.gprsclass",
3022 		.value = "10",
3023 	},
3024 	{
3025 		.key = "ro.ril.hsxpa",
3026 		.value = "1",
3027 	},
3028 	{
3029 		.key = "ro.ril.network_code",
3030 		.value = "EUR",
3031 	},
3032 	{
3033 		.key = "ro.rtn_config",
3034 		.value = "unknown",
3035 	},
3036 	{
3037 		.key = "ro.runtime.firstboot",
3038 		.value = "1524177974249",
3039 	},
3040 	{
3041 		.key = "ro.sales.param.offset",
3042 		.value = "7340572",
3043 	},
3044 	{
3045 		.key = "ro.secure",
3046 		.value = "1",
3047 	},
3048 	{
3049 		.key = "ro.securestorage.support",
3050 		.value = "true",
3051 	},
3052 	{
3053 		.key = "ro.security.ese.cosname",
3054 		.value = "UT3.0_01000005",
3055 	},
3056 	{
3057 		.key = "ro.security.esest",
3058 		.value = "per0201exi",
3059 	},
3060 	{
3061 		.key = "ro.security.icd.flagmode",
3062 		.value = "multi",
3063 	},
3064 	{
3065 		.key = "ro.security.mdpp.release",
3066 		.value = "2",
3067 	},
3068 	{
3069 		.key = "ro.security.mdpp.ux",
3070 		.value = "Enabled",
3071 	},
3072 	{
3073 		.key = "ro.security.mdpp.ver",
3074 		.value = "3.0",
3075 	},
3076 	{
3077 		.key = "ro.security.reactive.version",
3078 		.value = "2.0.11",
3079 	},
3080 	{
3081 		.key = "ro.security.vaultkeeper.feature",
3082 		.value = "1",
3083 	},
3084 	{
3085 		.key = "ro.security.vpnpp.release",
3086 		.value = "8.1",
3087 	},
3088 	{
3089 		.key = "ro.security.vpnpp.ver",
3090 		.value = "1.4",
3091 	},
3092 	{
3093 		.key = "ro.security.wlan.release",
3094 		.value = "2",
3095 	},
3096 	{
3097 		.key = "ro.security.wlan.ver",
3098 		.value = "1.0",
3099 	},
3100 	{
3101 		.key = "ro.security_mode",
3102 		.value = "1526595585",
3103 	},
3104 	{
3105 		.key = "ro.serialno",
3106 		.value = "9889d5373450584155",
3107 	},
3108 	{
3109 		.key = "ro.setupwizard.mode",
3110 		.value = "OPTIONAL",
3111 	},
3112 	{
3113 		.key = "ro.sf.init.lcd_density",
3114 		.value = "640",
3115 	},
3116 	{
3117 		.key = "ro.sf.lcd_density",
3118 		.value = "480",
3119 	},
3120 	{
3121 		.key = "ro.sku.param.offset",
3122 		.value = "unknown",
3123 	},
3124 	{
3125 		.key = "ro.sn.param.offset",
3126 		.value = "unknown",
3127 	},
3128 	{
3129 		.key = "ro.supportmodel.mptcp",
3130 		.value = "1",
3131 	},
3132 	{
3133 		.key = "ro.telephony.default_network",
3134 		.value = "9",
3135 	},
3136 	{
3137 		.key = "ro.warranty_bit",
3138 		.value = "0",
3139 	},
3140 	{
3141 		.key = "ro.wifi.channels",
3142 		.value = "",
3143 	},
3144 	{
3145 		.key = "ro.wsmd.enable",
3146 		.value = "true",
3147 	},
3148 	{
3149 		.key = "ro.zygote",
3150 		.value = "zygote64_32",
3151 	},
3152 	{
3153 		.key = "secmm.codecsolution.ready",
3154 		.value = "1",
3155 	},
3156 	{
3157 		.key = "secmm.player.uhqamode",
3158 		.value = "True",
3159 	},
3160 	{
3161 		.key = "security.ASKS.policy_version",
3162 		.value = "161228",
3163 	},
3164 	{
3165 		.key = "security.ASKS.version",
3166 		.value = "1.4",
3167 	},
3168 	{
3169 		.key = "security.mdpp",
3170 		.value = "Ready",
3171 	},
3172 	{
3173 		.key = "security.mdpp.mass",
3174 		.value = "skmm",
3175 	},
3176 	{
3177 		.key = "security.mdpp.result",
3178 		.value = "None",
3179 	},
3180 	{
3181 		.key = "security.perf_harden",
3182 		.value = "1",
3183 	},
3184 	{
3185 		.key = "security.semdaemonfinish",
3186 		.value = "1",
3187 	},
3188 	{
3189 		.key = "selinux.policy_version",
3190 		.value = "SEPF_SECMOBILE_7.0_0010",
3191 	},
3192 	{
3193 		.key = "selinux.reload_policy",
3194 		.value = "1",
3195 	},
3196 	{
3197 		.key = "service.bootanim.exit",
3198 		.value = "0",
3199 	},
3200 	{
3201 		.key = "service.camera.client",
3202 		.value = "",
3203 	},
3204 	{
3205 		.key = "service.camera.running",
3206 		.value = "0",
3207 	},
3208 	{
3209 		.key = "service.camera.running_0",
3210 		.value = "0",
3211 	},
3212 	{
3213 		.key = "service.media.powersnd",
3214 		.value = "1",
3215 	},
3216 	{
3217 		.key = "storage.mmc.size",
3218 		.value = "63963136000",
3219 	},
3220 	{
3221 		.key = "storage.support.sdcard",
3222 		.value = "1",
3223 	},
3224 	{
3225 		.key = "storage.support.usb",
3226 		.value = "1",
3227 	},
3228 	{
3229 		.key = "sys.aasservice.aason",
3230 		.value = "true",
3231 	},
3232 	{
3233 		.key = "sys.bartender.batterystats.ver",
3234 		.value = "16",
3235 	},
3236 	{
3237 		.key = "sys.boot_completed",
3238 		.value = "1",
3239 	},
3240 	{
3241 		.key = "sys.cameramode.cam_binning",
3242 		.value = "0",
3243 	},
3244 	{
3245 		.key = "sys.cameramode.cam_fps",
3246 		.value = "-1",
3247 	},
3248 	{
3249 		.key = "sys.config.amp_perf_enable",
3250 		.value = "true",
3251 	},
3252 	{
3253 		.key = "sys.config.mars_version",
3254 		.value = "2.10",
3255 	},
3256 	{
3257 		.key = "sys.config.slginfo_debug",
3258 		.value = "false",
3259 	},
3260 	{
3261 		.key = "sys.config.slginfo_dha",
3262 		.value = "true",
3263 	},
3264 	{
3265 		.key = "sys.config.slginfo_enable",
3266 		.value = "false",
3267 	},
3268 	{
3269 		.key = "sys.config.slginfo_max_count",
3270 		.value = "1000",
3271 	},
3272 	{
3273 		.key = "sys.config.slginfo_meminfo",
3274 		.value = "true",
3275 	},
3276 	{
3277 		.key = "sys.config.slginfo_vmstat",
3278 		.value = "true",
3279 	},
3280 	{
3281 		.key = "sys.daydream.connected",
3282 		.value = "0",
3283 	},
3284 	{
3285 		.key = "sys.dockstate",
3286 		.value = "0",
3287 	},
3288 	{
3289 		.key = "sys.enterprise.billing.dualsim",
3290 		.value = "true",
3291 	},
3292 	{
3293 		.key = "sys.enterprise.billing.version",
3294 		.value = "1.3.0",
3295 	},
3296 	{
3297 		.key = "sys.enterprise.otp.version",
3298 		.value = "2.6.0",
3299 	},
3300 	{
3301 		.key = "sys.fdcloseobs",
3302 		.value = "1",
3303 	},
3304 	{
3305 		.key = "sys.gps.chipinfo",
3306 		.value = "BCM4774",
3307 	},
3308 	{
3309 		.key = "sys.gps.chipvendor",
3310 		.value = "Broadcom",
3311 	},
3312 	{
3313 		.key = "sys.gps.swversion",
3314 		.value = "305302",
3315 	},
3316 	{
3317 		.key = "sys.is_members",
3318 		.value = "exist",
3319 	},
3320 	{
3321 		.key = "sys.isdumpstaterunning",
3322 		.value = "0",
3323 	},
3324 	{
3325 		.key = "sys.knox.exists",
3326 		.value = "0",
3327 	},
3328 	{
3329 		.key = "sys.knox.store",
3330 		.value = "0",
3331 	},
3332 	{
3333 		.key = "sys.mdniecontrolservice.mscon",
3334 		.value = "true",
3335 	},
3336 	{
3337 		.key = "sys.nfc.support",
3338 		.value = "1",
3339 	},
3340 	{
3341 		.key = "sys.oem_unlock_allowed",
3342 		.value = "0",
3343 	},
3344 	{
3345 		.key = "sys.reset_reason",
3346 		.value = "N|RP",
3347 	},
3348 	{
3349 		.key = "sys.siop.level",
3350 		.value = "-3",
3351 	},
3352 	{
3353 		.key = "sys.skip_lockscreen",
3354 		.value = "0",
3355 	},
3356 	{
3357 		.key = "sys.ssrm.game_running",
3358 		.value = "false",
3359 	},
3360 	{
3361 		.key = "sys.ssrm.mdnie",
3362 		.value = "-1",
3363 	},
3364 	{
3365 		.key = "sys.sysctl.extra_free_kbytes",
3366 		.value = "28096",
3367 	},
3368 	{
3369 		.key = "sys.sysctl.tcp_def_init_rwnd",
3370 		.value = "60",
3371 	},
3372 	{
3373 		.key = "sys.usb.config",
3374 		.value = "mtp,adb",
3375 	},
3376 	{
3377 		.key = "sys.usb.state",
3378 		.value = "mtp,adb",
3379 	},
3380 	{
3381 		.key = "sys.use_fifo_ui",
3382 		.value = "0",
3383 	},
3384 	{
3385 		.key = "sys.vs.display",
3386 		.value = "",
3387 	},
3388 	{
3389 		.key = "sys.vs.mode",
3390 		.value = "false",
3391 	},
3392 	{
3393 		.key = "system.camera.CC.disable",
3394 		.value = "0",
3395 	},
3396 	{
3397 		.key = "telephony.lteOnCdmaDevice",
3398 		.value = "0",
3399 	},
3400 	{
3401 		.key = "vold.crypt.type",
3402 		.value = "default",
3403 	},
3404 	{
3405 		.key = "vold.decrypt",
3406 		.value = "trigger_restart_framework",
3407 	},
3408 	{
3409 		.key = "vold.has_adoptable",
3410 		.value = "0",
3411 	},
3412 	{
3413 		.key = "vold.post_fs_data_done",
3414 		.value = "1",
3415 	},
3416 	{
3417 		.key = "vzw.os.rooted",
3418 		.value = "false",
3419 	},
3420 	{
3421 		.key = "wifi.interface",
3422 		.value = "wlan0",
3423 	},
3424 	{
3425 		.key = "wlan.driver.status",
3426 		.value = "ok",
3427 	},
3428 	{
3429 		.key = "wlan.p2p.chkintent",
3430 		.value = "8",
3431 	},
3432 	{
3433 		.key = "wlan.wfd.status",
3434 		.value = "disconnected",
3435 	},
3436 	{ NULL },
3437 };
3438 #endif /* __ANDROID__ */
3439