summaryrefslogtreecommitdiff
path: root/configs/artik530_iotcore_defconfig
blob: 33e9b3e8d9d4683ffad1305b7ef9862ece5131ae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
#
# Automatically generated file; DO NOT EDIT.
# Tizen Building Block 20171218.1 Configuration
#
TBB_INFO_PLATFORM_VERSION_4.0=y
# TBB_INFO_PLATFORM_VERSION_5.0 is not set
TBB_INFO_SNAPSHOT_ID="20171218.1"
TBB_INFO_IMAGE_NAME="tizen-iot-img"
# TBB_SET_no_board is not set
building-blocks-sub1-Preset_boards-ARTIK530=y
# building-blocks-sub1-Preset_boards-RPI3 is not set
# gst-omx is not set
TBB_ENABLE_HL_DISPLAY_SERVER=y
TBB_ENABLE_WIFI=y
TBB_ENABLE_USB_HOST=y
# TBB_ENABLE_HEADED is not set

#
# HW & HAL Features for ARTIK 530
#
# TBB_SET_no_display_ARTIK530 is not set
# building-blocks-sub2-Preset_boards-ARTIK530-Display is not set
building-blocks-sub2-Preset_boards-ARTIK530-Display_Headless=y
# building-blocks-sub2-Preset_boards-ARTIK530-Audio is not set
# building-blocks-sub2-Preset_boards-ARTIK530-Audio_Recording is not set
# TBB_SET_MM_CONFIG_ARTIK530 is not set
# mmfw-sysconf-target-artik10 is not set
# libomxil-e54xx is not set
# building-blocks-sub2-Preset_boards-ARTIK530-BLE is not set
# building-blocks-sub2-Preset_boards-ARTIK530-Bluetooth is not set
# building-blocks-sub2-Preset_boards-ARTIK530-Bluetooth_CallAudio is not set
# building-blocks-sub2-Preset_boards-ARTIK530-Feedback is not set
# building-blocks-sub2-Preset_boards-ARTIK530-GPS is not set
# building-blocks-sub2-Preset_boards-ARTIK530-NFC is not set
# building-blocks-sub2-Preset_boards-ARTIK530-Sensor is not set
building-blocks-sub2-Preset_boards-ARTIK530-System=y
# building-blocks-sub2-Preset_boards-ARTIK530-System_Device is not set
# building-blocks-sub2-Preset_boards-ARTIK530-Telephony is not set
building-blocks-sub2-Preset_boards-ARTIK530-Wifi=y
# building-blocks-sub2-Preset_boards-ARTIK530-WifiDirect is not set
# mmfw-sysconf-target-rpi3 is not set
# libomxil-vc4 is not set
# TBB_SET_no_partition is not set
# building-blocks-sub1-Preset_partition-3parts is not set
# building-blocks-sub1-Preset_partition-3parts_ramdisk is not set
building-blocks-sub1-Preset_partition-3parts_ramdisk_recovery=y
# building-blocks-sub1-Preset_partition-2parts_ramdisk is not set
# building-blocks-sub1-Preset_partition-2parts_ramdisk_recovery is not set
# TBB_SET_no_preset is not set
building-blocks-root-Preset_iot_core=y

#
# Tizen Native API Sets
#

#
# Account Native API Group
#
# building-blocks-sub2-domain_API-Account-Account_Manager is not set
# building-blocks-sub2-domain_API-Account-FIDO_Client is not set
# dummyasm is not set
# building-blocks-sub2-domain_API-Account-Sync_Manager is not set
# building-blocks-sub2-domain_API-Account-libOAuth is not set

#
# Application Framework Native API
#
# building-blocks-sub2-domain_API-AppFramework-Alarm_API is not set
# building-blocks-sub2-domain_API-AppFramework-Badge_API is not set
# building-blocks-sub2-domain_API-AppFramework-Data_Control_API is not set
# building-blocks-sub2-domain_API-AppFramework-Event_API is not set
# building-blocks-sub2-domain_API-AppFramework-External_Storage_Installation is not set
# building-blocks-sub2-domain_API-AppFramework-Message_Port_API is not set
# building-blocks-sub2-domain_API-AppFramework-Notification_API is not set
# building-blocks-sub2-domain_API-AppFramework-Shortcut_API is not set
# building-blocks-sub2-domain_API-AppFramework-TPK_Installation is not set

#
# Base API
#
# building-blocks-sub2-domain_API-Base-Glib is not set
# building-blocks-sub2-domain_API-Base-OpenMP is not set
# building-blocks-sub2-domain_API-Base-Utils is not set

#
# Content API
#
# building-blocks-sub2-domain_API-Content-Download is not set
# building-blocks-sub2-domain_API-Content-MIME_Type is not set

#
# Context API
#
# building-blocks-sub2-domain_API-Context-Contextual_History is not set
# building-blocks-sub2-domain_API-Context-Contextual_Trigger is not set

#
# Location API
#

#
# Maps API
#

#
# Messaging API
#
# building-blocks-sub2-domain_API-Messaging-Push is not set

#
# Multimedia API
#
# building-blocks-sub2-domain_API-Multimedia-Image_Util is not set
# building-blocks-sub2-domain_API-Multimedia-Media_Controller is not set
# building-blocks-sub2-domain_API-Multimedia-Media_Demuxer is not set
# building-blocks-sub2-domain_API-Multimedia-Media_Muxer is not set
# building-blocks-sub2-domain_API-Multimedia-Media_Tool is not set
# building-blocks-sub2-domain_API-Multimedia-Media_Vision_Barcode is not set
# building-blocks-sub2-domain_API-Multimedia-Media_Vision_Face is not set
# building-blocks-sub2-domain_API-Multimedia-Media_Vision_Image is not set
# building-blocks-sub2-domain_API-Multimedia-Media_Vision_Surveillance is not set
# building-blocks-sub2-domain_API-Multimedia-Metadata_Editor is not set
# building-blocks-sub2-domain_API-Multimedia-Metadata_Extractor is not set
# capi-media-player-display is not set
# building-blocks-sub2-domain_API-Multimedia-Thumbnail_Util is not set
# building-blocks-sub2-domain_API-Multimedia-Video_Util is not set
# building-blocks-sub2-domain_API-Multimedia-libEXIF is not set

#
# Network API
#
# building-blocks-sub2-domain_API-Network-ASP is not set
# bluetooth-frwk-plugin-headed is not set
# org.tizen.bt-syspopup is not set
# org.tizen.bt-syspopup-profile_common is not set
# building-blocks-sub2-domain_API-Network-Connection is not set
# building-blocks-sub2-domain_API-Network-Curl is not set
# building-blocks-sub2-domain_API-Network-DNSSD is not set
# building-blocks-sub2-domain_API-Network-HTTP is not set
# building-blocks-sub2-domain_API-Network-MTP is not set
# building-blocks-sub2-domain_API-Network-SSDP is not set
# building-blocks-sub2-domain_API-Network-STC is not set
# smartcard-plugin-uicc is not set
# smartcard-plugin-nfc is not set
# building-blocks-sub2-domain_API-Network-VPN_Service is not set
building-blocks-sub2-domain_API-Network-WiFi=y
building-blocks-sub2-domain_API-Network-WiFi_Manager=y
# net-config-plugin-headed is not set

#
# Security API
#
# building-blocks-sub2-domain_API-Security-CSR is not set
# building-blocks-sub2-domain_API-Security-Device_Policy is not set
# building-blocks-sub2-domain_API-Security-Device_Certificate is not set
# building-blocks-sub2-domain_API-Security-Privilege_Info is not set
# building-blocks-sub2-domain_API-Security-YACA is not set

#
# Social API
#
# building-blocks-sub2-domain_API-Social-Calendar is not set
# building-blocks-sub2-domain_API-Social-Contacts is not set
# building-blocks-sub2-domain_API-Social-Phonenumber_utils is not set

#
# System API
#
TBB_SET_no_device-manager-plugin=y
# TBB_SET_device-manager-plugin-artik is not set
TBB_SET_no_runtime_info=y
# building-blocks-sub2-domain_API-System-Runtime_information is not set
# building-blocks-sub2-domain_API-System-Runtime_information_Light is not set
# building-blocks-sub2-domain_API-System-Runtime_information_Headless is not set
# building-blocks-sub2-domain_API-System-Storage is not set
building-blocks-sub2-domain_API-System-System_Information=y
# building-blocks-sub2-domain_API-System-System_Settings is not set
building-blocks-sub2-domain_API-System-T_Trace=y
# building-blocks-sub2-domain_API-System-USB_Host is not set
building-blocks-sub2-domain_API-System-dlog=y
# tel-plugin-indicator is not set
# tel-plugin-syspopup is not set
# tel-plugin-nitz is not set

#
# UI API
#
# building-blocks-sub2-domain_API-UI-Cairo is not set
building-blocks-sub2-domain_API-UI-Display_Server_Headless=y
# download-fonts-service is not set
building-blocks-sub2-domain_API-UI-EFL_MainLoop=y
# building-blocks-sub2-domain_API-UI-FontConfig is not set
# building-blocks-sub2-domain_API-UI-HarfBuzz is not set
building-blocks-sub2-domain_API-UI-TBM_Surface=y

#
# UIX API
#

#
# Web API
#
building-blocks-sub2-domain_API-Web-json_Glib=y

#
# Tizen Platform Internal Feature Sets
#
# building-blocks-sub1-domain_Feature-SoftAP is not set
# building-blocks-sub1-domain_Feature-Upgrade is not set
# building-blocks-sub1-domain_Feature-Recovery is not set

#
# Tizen IoT Reference Application
#
# org.tizen.setting-profile_common is not set
# ug-bluetooth-efl is not set
# wifi-efl-ug is not set

#
# Tizen IoT Headless Applications
#

#
# Advanced Configuration
#

#
# Base packages
#
# acl is not set
# acl-docs is not set
# asan-build-env is not set
# asan-force-options is not set
# asan-runtime-env is not set
# attr is not set
# autoconf is not set
# autoconf213 is not set
# automake is not set
# bash is not set
# bc is not set
# binutils is not set
# binutils-aarch64 is not set
# binutils-devel is not set
# binutils-gold is not set
# bison is not set
# build is not set
# build-compare is not set
# build-mkbaselibs is not set
# build-mkdrpms is not set
# bzip2 is not set
# bzip2-devel is not set
# bzip2-docs is not set
# ccache is not set
# chrpath is not set
# clang is not set
# clang-accel-x86-armv7l is not set
# clang-accel-x86_64-armv7l is not set
# clang-devel is not set
# cmake is not set
# cmake-docs is not set
# coreutils is not set
# coreutils-docs is not set
# coreutils-su is not set
# cpio is not set
# cpio-docs is not set
# cpp is not set
# dash is not set
# dash-docs is not set
# db4 is not set
# db4-devel is not set
# db4-doc is not set
# db4-utils is not set
# diffutils is not set
# e2fsprogs is not set
# e2fsprogs-devel is not set
# e2fsprogs-docs is not set
# ed is not set
# elfutils is not set
# expat is not set
# fdupes is not set
# file is not set
# file-devel is not set
# filesystem is not set
# findutils is not set
# findutils-docs is not set
# findutils-locale is not set
# findutils-locate is not set
# flex is not set
# gawk is not set
# gcc is not set
# gcc-aarch64 is not set
# gcc-c is not set
# gcc-fortran is not set
# gcc-plugin-devel is not set
# gdbm is not set
# gdbm-devel is not set
# gettext-docs is not set
# gettext-runtime is not set
# gettext-tools is not set
# glibc is not set
# glibc-devel is not set
# glibc-devel-static is not set
# glibc-devel-utils is not set
# glibc-docs is not set
# glibc-extra is not set
# glibc-html is not set
# glibc-i18ndata is not set
# glibc-info is not set
# glibc-locale is not set
# glibc-profile is not set
# gmp is not set
# gmp-devel is not set
# gperf is not set
# grep is not set
# grep-docs is not set
# grep-locale is not set
# groff is not set
# groff-perl is not set
# gzip is not set
# gzip-docs is not set
# help2man is not set
# hostname is not set
# ibm-data-db2 is not set
# icecream is not set
# info is not set
# intltool is not set
# less is not set
# less-docs is not set
# libacl is not set
# libacl-devel is not set
# libarchive is not set
# libarchive-devel is not set
# libarchive-tools is not set
# libasan is not set
# libasm is not set
# libasm-devel is not set
# libatomic is not set
# libattr is not set
# libattr-devel is not set
# libattr-devel-static is not set
# libblkid is not set
# libblkid-devel is not set
# libbz2 is not set
# libcap is not set
# libcap-devel is not set
# libcap-tools is not set
# libcares is not set
# libcares-devel is not set
# libcc1 is not set
# libcom_err is not set
# libcom_err-devel is not set
# libdw is not set
# libdw-devel is not set
# libebl is not set
# libebl-devel is not set
# libelf is not set
# libelf-devel is not set
# libelf0 is not set
# libelf0-devel is not set
# libexpat is not set
# libexpat-devel is not set
# libext2fs is not set
# libext2fs-devel is not set
# libfdisk is not set
# libfdisk-devel is not set
# libffi is not set
# libffi-devel is not set
# libfreebl3 is not set
# libgcc is not set
# libgcrypt is not set
# libgcrypt-devel is not set
# libgfortran is not set
# libgmp is not set
# libgmpxx is not set
# libgomp is not set
# libgpg-error is not set
# libgpg-error-devel is not set
# libgpg-error-locale is not set
# libicecream-devel is not set
# libidn is not set
# libidn-devel is not set
# libitm is not set
# libllvm is not set
# liblsan is not set
# libltdl is not set
# liblua is not set
# liblzma is not set
# libmagic is not set
# libmagic-data is not set
# libmount is not set
# libmount-devel is not set
# libncurses is not set
# libncurses6 is not set
# libopenssl is not set
# libopenssl-devel is not set
# libpcre is not set
# libpcrecpp is not set
# libpcreposix is not set
# libpopt is not set
# libpython is not set
# libpython3_4m1_0 is not set
# libreadline is not set
# libsmack is not set
# libsmartcols is not set
# libsmartcols-devel is not set
# libsoftokn3 is not set
# libsqlite is not set
# libstdc is not set
# libstdcpp-devel is not set
# libtool is not set
# libubsan is not set
# libunistring is not set
# libunistring-devel is not set
# libunwind is not set
# libunwind-devel is not set
# libunwind-tests is not set
# libuuid is not set
# libuuid-devel is not set
# libxml2 is not set
# libxml2-devel is not set
# libxml2-tools is not set
# libxslt is not set
# libxslt-devel is not set
# libxslt-tools is not set
# libzio is not set
# libzio-devel is not set
# linux-glibc-devel is not set
# lldb is not set
# lldb-devel is not set
# llvm is not set
# llvm-devel is not set
# llvm-static-devel is not set
# lsan-force-options is not set
# lsan-runtime-env is not set
# lua is not set
# lua-devel is not set
# lua-doc is not set
# lzo is not set
# lzo-devel is not set
# lzo-minilzo is not set
# m4 is not set
# make is not set
# makeinfo is not set
# minizip is not set
# minizip-devel is not set
# mono-compat is not set
# mono-compiler is not set
# mono-core is not set
# mono-data is not set
# mono-data-oracle is not set
# mono-data-sqlite is not set
# mono-devel is not set
# mono-extras is not set
# mono-locale-extras is not set
# mono-manpages is not set
# mono-mvc is not set
# mono-mvc-devel is not set
# mono-reactive is not set
# mono-reactive-devel is not set
# mono-reactive-winforms is not set
# mono-wcf is not set
# mono-web is not set
# mono-web-devel is not set
# mono-winforms is not set
# mono-winfx is not set
# monodoc is not set
# monodoc-devel is not set
# ncurses-devel is not set
# ncurses-docs is not set
# ncurses-utils is not set
# net-tools is not set
# net-tools-docs is not set
# nghttp2 is not set
# ninja is not set
# nspr is not set
# nspr-devel is not set
# nss is not set
# nss-certs is not set
# nss-devel is not set
# nss-sysinit is not set
# nss-tools is not set
# openssl is not set
# openssl-doc is not set
# openssl-misc is not set
# pam is not set
# pam-devel is not set
# pam-docs is not set
# pam-locale is not set
# pam-modules-extra is not set
# patch is not set
# patchelf is not set
# pcre-devel is not set
# pcre-devel-static is not set
# pcre-doc is not set
# pcre-tools is not set
# perl is not set
# perl-Devel-Symdump is not set
# perl-HTML-Parser is not set
# perl-HTML-Parser-docs is not set
# perl-HTML-Tagset is not set
# perl-Pod-Coverage is not set
# perl-Test-Pod is not set
# perl-Test-Pod-Coverage is not set
# perl-TimeDate is not set
# perl-URI is not set
# perl-XML-Parser is not set
# perl-doc is not set
# perl-gettext is not set
# perl-libwww-perl is not set
# pkg-config is not set
# pkg-config-docs is not set
# popt-devel is not set
# popt-locale is not set
# procps-ng is not set
# procps-ng-devel is not set
# procps-ng-docs is not set
# python is not set
# python-accel-armv7l is not set
# python-accel-x86-armv7l is not set
# python-accel-x86_64-armv7l is not set
# python-appdirs is not set
# python-curses is not set
# python-devel is not set
# python-libxml2 is not set
# python-lxml is not set
# python-magic is not set
# python-markdown is not set
# python-packaging is not set
# python-pygments is not set
# python-pyparsing is not set
# python-rpm is not set
# python-setuptools is not set
# python-six is not set
# python-xml is not set
# python3 is not set
# python3-base is not set
# python3-curses is not set
# python3-devel is not set
# python3-dummy is not set
# python3-idle is not set
# python3-testsuite is not set
# python3-tools is not set
# qemu-accel-armv7l is not set
# qemu-accel-x86-armv7l is not set
# qemu-accel-x86_64-armv7l is not set
# qemu-linux-user-cross is not set
# qemu-linux-user-x86-cross is not set
# qemu-linux-user-x86_64-cross is not set
# readline-devel is not set
# rpm is not set
# rpm-build is not set
# rpm-devel is not set
# rpm-docs is not set
# rpm-locale is not set
# rpm-security-plugin is not set
# rpmlint is not set
# rpmlint-mini is not set
# rpmlint-tizen is not set
# rpmlint-tizen-strict is not set
# sanitizer-devel is not set
# sanitizer-sources is not set
# sed is not set
# sed-docs is not set
# setup is not set
# setup-docs is not set
# setup-misc is not set
# shadow-utils is not set
# shadow-utils-adm is not set
# smack is not set
# smack-devel is not set
# smack-docs is not set
# sqlite is not set
# sqlite-devel is not set
# sqlite-docs is not set
# sudo is not set
# sudo-devel is not set
# sudo-locale is not set
# sudo-rpm is not set
# tar is not set
# tar-docs is not set
# terminfo is not set
# terminfo-base-full is not set
# terminfo-base-mini is not set
# texinfo is not set
# tzdata is not set
# ubsan-build-env is not set
# ubsan-force-options is not set
# ubsan-runtime-env is not set
# unzip is not set
# update-alternatives is not set
# uthash-devel is not set
# util-linux is not set
# util-linux-docs is not set
# util-linux-locale is not set
# util-linux-su is not set
# uuidd is not set
# vim is not set
# vim-base is not set
# vim-data is not set
# vim-docs is not set
# vim-enhanced is not set
# which is not set
# which-docs is not set
# xz is not set
# xz-devel is not set
# xz-docs is not set
# xz-locale is not set
# zip is not set
# zip-docs is not set
# zlib is not set
# zlib-devel is not set
# zlib-devel-static is not set

#
# Unified packages
#
# SDL2 is not set
# SDL2-devel is not set
# Vulkan-LoaderAndValidationLayers is not set
# Vulkan-LoaderAndValidationLayers-devel is not set
# account-common is not set
# account-common-devel is not set
# account-manager is not set
# account-parser is not set
# alarm-server is not set
# alsa-ucm-data-ak4953 is not set
# alsa-ucm-data-alc5658 is not set
# alsa-ucm-data-max98090 is not set
# alsa-ucm-data-rpi3 is not set
# alsa-ucm-data-wm5110 is not set
# alsa-utils is not set
# alure is not set
# alure-devel is not set
# amd is not set
# amd-devel is not set
# amd-mod-boost is not set
# amd-mod-cooldown is not set
# amd-mod-cynara-core is not set
# amd-mod-extractor is not set
# amd-mod-input is not set
# amd-mod-job-scheduler is not set
# amd-mod-launchpad is not set
# amd-mod-rua is not set
# amd-mod-share is not set
# amd-mod-splash-screen is not set
# amd-mod-ui-core is not set
# amd-mod-watch is not set
# amd-mod-wayland-core is not set
# amd-mod-widget is not set
# anthy is not set
# anthy-devel is not set
# app-core-common is not set
# app-core-common-devel is not set
# app-core-efl is not set
# app-core-efl-devel is not set
# app-core-multiwindow is not set
# app-core-multiwindow-devel is not set
# app-core-ui is not set
# app-core-ui-devel is not set
# app-installers is not set
# app-installers-devel is not set
# app-installers-tests is not set
# app-svc is not set
# app-svc-devel is not set
# app-utils is not set
# app-utils-devel is not set
# app2sd is not set
# app2sd-devel is not set
# app2sd-plugin is not set
# app2sd-test is not set
# appcore-agent is not set
# appcore-agent-devel is not set
# appcore-watch is not set
# appcore-watch-devel is not set
# appcore-widget is not set
# appcore-widget-base is not set
# appcore-widget-base-devel is not set
# argos_watchdog is not set
# argos_watchdog-devel is not set
# arm-artik10-linux-kernel is not set
# arm-artik10-linux-kernel-modules is not set
# arm-artik5-linux-kernel is not set
# arm-artik5-linux-kernel-modules is not set
# arm-odroidxu3-linux-kernel is not set
# arm-odroidxu3-linux-kernel-devel is not set
# arm-odroidxu3-linux-kernel-modules is not set
# arm64-tm2-linux-kernel-aarch64 is not set
# arm64-tm2-linux-kernel-devel-aarch64 is not set
# arm64-tm2-linux-kernel-headers is not set
# arm64-tm2-linux-kernel-modules-aarch64 is not set
# artik530-raptor-linux-kernel is not set
# artik530-raptor-linux-kernel-devel is not set
# artik530-raptor-linux-kernel-headers is not set
# artik530-raptor-linux-kernel-modules is not set
# artik710-raptor-linux-kernel-headers is not set
# asciidoc is not set
# askuser-notification is not set
# askuser-notification-client is not set
# askuser-notification-devel is not set
# askuser-notification-test is not set
# asp-manager is not set
# aspell is not set
# aspell-devel is not set
# aspell-docs is not set
# aspell-ispell is not set
# aspell-spell is not set
# at-spi2-atk-devel is not set
# at-spi2-core is not set
# at-spi2-core-devel is not set
# atk-devel is not set
# attach-panel is not set
# attach-panel-camera is not set
# attach-panel-devel is not set
# attach-panel-document is not set
# attach-panel-gallery is not set
# attach-panel-voicerecorder is not set
# audio-config-sc-TM1-sc7730 is not set
# audio-config-wm1831-orbis is not set
# audio-config-wm1831-tw2 is not set
# audio-hal-ak4953 is not set
# audio-hal-alc5658 is not set
# audio-hal-bcm2837 is not set
# audio-hal-emul is not set
# audio-hal-hawkp is not set
# audio-hal-max98090 is not set
# audio-hal-sc7727 is not set
# audio-hal-wm1831 is not set
# audio-hal-wm1831-tw2 is not set
# audio-hal-wm5110 is not set
# audio-session-manager is not set
# audio-session-manager-devel is not set
# audio-session-manager-sdk-devel is not set
# audispd-plugins is not set
# audit is not set
# audit-docs is not set
# audit-libs is not set
# audit-libs-devel is not set
# audit-libs-python is not set
# audit-libs-static is not set
# augeas is not set
# augeas-devel is not set
# augeas-libs is not set
# aul is not set
# aul-devel is not set
# aul-test is not set
# auth-fw is not set
# badge is not set
# badge-devel is not set
# bcc-tools is not set
# bcc-tools-dbus is not set
# bcc-tools-devel is not set
# bind is not set
# bind-devel is not set
# bluetooth-agent is not set
# bluetooth-agent-ipsp is not set
# bluetooth-agent-profile_common is not set
# bluetooth-agent-profile_ivi is not set
# bluetooth-agent-profile_wearable is not set
# bluetooth-firmware-bcm is not set
# bluetooth-firmware-bcm-artik is not set
# bluetooth-firmware-bcm-exynos3250 is not set
# bluetooth-firmware-bcm-exynos7270 is not set
# bluetooth-firmware-bcm-rpi3 is not set
# bluetooth-firmware-marvell is not set
# bluetooth-firmware-marvell-artik530 is not set
# bluetooth-firmware-sprd-TM1 is not set
# bluetooth-frwk is not set
# bluetooth-frwk-core is not set
# bluetooth-frwk-devel is not set
# bluetooth-frwk-extension-TM1 is not set
# bluetooth-frwk-httpproxy is not set
# bluetooth-frwk-otp is not set
# bluetooth-frwk-profile_common is not set
# bluetooth-frwk-profile_ivi is not set
# bluetooth-frwk-profile_mobile is not set
# bluetooth-frwk-profile_tv is not set
# bluetooth-frwk-profile_wearable is not set
# bluetooth-frwk-service is not set
# bluetooth-frwk-test is not set
# bluetooth-share is not set
# bluetooth-tools is not set
# bluetooth-tools-no-firmware is not set
# bluetooth-tools-profile_common is not set
# bluetooth-tools-profile_ivi is not set
# bluetooth-tools-profile_mobile is not set
# bluetooth-tools-profile_wearable is not set
# bluez is not set
# bluez-devel is not set
# bluez-docs is not set
# bluez-extension-bredr is not set
# bluez-extension-le is not set
# bluez-profile_common is not set
# bluez-profile_tv is not set
# bluez-profile_wearable is not set
# bluez-test is not set
# bmap-tools is not set
# boost is not set
# boost-atomic is not set
# boost-chrono is not set
# boost-container is not set
# boost-context is not set
# boost-coroutine is not set
# boost-date-time is not set
# boost-devel is not set
# boost-doc-html is not set
# boost-filesystem is not set
# boost-graph is not set
# boost-iostreams is not set
# boost-jam is not set
# boost-license is not set
# boost-locale is not set
# boost-log is not set
# boost-math is not set
# boost-program-options is not set
# boost-python is not set
# boost-random is not set
# boost-regex is not set
# boost-serialization is not set
# boost-signals is not set
# boost-system is not set
# boost-test is not set
# boost-thread is not set
# boost-timer is not set
# boost-wave is not set
# boot-animation is not set
# boot-animation-docs is not set
# boot-animation-extension_emulator is not set
# boot-animation-sound-file-profile_common is not set
# boot-animation-sound-file-profile_wearable is not set
# bootchart is not set
# browser-provider is not set
# browser-provider-devel is not set
# brp-trim-desktopfiles is not set
# btrfs-progs is not set
# btrfs-progs-docs is not set
# building-blocks is not set
# bundle is not set
# bundle-devel is not set
# buxton2 is not set
# buxton2-devel is not set
# byacc is not set
# ca-certificates is not set
# ca-certificates-devel is not set
# ca-certificates-tizen is not set
# ca-certificates-tizen-devel is not set
# cairo-devel is not set
# calendar-service is not set
# calendar-service-devel is not set
# calendar-service-profile_tv is not set
# call-manager is not set
# capi-appfw-alarm is not set
# capi-appfw-alarm-devel is not set
# capi-appfw-app-common is not set
# capi-appfw-app-common-devel is not set
# capi-appfw-app-control is not set
# capi-appfw-app-control-devel is not set
# capi-appfw-app-manager is not set
# capi-appfw-app-manager-devel is not set
# capi-appfw-application is not set
# capi-appfw-application-devel is not set
# capi-appfw-event is not set
# capi-appfw-event-devel is not set
# capi-appfw-job-scheduler is not set
# capi-appfw-job-scheduler-devel is not set
# capi-appfw-package-manager is not set
# capi-appfw-package-manager-devel is not set
# capi-appfw-package-manager-test is not set
# capi-appfw-preference is not set
# capi-appfw-preference-devel is not set
# capi-appfw-service-application-devel is not set
# capi-appfw-watch-application-devel is not set
# capi-appfw-widget-application-devel is not set
# capi-base-common is not set
# capi-base-common-devel is not set
# capi-base-utils is not set
# capi-base-utils-devel is not set
# capi-content-media-content is not set
# capi-content-media-content-devel is not set
# capi-content-mime-type is not set
# capi-context-devel is not set
# capi-context-motion is not set
# capi-context-motion-devel is not set
# capi-context-test is not set
# capi-geofence-manager is not set
# capi-geofence-manager-devel is not set
# capi-geofence-manager-plugin-devel is not set
# capi-geofence-manager-test is not set
# capi-location-manager is not set
# capi-location-manager-devel is not set
# capi-maps-service is not set
# capi-maps-service-devel is not set
# capi-maps-service-plugin-devel is not set
# capi-maps-service-test is not set
# capi-media-audio-io is not set
# capi-media-audio-io-devel is not set
# capi-media-camera is not set
# capi-media-camera-devel is not set
# capi-media-codec is not set
# capi-media-codec-devel is not set
# capi-media-controller-devel is not set
# capi-media-image-util is not set
# capi-media-image-util-devel is not set
# capi-media-image-util-tool is not set
# capi-media-metadata-editor is not set
# capi-media-metadata-editor-devel is not set
# capi-media-metadata-extractor is not set
# capi-media-metadata-extractor-devel is not set
# capi-media-player is not set
# capi-media-player-devel is not set
# capi-media-player-utils is not set
# capi-media-radio is not set
# capi-media-radio-devel is not set
# capi-media-recorder is not set
# capi-media-recorder-devel is not set
# capi-media-screen-mirroring is not set
# capi-media-screen-mirroring-devel is not set
# capi-media-sound-manager is not set
# capi-media-sound-manager-devel is not set
# capi-media-sound-pool is not set
# capi-media-sound-pool-devel is not set
# capi-media-streamer is not set
# capi-media-streamer-devel is not set
# capi-media-streamrecorder is not set
# capi-media-streamrecorder-devel is not set
# capi-media-thumbnail-util is not set
# capi-media-thumbnail-util-devel is not set
# capi-media-tone-player is not set
# capi-media-tone-player-devel is not set
# capi-media-tool is not set
# capi-media-tool-devel is not set
# capi-media-video-util is not set
# capi-media-video-util-devel is not set
# capi-media-vision is not set
# capi-media-vision-barcode is not set
# capi-media-vision-barcode-devel is not set
# capi-media-vision-common is not set
# capi-media-vision-common-devel is not set
# capi-media-vision-devel is not set
# capi-media-vision-face is not set
# capi-media-vision-face-devel is not set
# capi-media-vision-image is not set
# capi-media-vision-image-devel is not set
# capi-media-vision-surveillance is not set
# capi-media-vision-surveillance-devel is not set
# capi-media-vision-testsuite is not set
# capi-media-wav-player is not set
# capi-media-wav-player-devel is not set
# capi-mediademuxer is not set
# capi-messaging-email-devel is not set
# capi-messaging-messages is not set
# capi-network-asp-devel is not set
# capi-network-asp-test is not set
# capi-network-bluetooth is not set
# capi-network-bluetooth-devel is not set
# capi-network-bluetooth-test is not set
# capi-network-connection is not set
# capi-network-connection-devel is not set
# capi-network-http is not set
# capi-network-http-devel is not set
# capi-network-mtp is not set
# capi-network-nfc-devel is not set
# capi-network-nsd is not set
# capi-network-nsd-devel is not set
# capi-network-nsd-tests is not set
# capi-network-serial is not set
# capi-network-serial-devel is not set
# capi-network-smartcard is not set
# capi-network-softap-devel is not set
# capi-network-stc is not set
# capi-network-stc-devel is not set
# capi-network-tethering is not set
# capi-network-tethering-devel is not set
# capi-network-vpn-setting is not set
# capi-network-vpn-setting-devel is not set
# capi-network-vpn-setting-host-cert is not set
# capi-network-vpn-setting-test is not set
# capi-network-wifi is not set
# capi-network-wifi-devel is not set
# capi-network-wifi-direct is not set
# capi-network-wifi-direct-devel is not set
# capi-network-wifi-manager is not set
# capi-network-wifi-manager-devel is not set
# capi-network-wifi-mesh is not set
# capi-network-wifi-mesh-devel is not set
# capi-network-zigbee is not set
# capi-network-zigbee-devel is not set
# capi-privacy-privilege-manager is not set
# capi-system-device is not set
# capi-system-device-devel is not set
# capi-system-info is not set
# capi-system-media-key-devel is not set
# capi-system-peripheral-io is not set
# capi-system-peripheral-io-devel is not set
# capi-system-runtime-info is not set
# capi-system-runtime-info-test is not set
# capi-system-sensor is not set
# capi-system-sensor-devel is not set
# capi-system-system-settings is not set
# capi-system-system-settings-devel is not set
# capi-system-usbhost is not set
# capi-system-usbhost-devel is not set
# capi-telephony is not set
# capi-telephony-devel is not set
# capi-ui-efl-util is not set
# capi-ui-efl-util-devel is not set
# capi-ui-inputmethod is not set
# capi-ui-inputmethod-devel is not set
# capi-ui-inputmethod-manager is not set
# capi-ui-inputmethod-manager-devel is not set
# capi-vpnsvc is not set
# capi-vpnsvc-devel is not set
# capi-web-url-download is not set
# capi-web-url-download-devel is not set
# cbhm is not set
# cbhm-devel is not set
# cert-checker is not set
# cert-checker-devel is not set
# cert-checker-tests is not set
# cert-svc is not set
# cert-svc-devel is not set
# cert-svc-ui is not set
# check is not set
# check-devel is not set
# chromium-efl is not set
# chromium-efl-devel is not set
# cmocka is not set
# cmocka-devel is not set
# com.samsung.dali-demo is not set
# connman is not set
# connman-connman-vpnd is not set
# connman-devel is not set
# connman-docs is not set
# connman-extension-ivi is not set
# connman-extension-tv is not set
# connman-plugin-ipsec is not set
# connman-plugin-openvpn is not set
# connman-test is not set
# contacts-service is not set
# contacts-service-devel is not set
# contacts-service-test is not set
# context-agent is not set
# context-app-history is not set
# context-app-history-devel is not set
# context-app-history-dummy is not set
# context-common is not set
# context-common-devel is not set
# context-job-scheduler is not set
# context-job-scheduler-devel is not set
# context-job-scheduler-dummy is not set
# context-sensor-recorder is not set
# context-sensor-recorder-devel is not set
# context-sensor-recorder-dummy is not set
# context-service is not set
# context-store is not set
# context-store-devel is not set
# context-store-dummy is not set
# cordova-api is not set
# coreclr is not set
# coreclr-devel is not set
# coreclr-extra is not set
# coreclr-test is not set
# corefx-managed is not set
# corefx-managed-ref is not set
# corefx-native is not set
# corefx-test is not set
# coregl is not set
# coregl-devel is not set
# crash-worker is not set
# crash-worker-tests is not set
# createrepo is not set
# crosswalk-tizen is not set
# crosswalk-tizen-extension-circle is not set
# cryptsetup is not set
# cryptsetup-devel is not set
# cryptsetup-doc is not set
# cryptsetup-locale is not set
# csapi-tizenfx is not set
# csapi-tizenfx-common is not set
# csapi-tizenfx-debug is not set
# csapi-tizenfx-dummy is not set
# csapi-tizenfx-full is not set
# csapi-tizenfx-ivi is not set
# csapi-tizenfx-mobile is not set
# csapi-tizenfx-mobile-emul is not set
# csapi-tizenfx-nuget is not set
# csapi-tizenfx-tv is not set
# csapi-tizenfx-wearable is not set
# cscope is not set
# cscope-docs is not set
# csr-framework is not set
# csr-framework-devel is not set
# csr-framework-engine-devel is not set
# csr-framework-test is not set
# ctags is not set
# ctags-docs is not set
# curl is not set
# cyad is not set
# cynara is not set
# cynara-db-migration is not set
# cynara-devel is not set
# cynara-tests is not set
# dali is not set
# dali-adaptor is not set
# dali-adaptor-cxx03 is not set
# dali-adaptor-dali-feedback-plugin is not set
# dali-adaptor-dali-feedback-plugin-cxx03 is not set
# dali-adaptor-devel is not set
# dali-adaptor-devel-cxx03 is not set
# dali-adaptor-integration-devel is not set
# dali-adaptor-integration-devel-cxx03 is not set
# dali-adaptor-profile_common is not set
# dali-adaptor-profile_common-cxx03 is not set
# dali-adaptor-profile_ivi is not set
# dali-adaptor-profile_ivi-cxx03 is not set
# dali-adaptor-profile_mobile is not set
# dali-adaptor-profile_mobile-cxx03 is not set
# dali-adaptor-profile_tv is not set
# dali-adaptor-profile_tv-cxx03 is not set
# dali-adaptor-profile_wearable is not set
# dali-adaptor-profile_wearable-cxx03 is not set
# dali-csharp-binder is not set
# dali-csharp-binder-devel is not set
# dali-cxx03 is not set
# dali-devel is not set
# dali-devel-cxx03 is not set
# dali-extension is not set
# dali-extension-devel is not set
# dali-extension-key-extension is not set
# dali-extension-video-player-plugin is not set
# dali-integration-devel is not set
# dali-integration-devel-cxx03 is not set
# dali-toolkit is not set
# dali-toolkit-cxx03 is not set
# dali-toolkit-devel is not set
# dali-toolkit-resources_1920x1080 is not set
# dali-toolkit-resources_360x360 is not set
# dali-toolkit-resources_480x800 is not set
# dali-toolkit-resources_720x1280 is not set
# data-control is not set
# data-control-devel is not set
# data-provider-master is not set
# dbus is not set
# dbus-devel is not set
# dbus-glib is not set
# dbus-glib-devel is not set
# dbus-glib-docs is not set
# dbus-libs is not set
# dbus-libs-extension-kdbus is not set
# dbus-python is not set
# dbus-python-devel is not set
# dbus-tests is not set
# dcm-service is not set
# dcm-service-devel is not set
# default-ac-domains is not set
# default-fonts-fc-sdk is not set
# default-fonts-sdk is not set
# deltarpm is not set
# desktop-file-utils is not set
# desktop-skin is not set
# device-certificate-manager is not set
# device-certificate-manager-devel is not set
# device-certificate-manager-tests is not set
# device-manager-plugin-artik is not set
# device-manager-plugin-emul is not set
# device-manager-plugin-exynos3250 is not set
# device-manager-plugin-exynos5433 is not set
# device-manager-plugin-exynos7270 is not set
# device-manager-plugin-odroid is not set
# device-manager-plugin-rpi3 is not set
# device-manager-plugin-sc7730 is not set
# device-mapper is not set
# device-mapper-devel is not set
# device-policy-manager is not set
# device-policy-manager-devel is not set
# device-policy-manager-test is not set
# deviced is not set
# deviced-auto-test is not set
# deviced-profile_common is not set
# deviced-profile_ivi is not set
# deviced-profile_mobile is not set
# deviced-profile_tv is not set
# deviced-profile_wearable is not set
# deviced-tools is not set
# dlog-doc is not set
# dlog-tests is not set
# dlogbackend-logger is not set
# dlogutil is not set
# dnsmasq is not set
# docbook-xsl-stylesheets is not set
# docbook_4 is not set
# dos2unix is not set
# dosfstools is not set
# dosfstools-docs is not set
# dotnet-build-tools is not set
# dotnet-launcher is not set
# download-provider is not set
# download-provider-devel is not set
# doxygen is not set
# doxygen-docs is not set
# dpm-application is not set
# dpm-auth is not set
# dpm-bluetooth is not set
# dpm-browser is not set
# dpm-email is not set
# dpm-location is not set
# dpm-media is not set
# dpm-security is not set
# dpm-storage is not set
# dpm-telephony is not set
# dpm-usb is not set
# dpm-wifi is not set
# dpm-zone is not set
# drm-service-core-tizen is not set
# drm-service-core-tizen-devel is not set
# e-mod-tizen-devicemgr is not set
# e-mod-tizen-effect is not set
# e-mod-tizen-eom is not set
# e-mod-tizen-gesture is not set
# e-mod-tizen-keyrouter is not set
# e-mod-tizen-processmgr is not set
# e-mod-tizen-screen-reader is not set
# e-mod-tizen-wl-textinput is not set
# e-mod-tizen-wm-policy is not set
# e-tizen-data-profile_common is not set
# e-tizen-data-profile_mobile is not set
# e-tizen-data-profile_tv is not set
# e-tizen-data-profile_wearable is not set
# e-tizen-testcase is not set
# ecore is not set
# ecore-audio is not set
# ecore-audio-devel is not set
# ecore-avahi is not set
# ecore-avahi-devel is not set
# ecore-buffer is not set
# ecore-buffer-devel is not set
# ecore-con is not set
# ecore-con-devel is not set
# ecore-core is not set
# ecore-core-devel is not set
# ecore-devel is not set
# ecore-drm is not set
# ecore-drm-devel is not set
# ecore-evas is not set
# ecore-evas-devel is not set
# ecore-fb is not set
# ecore-fb-devel is not set
# ecore-file is not set
# ecore-file-devel is not set
# ecore-imf is not set
# ecore-imf-devel is not set
# ecore-imf-evas is not set
# ecore-imf-evas-devel is not set
# ecore-input is not set
# ecore-input-devel is not set
# ecore-input-evas is not set
# ecore-input-evas-devel is not set
# ecore-ipc is not set
# ecore-ipc-devel is not set
# ecore-wayland is not set
# ecore-wayland-devel is not set
# ecryptfs-utils is not set
# ector is not set
# ector-devel is not set
# edbus is not set
# edbus-devel is not set
# edje is not set
# edje-devel is not set
# edje-tools is not set
# eet is not set
# eet-devel is not set
# eet-tools is not set
# eeze is not set
# eeze-devel is not set
# efl is not set
# efl-config is not set
# efl-devel is not set
# efl-extension is not set
# efl-extension-devel is not set
# efl-misc-profile_common is not set
# efl-misc-profile_ivi is not set
# efl-misc-profile_mobile is not set
# efl-misc-profile_tv is not set
# efl-misc-profile_wearable is not set
# efl-modules-profile_common is not set
# efl-modules-profile_ivi is not set
# efl-modules-profile_mobile is not set
# efl-modules-profile_tv is not set
# efl-modules-profile_wearable is not set
# efl-theme-tizen-common is not set
# efl-theme-tizen-common-devel is not set
# efl-theme-tizen-mobile is not set
# efl-theme-tizen-mobile-devel is not set
# efl-theme-tizen-tv is not set
# efl-theme-tizen-tv-devel is not set
# efl-theme-tizen-wearable is not set
# efreet is not set
# efreet-devel is not set
# eina is not set
# eina-devel is not set
# eina-tools is not set
# eio is not set
# eio-devel is not set
# ejdb is not set
# ejdb-bin is not set
# ejdb-devel is not set
# ejdb-docs is not set
# eldbus is not set
# eldbus-devel is not set
# elementary is not set
# elementary-devel is not set
# elementary-locale is not set
# elementary-theme is not set
# elementary-tizen is not set
# elementary-tools is not set
# elm-sharp-theme-common is not set
# elm-sharp-theme-mobile is not set
# elm-sharp-theme-tv is not set
# elm-sharp-theme-wearable is not set
# elocation is not set
# elocation-devel is not set
# elua is not set
# elua-devel is not set
# email-service is not set
# email-service-devel is not set
# email-service-test is not set
# embryo is not set
# embryo-devel is not set
# emile is not set
# emile-devel is not set
# emotion is not set
# emotion-devel is not set
# enlightenment is not set
# enlightenment-devel is not set
# eo is not set
# eo-devel is not set
# eolian is not set
# eolian-devel is not set
# esd is not set
# esd-devel is not set
# ethumb is not set
# ethumb-devel is not set
# evas is not set
# evas-devel is not set
# eventsystem is not set
# eventsystem-devel is not set
# expect is not set
# expect-devel is not set
# factory-reset is not set
# faultd is not set
# faultd-docs is not set
# faultd-test-programs is not set
# feedbackd is not set
# feedbackd-profile_mobile is not set
# feedbackd-profile_wearable is not set
# fido-asm is not set
# fido-asm-devel is not set
# fido-client is not set
# fido-client-devel is not set
# fido_bt_roaming_agent is not set
# fido_silent is not set
# flac is not set
# flac-devel is not set
# fontconfig is not set
# fontconfig-devel is not set
# freealut is not set
# freealut-devel is not set
# freetype2-devel is not set
# fribidi is not set
# fribidi-devel is not set
# fsck-msdos is not set
# fuse is not set
# fuse-devel is not set
# fuse-docs is not set
# fuzz-force-options is not set
# gccmakedep is not set
# gdb is not set
# gdb-devel is not set
# gdb-docs is not set
# gdb-locale is not set
# gdb-server is not set
# geofence-server is not set
# giflib is not set
# giflib-devel is not set
# giflib-utils is not set
# gio-branding-upstream is not set
# girepository is not set
# glib-networking is not set
# glib-networking-locale is not set
# glib2-devel is not set
# glib2-devel-static is not set
# glib2-locale is not set
# glib2-tests is not set
# glib2-tools is not set
# glslang is not set
# gmime is not set
# gmime-devel is not set
# gmock is not set
# gmock-devel is not set
# gnome-common is not set
# gnutls is not set
# gobject-introspection is not set
# gobject-introspection-devel is not set
# gobject-introspection-docs is not set
# gpg2 is not set
# gpgme is not set
# gptfdisk is not set
# gptfdisk-fixparts is not set
# gssdp is not set
# gssdp-devel is not set
# gst-libav is not set
# gst-plugins-bad is not set
# gst-plugins-bad-devel is not set
# gst-plugins-bad-locale is not set
# gst-plugins-base is not set
# gst-plugins-base-devel is not set
# gst-plugins-base-extension-adder is not set
# gst-plugins-base-locale is not set
# gst-plugins-camera-n4 is not set
# gst-plugins-good is not set
# gst-plugins-good-locale is not set
# gst-plugins-tizen is not set
# gst-plugins-tizen-extension-TM1 is not set
# gst-plugins-ugly is not set
# gst-plugins-video-dec is not set
# gst-plugins-video-enc is not set
# gst-rtsp-server is not set
# gstreamer-devel is not set
# gstreamer-locale is not set
# gstreamer-utils is not set
# gtest is not set
# gtest-devel is not set
# gtk-doc is not set
# gum-utils is not set
# gumd is not set
# gumd-doc is not set
# gumd-profile_wearable is not set
# hardlink is not set
# harfbuzz-devel is not set
# harfbuzz-tools is not set
# hash-signer is not set
# heremaps-uc-launcher is not set
# hwdata is not set
# hwdata-ivi is not set
# hyphen-devel is not set
# hyphen-tools is not set
# i18ninfo is not set
# icu is not set
# image-configurations is not set
# iniparser is not set
# iniparser-devel is not set
# initrd is not set
# initrd-fota is not set
# initrd-recovery is not set
# iotcon is not set
# iotcon-devel is not set
# iotcon-test is not set
# iotivity is not set
# iotivity-devel is not set
# iotivity-service is not set
# iotivity-test is not set
# iproute2 is not set
# iproute2-devel is not set
# iproute2-ext is not set
# iptables is not set
# iptables-devel is not set
# iptables-docs is not set
# iputils is not set
# ise-default is not set
# ise-default-profile_common is not set
# ise-default-profile_ivi is not set
# ise-default-profile_mobile is not set
# ise-default-profile_tv is not set
# ise-default-profile_wearable is not set
# ise-default-profile_wearable-extension-circle is not set
# ise-default-profile_wearable-extension-rectangle is not set
# ise-engine-anthy is not set
# ise-engine-default is not set
# ise-engine-glm is not set
# ise-engine-hangul is not set
# ise-engine-sunpinyin is not set
# ise-engine-sunpinyin-devel is not set
# ise-engine-tables is not set
# ise-engine-tables-additional is not set
# ise-engine-tables-zh is not set
# isf is not set
# isf-config-common is not set
# isf-config-mobile is not set
# isf-config-tv is not set
# isf-config-wearable is not set
# isf-devel is not set
# iso-codes is not set
# iso-codes-devel is not set
# iso_ent is not set
# json-glib-devel is not set
# json-glib-locale is not set
# jsoncpp is not set
# jsoncpp-devel is not set
# jsoncpp-doc is not set
# jsontool is not set
# kbd is not set
# kbd-docs is not set
# kbd-misc is not set
# kernel-devel-3.10-sc7730 is not set
# kernel-devel-3.4-exynos3250 is not set
# kernel-headers-3.10-sc7730 is not set
# kernel-headers-3.4-exynos3250 is not set
# kernel-headers-exynos7270-tw2 is not set
# key-manager is not set
# key-manager-pam-plugin is not set
# key-manager-ta is not set
# key-manager-ta-devel is not set
# key-manager-ta-serialization is not set
# key-manager-ta-serialization-devel is not set
# key-manager-tests is not set
# keyutils is not set
# keyutils-devel is not set
# kickstarter is not set
# klay is not set
# klay-devel is not set
# klay-test is not set
# kmod is not set
# kmod-compat is not set
# kmod-docs is not set
# kpartx is not set
# krate is not set
# krb5 is not set
# krb5-devel is not set
# launchpad is not set
# launchpad-devel is not set
# launchpad-loader is not set
# lbs-plugin-gps-artik5 is not set
# lbs-plugin-gps-artik7 is not set
# lbs-plugin-gps-rpi3 is not set
# lbs-server is not set
# lbs-server-plugin-devel is not set
# lbs-server-plugin-replay is not set
# leveldb-devel is not set
# lib7zip is not set
# lib7zip-devel is not set
# libFuzzer is not set
# libaccount-service is not set
# libaccount-service-devel is not set
# libaio is not set
# libaio-devel is not set
# libalarm is not set
# libalarm-devel is not set
# libaskuser-notification-common is not set
# libasound is not set
# libasound-devel is not set
# libaspell is not set
# libassuan is not set
# libassuan-devel is not set
# libatk is not set
# libatk-bridge-2_0-0 is not set
# libatspi0 is not set
# libauth-fw-client is not set
# libauth-fw-client-admin is not set
# libauth-fw-client-devel is not set
# libavcodec is not set
# libavcodec-devel is not set
# libavfilter is not set
# libavfilter-devel is not set
# libavformat is not set
# libavformat-devel is not set
# libavtools is not set
# libavutil is not set
# libavutil-devel is not set
# libbluetooth is not set
# libbluetooth-share is not set
# libbluetooth-share-devel is not set
# libbmp is not set
# libbmp-devel is not set
# libbmp-tool is not set
# libcairo is not set
# libcairo-gobject is not set
# libcairo-script-interpreter is not set
# libcalendar-service is not set
# libcall-manager is not set
# libcall-manager-devel is not set
# libcap-ng is not set
# libcap-ng-devel is not set
# libcap-ng-utils is not set
# libcert-checker-client is not set
# libcert-checker-common is not set
# libconfig is not set
# libconfig-devel is not set
# libcontacts-service is not set
# libcore-sync-client is not set
# libcore-sync-client-devel is not set
# libcryptsvc is not set
# libcryptsvc-devel is not set
# libcryptsvc-test is not set
# libcsr-framework-client is not set
# libcsr-framework-common is not set
# libcurl is not set
# libcurl-devel is not set
# libcurl-extension-dlp is not set
# libcynara-admin is not set
# libcynara-agent is not set
# libcynara-client is not set
# libcynara-commons is not set
# libcynara-creds-commons is not set
# libcynara-creds-dbus is not set
# libcynara-creds-dbus-devel is not set
# libcynara-creds-gdbus is not set
# libcynara-creds-gdbus-devel is not set
# libcynara-creds-self is not set
# libcynara-creds-socket is not set
# libcynara-monitor is not set
# libcynara-session is not set
# libdatrie is not set
# libdatrie-devel is not set
# libdbuspolicy is not set
# libdbuspolicy-devel is not set
# libdbuspolicy-tests is not set
# libdevice-node is not set
# libdevice-node-devel is not set
# libdeviced is not set
# libdeviced-devel is not set
# libdevmapper is not set
# libdivsufsort is not set
# libdivsufsort-devel is not set
# libdlog is not set
# libdlog-devel is not set
# libdns_sd is not set
# libdpm is not set
# libdpm-application-devel is not set
# libdpm-auth-devel is not set
# libdpm-bluetooth-devel is not set
# libdpm-browser-devel is not set
# libdpm-devel is not set
# libdpm-email-devel is not set
# libdpm-location-devel is not set
# libdpm-media-devel is not set
# libdpm-security-devel is not set
# libdpm-storage-devel is not set
# libdpm-telephony-devel is not set
# libdpm-usb-devel is not set
# libdpm-wifi-devel is not set
# libdpm-zone-devel is not set
# libdrm is not set
# libdrm-devel is not set
# libdrm-tools is not set
# libdrm-tools-exynos is not set
# libecryptfs is not set
# libecryptfs-devel is not set
# libecryptfs-python is not set
# libedit is not set
# libedit-devel is not set
# libeom is not set
# libeom-devel is not set
# libeom-server is not set
# libeom-server-devel is not set
# libevdev is not set
# libevdev-devel is not set
# libevent is not set
# libevent-devel is not set
# libexif is not set
# libexif-devel is not set
# libexynos-common is not set
# libexynos-common-devel is not set
# libfeedback is not set
# libfeedback-devel is not set
# libflac is not set
# libfreetype is not set
# libfuse is not set
# libgbm is not set
# libgbm-devel is not set
# libgeofence-dbus is not set
# libgeofence-dbus-devel is not set
# libgio is not set
# libgio-extension-kdbus is not set
# libgirepository is not set
# libglib is not set
# libgmodule is not set
# libgnutls is not set
# libgnutls-devel is not set
# libgnutlsxx is not set
# libgnutlsxx-devel is not set
# libgobject is not set
# libgpgme is not set
# libgpgme-devel is not set
# libgthread is not set
# libgudev is not set
# libgudev-devel is not set
# libgum is not set
# libgum-devel is not set
# libhangul is not set
# libhangul-devel is not set
# libharfbuzz is not set
# libhogweed is not set
# libhyphen is not set
# libicu is not set
# libicu-devel is not set
# libinput is not set
# libinput-devel is not set
# libiri is not set
# libiri-devel is not set
# libjpeg is not set
# libjpeg-devel is not set
# libjpeg-turbo is not set
# libjpeg-turbo-docs is not set
# libjson is not set
# libjson-devel is not set
# libjson-glib is not set
# libkey-manager-client is not set
# libkey-manager-client-devel is not set
# libkey-manager-common is not set
# libkeyutils is not set
# libkmod is not set
# libkmod-devel is not set
# libkms is not set
# libkrate is not set
# libkrate-devel is not set
# libksba is not set
# libksba-devel is not set
# liblazymount is not set
# liblazymount-devel is not set
# liblbs-dbus is not set
# liblbs-dbus-devel is not set
# liblbs-location is not set
# liblbs-location-devel is not set
# libleveldb is not set
# libmedia-service is not set
# libmedia-service-devel is not set
# libmedia-thumbnail is not set
# libmedia-thumbnail-devel is not set
# libmedia-utils is not set
# libmedia-utils-devel is not set
# libmm-camcorder is not set
# libmm-camcorder-devel is not set
# libmm-common is not set
# libmm-common-devel is not set
# libmm-evas-renderer is not set
# libmm-evas-renderer-devel is not set
# libmm-fileinfo is not set
# libmm-fileinfo-devel is not set
# libmm-fileinfo-tool is not set
# libmm-imgp-gstcs is not set
# libmm-log-devel is not set
# libmm-player is not set
# libmm-player-devel is not set
# libmm-radio is not set
# libmm-radio-devel is not set
# libmm-session is not set
# libmm-session-devel is not set
# libmm-sound is not set
# libmm-sound-devel is not set
# libmm-sound-sdk-devel is not set
# libmm-sound-tool is not set
# libmm-streamrecorder is not set
# libmm-streamrecorder-devel is not set
# libmm-transcode is not set
# libmm-transcode-devel is not set
# libmm-transcode-tool is not set
# libmm-utility is not set
# libmm-utility-devel is not set
# libmm-utility-tool is not set
# libmm-wfd is not set
# libmm-wfd-devel is not set
# libmnl is not set
# libmnl-devel is not set
# libmtdev is not set
# libmtp is not set
# libmtp-devel is not set
# libnet-client is not set
# libnet-client-devel is not set
# libnetfilter_queue is not set
# libnetfilter_queue-devel is not set
# libnettle is not set
# libnettle-devel is not set
# libnfnetlink is not set
# libnfnetlink-devel is not set
# libnl2 is not set
# libnl2-devel is not set
# libnl3 is not set
# libnl3-cli is not set
# libnl3-devel is not set
# libnsbmp is not set
# libnsbmp-devel is not set
# libnsd-dns-sd is not set
# libnsd-ssdp is not set
# libnss-security-manager is not set
# liboauth is not set
# liboauth-devel is not set
# libode is not set
# libode-devel is not set
# libogg is not set
# libogg-devel is not set
# libomxil-e3250-v4l2 is not set
# libomxil-e3250-v4l2-devel is not set
# libomxil-e54xx-devel is not set
# libomxil-e7270-v4l2 is not set
# libomxil-e7270-v4l2-devel is not set
# libomxil-vc4-devel is not set
# libomxil-vc4-utils is not set
# liborc is not set
# libpcap is not set
# libpcap-devel is not set
# libpcap-docs is not set
# libpciaccess is not set
# libpciaccess-devel is not set
# libpepper-efl is not set
# libphonenumber is not set
# libphonenumber-devel is not set
# libpipeline is not set
# libpipeline-devel is not set
# libpng is not set
# libpng-devel is not set
# libprotobuf-lite9 is not set
# libprotobuf9 is not set
# libprotoc9 is not set
# libpspell is not set
# libpth is not set
# libpth-devel is not set
# libpulse is not set
# libpulse-devel is not set
# libpulse-mainloop-glib is not set
# libpush is not set
# libpush-devel is not set
# libpyglib-gi-python is not set
# libre2 is not set
# librua is not set
# librua-devel is not set
# librua-test is not set
# libscl-common is not set
# libscl-common-devel is not set
# libscl-core is not set
# libscl-core-devel is not set
# libscl-core-profile_wearable is not set
# libscl-ui is not set
# libscl-ui-devel is not set
# libscreen_connector_provider is not set
# libscreen_connector_provider-devel is not set
# libscreen_connector_watcher is not set
# libscreen_connector_watcher-devel is not set
# libscreen_connector_watcher_evas is not set
# libscreen_connector_watcher_evas-devel is not set
# libsecurity-manager-client is not set
# libsecurity-manager-client-devel is not set
# libsensord is not set
# libsensord-devel is not set
# libshortcut is not set
# libshortcut-devel is not set
# libslp-db-util is not set
# libslp-db-util-devel is not set
# libsndfile is not set
# libsndfile-devel is not set
# libsolv is not set
# libsolv-devel is not set
# libsolv-tools is not set
# libsoup is not set
# libsoup-devel is not set
# libsoup-locale is not set
# libspeex is not set
# libspeexdsp is not set
# libstorage is not set
# libstorage-devel is not set
# libswscale is not set
# libswscale-devel is not set
# libsystemd is not set
# libtapi is not set
# libtapi-devel is not set
# libtasn1 is not set
# libtasn1-devel is not set
# libtasn1-docs is not set
# libtasn1-tools is not set
# libtbm is not set
# libtbm-devel is not set
# libtbm-dumb is not set
# libtbm-exynos is not set
# libtbm-exynos-tgm is not set
# libtbm-nexell is not set
# libtbm-sprd is not set
# libtbm-vc4 is not set
# libtbm-vigs is not set
# libtcore is not set
# libtcore-devel is not set
# libtdm is not set
# libtdm-client is not set
# libtdm-client-devel is not set
# libtdm-devel is not set
# libtdm-drm is not set
# libtdm-exynos is not set
# libtdm-exynos-deconfb is not set
# libtdm-nexell is not set
# libtdm-sprd is not set
# libtdm-tools is not set
# libtdm-vc4 is not set
# libtfeature is not set
# libtfeature-devel is not set
# libtheora is not set
# libtheora-devel is not set
# libtiff is not set
# libtiff-devel is not set
# libtota is not set
# libtota-devel is not set
# libtpl-egl is not set
# libtpl-egl-devel is not set
# libtracker is not set
# libtracker-devel is not set
# libtzplatform-config is not set
# libtzplatform-config-devel is not set
# libulockmgr is not set
# libusb is not set
# libusb-devel is not set
# libusbgx is not set
# libusbgx-devel is not set
# libusbgx-examples is not set
# libuw-imap-toolkit is not set
# libuw-imap-toolkit-devel is not set
# libv4l is not set
# libv4l-devel is not set
# libvorbis is not set
# libvorbis-devel is not set
# libvorbisenc is not set
# libvorbisfile is not set
# libvpx is not set
# libvpx-devel is not set
# libwayland-client is not set
# libwayland-cursor is not set
# libwayland-egl is not set
# libwayland-egl-devel is not set
# libwayland-extension-client is not set
# libwayland-extension-server is not set
# libwayland-server is not set
# libwayland-tbm-client is not set
# libwayland-tbm-devel is not set
# libwayland-tbm-server is not set
# libwbxml2 is not set
# libwbxml2-devel is not set
# libwebappenc is not set
# libwebappenc-devel is not set
# libwebappenc-test is not set
# libwebsockets is not set
# libwebsockets-devel is not set
# libwidget_service is not set
# libwidget_service-devel is not set
# libwidget_viewer is not set
# libwidget_viewer-devel is not set
# libwidget_viewer_dali is not set
# libwidget_viewer_dali-devel is not set
# libwidget_viewer_evas is not set
# libwidget_viewer_evas-devel is not set
# libxkbcommon is not set
# libxkbcommon-devel is not set
# libyaml is not set
# libyaml-devel is not set
# libzip is not set
# libzip-devel is not set
# libzip-tools is not set
# libzypp is not set
# libzypp-devel is not set
# libzypp-locale is not set
# license-manager is not set
# linux-3.10-sc7730_tizen_tm1 is not set
# linux-3.4-exynos3250_tizen_wc1 is not set
# linux-exynos7270-tw2-aarch64 is not set
# linux-firmware is not set
# linux-firmware-ivi is not set
# linux-kernel-license is not set
# location-geofence-server is not set
# location-lbs-server is not set
# log-syslog is not set
# lrzsz is not set
# lsof is not set
# lsof-docs is not set
# ltrace is not set
# lttng-ust is not set
# lttng-ust-devel is not set
# lzop is not set
# lzop-docs is not set
# man-db is not set
# man-db-docs is not set
# man-db-locale is not set
# manifest-parser is not set
# manifest-parser-devel is not set
# manifest-parser-examples is not set
# manifest-parser-tests is not set
# maps-plugin-here is not set
# maps-plugin-mapzen is not set
# maps-plugin-mapzen-devel is not set
# mdnsresponder is not set
# mdnsresponder-devel is not set
# media-server is not set
# media-server-service-extension is not set
# media-thumbnail-server is not set
# mediacontroller is not set
# memps is not set
# mesa is not set
# message-port is not set
# message-port-devel is not set
# meta-common is not set
# meta-generic is not set
# meta-generic-adaptation is not set
# meta-mobile is not set
# meta-tv is not set
# meta-wearable is not set
# mic is not set
# mic-bootstrap-x86-arm is not set
# minicontrol is not set
# minicontrol-devel is not set
# mm-hal-interface is not set
# mmfw-sysconf-target-hawkp is not set
# mmfw-sysconf-target-n4 is not set
# mmfw-sysconf-target-tm1 is not set
# mmfw-sysconf-target-tw1 is not set
# mmfw-sysconf-target-tw2 is not set
# mmfw-sysconf-target-u3 is not set
# mms-plugin is not set
# mmsvc-camera is not set
# mmsvc-camera-devel is not set
# mmsvc-player is not set
# mmsvc-player-devel is not set
# mmsvc-recorder is not set
# mmsvc-recorder-devel is not set
# mobileap-agent is not set
# mobileap-agent-extension-TM1 is not set
# mobileap-agent-extension-headed is not set
# model-config-artik is not set
# model-config-artik-iot_core is not set
# model-config-b2 is not set
# model-config-default is not set
# model-config-emulator-profile_common is not set
# model-config-emulator-profile_ivi is not set
# model-config-emulator-profile_mobile is not set
# model-config-emulator-profile_tv is not set
# model-config-emulator-profile_wearable is not set
# model-config-generic is not set
# model-config-n4 is not set
# model-config-rpi3-profile_common is not set
# model-config-rpi3-profile_common_headless is not set
# model-config-rpi3-profile_common_iot_core is not set
# model-config-rpi3-profile_tv is not set
# model-config-tm1 is not set
# model-config-tw1 is not set
# model-config-tw2 is not set
# model-config-xu3-profile_common is not set
# model-config-xu3-profile_ivi is not set
# model-config-xu3-profile_tv is not set
# mscorlib is not set
# msg-manager is not set
# msg-service is not set
# msg-service-devel is not set
# mtdev is not set
# mtdev-devel is not set
# mtools is not set
# mtools-docs is not set
# mtp-initiator is not set
# mtp-responder is not set
# multipath-tools is not set
# murphy is not set
# murphy-devel is not set
# murphy-doc is not set
# murphy-glib is not set
# murphy-glib-devel is not set
# murphy-tests is not set
# mused is not set
# my-account-profile_wearable is not set
# nasm is not set
# nasm-doc is not set
# net-config is not set
# net-config-plugin-telephony is not set
# net-config-profile_tv is not set
# net.netpopup is not set
# net.wifi-qs is not set
# nether is not set
# nettle is not set
# newfs-msdos is not set
# nfc-common-lib is not set
# nfc-common-lib-devel is not set
# nfc-manager is not set
# nfc-plugin-emul is not set
# nice-lad is not set
# nice-lad-docs is not set
# nice-lad-tests is not set
# nodejs is not set
# nodejs-devel is not set
# nodejs-npm is not set
# notification is not set
# notification-devel is not set
# nx-gst-meta is not set
# nx-gst-meta-devel is not set
# nx-video-api is not set
# nx-video-api-devel is not set
# oauth2 is not set
# oauth2-devel is not set
# obexd is not set
# ode is not set
# ode-dummy-ksp is not set
# ode-ksp-devel is not set
# ode-unit-tests is not set
# openal-soft is not set
# openal-soft-devel is not set
# opencore-amr is not set
# opencore-amr-devel is not set
# opencv is not set
# opencv-devel is not set
# openvpn is not set
# oprofile is not set
# oprofile-devel is not set
# oprofile-docs is not set
# oprofile-jit is not set
# optee-os is not set
# optee-os-ta is not set
# orc is not set
# org.tizen.accessibility-setting is not set
# org.tizen.alarm is not set
# org.tizen.app-selector-profile_mobile is not set
# org.tizen.app-selector-profile_wearable is not set
# org.tizen.apps is not set
# org.tizen.apptray-widget is not set
# org.tizen.asmui is not set
# org.tizen.bluetooth is not set
# org.tizen.bluetooth-share-ui is not set
# org.tizen.browser-profile_common is not set
# org.tizen.browser-profile_mobile is not set
# org.tizen.bt-syspopup-profile_wearable is not set
# org.tizen.calendar is not set
# org.tizen.call-setting is not set
# org.tizen.call-ui is not set
# org.tizen.callmgr-popup is not set
# org.tizen.camera-app is not set
# org.tizen.classic-watch is not set
# org.tizen.clock is not set
# org.tizen.contacts is not set
# org.tizen.crash-syspopup is not set
# org.tizen.download-manager is not set
# org.tizen.dpm-syspopup is not set
# org.tizen.email is not set
# org.tizen.fido-syspopup is not set
# org.tizen.fidosvcui is not set
# org.tizen.gallery is not set
# org.tizen.gps-syspopup is not set
# org.tizen.heremaps-uc is not set
# org.tizen.home is not set
# org.tizen.homescreen-efl is not set
# org.tizen.idle-clock-digital is not set
# org.tizen.image-viewer is not set
# org.tizen.indicator is not set
# org.tizen.infosquare is not set
# org.tizen.inputdelegator is not set
# org.tizen.inputdelegator-profile_common is not set
# org.tizen.inputdelegator-profile_mobile is not set
# org.tizen.inputdelegator-profile_tv is not set
# org.tizen.inputdelegator-profile_wearable is not set
# org.tizen.inputmethod-setting is not set
# org.tizen.inputmethod-setting-profile_common is not set
# org.tizen.inputmethod-setting-profile_mobile is not set
# org.tizen.inputmethod-setting-profile_wearable is not set
# org.tizen.inputmethod-setting-profile_wearable-extension-circle is not set
# org.tizen.inputmethod-setting-profile_wearable-extension-rectangle is not set
# org.tizen.installer is not set
# org.tizen.isf-kbd-mode-changer is not set
# org.tizen.kaskit is not set
# org.tizen.keyguard is not set
# org.tizen.krate-setup-wizard is not set
# org.tizen.live-tv is not set
# org.tizen.lockscreen is not set
# org.tizen.mediahub is not set
# org.tizen.memo is not set
# org.tizen.menu-screen is not set
# org.tizen.message is not set
# org.tizen.music-player is not set
# org.tizen.myfile is not set
# org.tizen.myplace is not set
# org.tizen.ode is not set
# org.tizen.overheat-syspopup is not set
# org.tizen.position-finder-server is not set
# org.tizen.powerkey-syspopup.mobile is not set
# org.tizen.powerkey-syspopup.wearable is not set
# org.tizen.privacy-setting-profile_mobile is not set
# org.tizen.privacy-setting-profile_wearable is not set
# org.tizen.quickpanel is not set
# org.tizen.screen-reader is not set
# org.tizen.screen-reader-extension-no-tapi is not set
# org.tizen.secure-erase is not set
# org.tizen.service-plugin-sample is not set
# org.tizen.setting is not set
# org.tizen.setting-homescreen is not set
# org.tizen.setting-location is not set
# org.tizen.setting-location-wearable is not set
# org.tizen.setting-notification is not set
# org.tizen.settings is not set
# org.tizen.settings-adid is not set
# org.tizen.share-panel is not set
# org.tizen.simple-maps is not set
# org.tizen.simple-maps-tv is not set
# org.tizen.sketch is not set
# org.tizen.stt-engine-default is not set
# org.tizen.sys-lock is not set
# org.tizen.system-signal-sender is not set
# org.tizen.system-syspopup.mobile is not set
# org.tizen.system-syspopup.wearable is not set
# org.tizen.task-mgr is not set
# org.tizen.telephony-syspopup is not set
# org.tizen.thing-toggler is not set
# org.tizen.tts-engine-default is not set
# org.tizen.tv-volume is not set
# org.tizen.ug-gallery-efl is not set
# org.tizen.ug-lockscreen-options is not set
# org.tizen.ug-myfile-efl is not set
# org.tizen.videos is not set
# org.tizen.voice-control-panel is not set
# org.tizen.voice-setting is not set
# org.tizen.volume is not set
# org.tizen.w-call-setting is not set
# org.tizen.w-call-ui is not set
# org.tizen.w-clock-viewer is not set
# org.tizen.w-contacts is not set
# org.tizen.w-gallery is not set
# org.tizen.w-home is not set
# org.tizen.w-home-extension-circle is not set
# org.tizen.w-message is not set
# org.tizen.w-stopwatch is not set
# org.tizen.w-task-mgr is not set
# org.tizen.w-timer is not set
# org.tizen.w-wifi is not set
# org.tizen.wallpaper-ui-service is not set
# org.tizen.watch-setting is not set
# org.tizen.widget_viewer_sdk is not set
# org.tizen.wifi-direct-popup is not set
# org.tizen.windicator is not set
# org.tizen.worldclock-efl is not set
# org.tizen.xahome is not set
# org.tizen.xamediahub is not set
# package-groups is not set
# pacrunner is not set
# pacrunner-libproxy is not set
# pacrunner-libproxy-devel is not set
# pacrunner-proxy-tools is not set
# pacrunner-test is not set
# parted is not set
# parted-devel is not set
# parted-docs is not set
# parted-locale is not set
# pass is not set
# pass-hal-devel is not set
# pass-hal-standard is not set
# pass-hal-tm1 is not set
# pass-hal-tm2 is not set
# pass-hal-tw2 is not set
# pattern-tools is not set
# pbzip2 is not set
# pepper is not set
# pepper-dali is not set
# pepper-dali-devel is not set
# pepper-desktop-shell is not set
# pepper-desktop-shell-devel is not set
# pepper-devel is not set
# pepper-doctor is not set
# pepper-drm is not set
# pepper-drm-devel is not set
# pepper-evdev is not set
# pepper-evdev-devel is not set
# pepper-fbdev is not set
# pepper-fbdev-devel is not set
# pepper-keyrouter is not set
# pepper-keyrouter-devel is not set
# pepper-libinput is not set
# pepper-libinput-devel is not set
# pepper-render is not set
# pepper-render-devel is not set
# pepper-samples is not set
# pepper-tdm is not set
# pepper-tdm-devel is not set
# pepper-wayland is not set
# pepper-wayland-devel is not set
# pepper-xkb is not set
# pepper-xkb-devel is not set
# peripheral-bus is not set
# perl-Error is not set
# perl-Net-DBus is not set
# perl-Switch is not set
# perl-WWW-Curl is not set
# perl-XML-Simple is not set
# perl-XML-Twig is not set
# perl-YAML is not set
# perl-solv is not set
# phonenumber-utils is not set
# phonenumber-utils-devel is not set
# phonenumber-utils-test is not set
# php is not set
# php-bcmath is not set
# php-bz2 is not set
# php-calendar is not set
# php-ctype is not set
# php-curl is not set
# php-dba is not set
# php-devel is not set
# php-dom is not set
# php-exif is not set
# php-fileinfo is not set
# php-ftp is not set
# php-gd is not set
# php-gettext is not set
# php-gmp is not set
# php-iconv is not set
# php-intl is not set
# php-json is not set
# php-mbstring is not set
# php-openssl is not set
# php-pcntl is not set
# php-pear is not set
# php-phar is not set
# php-posix is not set
# php-readline is not set
# php-shmop is not set
# php-soap is not set
# php-sockets is not set
# php-sysvmsg is not set
# php-sysvsem is not set
# php-sysvshm is not set
# php-tokenizer is not set
# php-wddx is not set
# php-xmlreader is not set
# php-xmlrpc is not set
# php-xmlwriter is not set
# php-xsl is not set
# php-zip is not set
# php-zlib is not set
# pims-ipc is not set
# pims-ipc-devel is not set
# pixman is not set
# pixman-devel is not set
# pkgmgr is not set
# pkgmgr-client is not set
# pkgmgr-client-devel is not set
# pkgmgr-info is not set
# pkgmgr-info-devel is not set
# pkgmgr-info-parser is not set
# pkgmgr-info-parser-devel is not set
# pkgmgr-installer is not set
# pkgmgr-installer-devel is not set
# pkgmgr-server is not set
# pkgmgr-tool is not set
# pkgmgr-types-devel is not set
# powertop is not set
# powertop-docs is not set
# powertop-locale is not set
# prelink is not set
# prelink-docs is not set
# privacy-guard-client is not set
# privacy-guard-client-devel is not set
# privacy-guard-server is not set
# privacy-guard-server-devel is not set
# privilege-checker is not set
# privilege-info is not set
# privilege-info-devel is not set
# privilege-verifier is not set
# protobuf-devel is not set
# psmisc is not set
# psmisc-docs is not set
# pubkey-pinning is not set
# pubkey-pinning-deprecated is not set
# pubkey-pinning-devel is not set
# pubkey-pinning-devel-deprecated is not set
# pubkey-pinning-ui is not set
# pulseaudio is not set
# pulseaudio-cascaded-setup is not set
# pulseaudio-config is not set
# pulseaudio-docs is not set
# pulseaudio-locale is not set
# pulseaudio-module-augment-properties is not set
# pulseaudio-module-bluetooth is not set
# pulseaudio-module-dbus-protocol is not set
# pulseaudio-module-devel is not set
# pulseaudio-module-raop is not set
# pulseaudio-module-switch-on-connect is not set
# pulseaudio-modules-tizen is not set
# pulseaudio-realtime-scheduling is not set
# pulseaudio-utils is not set
# pulseaudio-vala-bindings is not set
# push-bin is not set
# push-tool is not set
# pygobject is not set
# pygobject-codegen is not set
# pygobject-devel is not set
# pygobject-doc is not set
# python-Cheetah is not set
# python-M2Crypto is not set
# python-MarkupSafe is not set
# python-PyYAML is not set
# python-ZSI is not set
# python-argparse is not set
# python-cairo is not set
# python-cairo-devel is not set
# python-coverage is not set
# python-cython is not set
# python-deltarpm is not set
# python-distribute is not set
# python-funcsigs is not set
# python-gobject is not set
# python-gobject-cairo is not set
# python-gobject-devel is not set
# python-gobject-pygtkcompat is not set
# python-gpgme is not set
# python-iniparse is not set
# python-linecache2 is not set
# python-mako is not set
# python-mock is not set
# python-nose is not set
# python-pbr is not set
# python-pyOpenSSL is not set
# python-pycurl is not set
# python-requests is not set
# python-solv is not set
# python-sqlite is not set
# python-traceback2 is not set
# python-unittest2 is not set
# python-urlgrabber is not set
# python-zypp is not set
# re2-devel is not set
# re2c is not set
# reboot-param-helper is not set
# referenceassemblies-pcl is not set
# resourced is not set
# resourced-config-tv is not set
# resourced-headless is not set
# resourced-headless-common is not set
# resourced-headless-memory is not set
# resourced-headless-proc-usage is not set
# resourced-headless-test is not set
# resourced-light is not set
# rfkill is not set
# rfkill-docs is not set
# rsync is not set
# rsync-docs is not set
# sancov is not set
# sbc is not set
# sbc-devel is not set
# scons is not set
# sdbd is not set
# sdbd-devel is not set
# sdbd-profile_tv is not set
# security-config is not set
# security-config-profile_mobile is not set
# security-config-profile_wearable is not set
# security-manager is not set
# security-manager-policy is not set
# security-manager-tests is not set
# security-privilege-manager is not set
# security-privilege-manager-devel is not set
# security-privilege-manager-extension-mobile is not set
# security-privilege-manager-extension-tv is not set
# security-privilege-manager-extension-wearable is not set
# sensor-hal-devel is not set
# sensor-hal-tm1 is not set
# sensor-hal-tm2 is not set
# sensor-hal-tw1 is not set
# sensor-hal-tw2 is not set
# sensor-test is not set
# sensord is not set
# sensord-devel is not set
# sensord-dummy is not set
# service-adaptor is not set
# service-adaptor-devel is not set
# session-utils is not set
# sgml-common is not set
# sgml-skel is not set
# shared-mime-info is not set
# shared-mime-info-docs is not set
# shared-mime-info-locale is not set
# shared-mime-info-tools is not set
# smartcard-service is not set
# smartcard-service-common is not set
# smartcard-service-common-devel is not set
# smartreply is not set
# smartreply-devel is not set
# smartreply-service is not set
# sms-plugin is not set
# speex is not set
# speex-devel is not set
# squashfs is not set
# starter is not set
# starter-profile_common is not set
# starter-profile_mobile is not set
# starter-profile_wearable is not set
# stc-manager is not set
# stc-manager-plugin is not set
# storaged is not set
# storaged-module_block is not set
# storaged-module_storage is not set
# storaged-org.tizen.extended-sd is not set
# strace is not set
# strongswan is not set
# stt is not set
# stt-devel is not set
# stt-engine-devel is not set
# stt-file-devel is not set
# stt-setting-devel is not set
# svi-data is not set
# svi-data-profile_common is not set
# svi-data-profile_mobile is not set
# svi-data-profile_wearable is not set
# swap-manager is not set
# swap-modules is not set
# swap-modules-aarch64 is not set
# swap-probe is not set
# swap-probe-devel is not set
# swap-probe-elf is not set
# swap-probe-lsan is not set
# swig is not set
# swig-doc is not set
# swig-examples is not set
# sync-service is not set
# syspopup is not set
# syspopup-caller is not set
# syspopup-caller-devel is not set
# syspopup-devel is not set
# system-configuration is not set
# system-configuration-debug is not set
# system-plugin is not set
# system-plugin-circle is not set
# system-plugin-config-udev-sdbd is not set
# system-plugin-device-artik530 is not set
# system-plugin-device-artik710 is not set
# system-plugin-device-rpi3 is not set
# system-plugin-exynos is not set
# system-plugin-feature-liblazymount is not set
# system-plugin-feature-liblazymount-devel is not set
# system-plugin-headless is not set
# system-plugin-init_wrapper is not set
# system-plugin-iot is not set
# system-plugin-n4 is not set
# system-plugin-profile-iot is not set
# system-plugin-profile-iot-headless is not set
# system-plugin-profile_ivi is not set
# system-plugin-rpi3 is not set
# system-plugin-spreadtrum is not set
# system-plugin-u3 is not set
# system-recovery is not set
# system-recovery-gui is not set
# system-recovery-non_gui is not set
# system-rw-update is not set
# system-rw-update-ani is not set
# system-servant is not set
# system-servant-extension-circle-profile_wearable is not set
# system-servant-extension-rectangle-profile_wearable is not set
# system-servant-profile_common is not set
# system-servant-profile_ivi is not set
# system-servant-profile_mobile is not set
# system-servant-profile_tv is not set
# systemd is not set
# systemd-analyze is not set
# systemd-devel is not set
# systemd-extension-kdbus is not set
# systemd-locale is not set
# systemd-tests is not set
# taglib is not set
# taglib-devel is not set
# tayga is not set
# tc-privacy-guard is not set
# tc-privilege-checker is not set
# tc-privilege-info is not set
# tcl is not set
# tcl-devel is not set
# tcpdump is not set
# tef-dummy is not set
# tef-libteec is not set
# tef-libteec-devel is not set
# tef-optee-client is not set
# tel-plugin-database is not set
# tel-plugin-dbus_tapi is not set
# tel-plugin-manager is not set
# tel-plugin-packetservice is not set
# tel-plugin-packetservice-dbinit-profile_common is not set
# tel-plugin-packetservice-dbinit-profile_ivi is not set
# tel-plugin-packetservice-dbinit-profile_tv is not set
# tel-plugin-packetservice-profile_tv is not set
# tel-plugin-vconf is not set
# telephony-daemon is not set
# telephony-daemon-profile_common is not set
# telephony-daemon-profile_ivi is not set
# telephony-daemon-profile_tv is not set
# tiff is not set
# tiff-docs is not set
# tinycompress is not set
# tinycompress-devel is not set
# tizen-debug is not set
# tizen-locale is not set
# tizen-platform-config is not set
# tizen-platform-config-meta is not set
# tizen-platform-config-tools is not set
# tizen-release is not set
# tizen-release-profile_common is not set
# tizen-release-profile_ivi is not set
# tizen-release-profile_mobile is not set
# tizen-release-profile_tv is not set
# tizen-release-profile_wearable is not set
# tlm is not set
# tlm-config-common is not set
# tlm-config-common-singleseat is not set
# tlm-devel is not set
# tlm-doc is not set
# tolua is not set
# tota-bsdiff is not set
# tota-ua is not set
# tota-ua-target_wearable is not set
# toybox is not set
# toybox-symlinks-dhcp is not set
# toybox-symlinks-dhcpd is not set
# toybox-symlinks-nslookup is not set
# toybox-symlinks-ping is not set
# toybox-symlinks-ping6 is not set
# tpk-backend is not set
# tpk-backend-devel is not set
# tpk-backend-tests is not set
# tpk-manifest-handlers is not set
# tpk-manifest-handlers-devel is not set
# trust-anchor is not set
# trust-anchor-devel is not set
# trust-anchor-example is not set
# trust-anchor-test is not set
# ttrace is not set
# ttrace-devel is not set
# tts is not set
# tts-devel is not set
# tts-engine-devel is not set
# tts-engine-rsc is not set
# tts-setting-devel is not set
# typelib-1_0-Atspi-2_0 is not set
# typelib-Json is not set
# typelib-Soup is not set
# tzdata-update-parser is not set
# tzsh is not set
# tzsh-devel is not set
# tzsh-extension-devel is not set
# u-boot is not set
# u-boot-artik10 is not set
# u-boot-artik5 is not set
# u-boot-artik530 is not set
# u-boot-tm1 is not set
# u-boot-tools is not set
# u-boot-xu3 is not set
# ua-client is not set
# ug-nfc-efl is not set
# ug-nfc-efl-profile_common is not set
# ug-nfc-efl-profile_mobile is not set
# ug-nfc-efl-profile_wearable is not set
# ug-nfc-efl-resource_common is not set
# ug-setting-mobileap-efl is not set
# ug-setting-wifidirect-efl is not set
# ui-gadget-1 is not set
# ui-gadget-1-devel is not set
# ui-viewmgr is not set
# ui-viewmgr-devel is not set
# ui-viewmgr-ui.viewmgr.demo is not set
# update-desktop-files is not set
# usbutils is not set
# usbutils-docs is not set
# userspace-rcu is not set
# userspace-rcu-devel is not set
# util-macros is not set
# v4l-utils is not set
# valgrind is not set
# valgrind-devel is not set
# valgrind-docs is not set
# vc-engine-default is not set
# vc-webview is not set
# vc-webview-devel is not set
# vc-webview-js is not set
# vconf-compat is not set
# vconf-compat-devel is not set
# vconf-internal-keys is not set
# vconf-internal-keys-config-profile_common is not set
# vconf-internal-keys-config-profile_ivi is not set
# vconf-internal-keys-config-profile_mobile is not set
# vconf-internal-keys-config-profile_tv is not set
# vconf-internal-keys-config-profile_wearable is not set
# vconf-internal-keys-devel is not set
# vi is not set
# voice-control is not set
# voice-control-devel is not set
# voice-control-elm is not set
# voice-control-elm-devel is not set
# voice-control-engine-devel is not set
# voice-control-manager-devel is not set
# voice-control-setting-devel is not set
# voice-control-widget-devel is not set
# vpx-tools is not set
# watch-control is not set
# watch-control-devel is not set
# wayland-devel is not set
# wayland-extension-client-devel is not set
# wayland-extension-server-devel is not set
# wbxml2-tools is not set
# wdiff is not set
# wdiff-lang is not set
# web-widget-engine is not set
# web-widget-engine-devel is not set
# web-widget-js is not set
# web-widget-js-devel is not set
# web-widget-runtime is not set
# webapi-plugins is not set
# webapi-plugins-devel is not set
# webapi-plugins-profile_common is not set
# webapi-plugins-profile_ivi is not set
# webapi-plugins-profile_mobile is not set
# webapi-plugins-profile_tv is not set
# webapi-plugins-profile_wearable is not set
# webapi-plugins-teec is not set
# wgt-backend is not set
# wgt-backend-tests is not set
# wgt-manifest-handlers is not set
# wgt-manifest-handlers-devel is not set
# wgt-manifest-handlers-tests is not set
# wifi-direct-manager is not set
# wifi-direct-manager-extension-TM1 is not set
# wifi-direct-manager-profile_common is not set
# wifi-direct-manager-profile_mobile is not set
# wifi-direct-manager-profile_tv is not set
# wifi-direct-manager-profile_wearable is not set
# wifi-direct-plugin-wpasupplicant is not set
# wifi-mesh-manager is not set
# wpa_supplicant is not set
# wpa_supplicant-client_tool is not set
# wpa_supplicant-extension-TM1 is not set
# wpa_supplicant-extension-TM2 is not set
# wpa_supplicant-profile_common is not set
# wpa_supplicant-profile_tv is not set
# wrt-service is not set
# wrt-widgets is not set
# xdelta3 is not set
# xdgmime is not set
# xdgmime-devel is not set
# xkb-tizen-data is not set
# xkeyboard-config is not set
# xml-common is not set
# xmlcharent is not set
# xmlsec1 is not set
# xmlsec1-devel is not set
# xmlsec1-devel-static is not set
# xmlsec1-gcrypt is not set
# xmlsec1-openssl is not set
# xmlstarlet is not set
# xmlto is not set
# xwalk-extensions-common is not set
# xwalk-extensions-common-devel is not set
# yaca is not set
# yaca-devel is not set
# yaca-examples is not set
# yasm is not set
# yum is not set
# yum-metadata-parser is not set
# zbar is not set
# zbar-devel is not set
# zigbee-lib is not set
# zigbee-lib-devel is not set
# zigbee-manager is not set
# zint is not set
# zint-devel is not set
# zypper is not set
# zypper-locale is not set
# zypper-log is not set
TBB_INFO_PRIVATE_REPO1=""
TBB_INFO_PRIVATE_REPO2=""
TBB_INFO_PRIVATE_REPO3=""
TBB_INFO_DL_DIR="${TOPDIR}/dl"