-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitmodules
1450 lines (1450 loc) · 30.7 KB
/
.gitmodules
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
[submodule "src/buildtool"]
path = src/buildtool
url = ../buildtool
[submodule "src/acl"]
path = src/acl
url = ../acl
ignore = dirty
[submodule "src/atftp"]
path = src/atftp
url = ../atftp
ignore = dirty
[submodule "src/attr"]
path = src/attr
url = ../attr
ignore = dirty
[submodule "src/audit"]
path = src/audit
url = ../audit
ignore = dirty
[submodule "src/autoconf"]
path = src/autoconf
url = ../autoconf
ignore = dirty
[submodule "src/automake"]
path = src/automake
url = ../automake
ignore = dirty
[submodule "src/babeltrace"]
path = src/babeltrace
url = ../babeltrace
ignore = dirty
[submodule "src/bash"]
path = src/bash
url = ../bash
ignore = dirty
[submodule "src/bc"]
path = src/bc
url = ../bc
ignore = dirty
[submodule "src/binutils"]
path = src/binutils
url = ../binutils-gdb
ignore = dirty
[submodule "src/old_binutils"]
path = src/old_binutils
url = ../binutils-gdb
ignore = dirty
[submodule "src/bison"]
path = src/bison
url = ../bison
ignore = dirty
[submodule "src/blktrace"]
path = src/blktrace
url = ../blktrace
ignore = dirty
[submodule "src/boost"]
path = src/boost
url = ../boost
ignore = dirty
[submodule "src/boost-accumulators"]
path = src/boost-accumulators
url = ../boost-accumulators
ignore = dirty
[submodule "src/boost-algorithm"]
path = src/boost-algorithm
url = ../boost-algorithm
ignore = dirty
[submodule "src/boost-align"]
path = src/boost-align
url = ../boost-align
ignore = dirty
[submodule "src/boost-any"]
path = src/boost-any
url = ../boost-any
ignore = dirty
[submodule "src/boost-array"]
path = src/boost-array
url = ../boost-array
ignore = dirty
[submodule "src/boost-asio"]
path = src/boost-asio
url = ../boost-asio
ignore = dirty
[submodule "src/boost-assert"]
path = src/boost-assert
url = ../boost-assert
ignore = dirty
[submodule "src/boost-assign"]
path = src/boost-assign
url = ../boost-assign
ignore = dirty
[submodule "src/boost-atomic"]
path = src/boost-atomic
url = ../boost-atomic
ignore = dirty
[submodule "src/boost-auto_index"]
path = src/boost-auto_index
url = ../boost-auto_index
ignore = dirty
[submodule "src/boost-bcp"]
path = src/boost-bcp
url = ../boost-bcp
ignore = dirty
[submodule "src/boost-bimap"]
path = src/boost-bimap
url = ../boost-bimap
ignore = dirty
[submodule "src/boost-bind"]
path = src/boost-bind
url = ../boost-bind
ignore = dirty
[submodule "src/boost-boostbook"]
path = src/boost-boostbook
url = ../boost-boostbook
ignore = dirty
[submodule "src/boost-boostdep"]
path = src/boost-boostdep
url = ../boost-boostdep
ignore = dirty
[submodule "src/boost-build"]
path = src/boost-build
url = ../boost-build
ignore = dirty
[submodule "src/boost-chrono"]
path = src/boost-chrono
url = ../boost-chrono
ignore = dirty
[submodule "src/boost-circular_buffer"]
path = src/boost-circular_buffer
url = ../boost-circular_buffer
ignore = dirty
[submodule "src/boost-compatibility"]
path = src/boost-compatibility
url = ../boost-compatibility
ignore = dirty
[submodule "src/boost-concept_check"]
path = src/boost-concept_check
url = ../boost-concept_check
ignore = dirty
[submodule "src/boost-config"]
path = src/boost-config
url = ../boost-config
ignore = dirty
[submodule "src/boost-container"]
path = src/boost-container
url = ../boost-container
ignore = dirty
[submodule "src/boost-context"]
path = src/boost-context
url = ../boost-context
ignore = dirty
[submodule "src/boost-conversion"]
path = src/boost-conversion
url = ../boost-conversion
ignore = dirty
[submodule "src/boost-convert"]
path = src/boost-convert
url = ../boost-convert
ignore = dirty
[submodule "src/boost-core"]
path = src/boost-core
url = ../boost-core
ignore = dirty
[submodule "src/boost-coroutine"]
path = src/boost-coroutine
url = ../boost-coroutine
ignore = dirty
[submodule "src/boost-coroutine2"]
path = src/boost-coroutine2
url = ../boost-coroutine2
ignore = dirty
[submodule "src/boost-crc"]
path = src/boost-crc
url = ../boost-crc
ignore = dirty
[submodule "src/boost-date_time"]
path = src/boost-date_time
url = ../boost-date_time
ignore = dirty
[submodule "src/boost-detail"]
path = src/boost-detail
url = ../boost-detail
ignore = dirty
[submodule "src/boost-disjoint_sets"]
path = src/boost-disjoint_sets
url = ../boost-disjoint_sets
ignore = dirty
[submodule "src/boost-dynamic_bitset"]
path = src/boost-dynamic_bitset
url = ../boost-dynamic_bitset
ignore = dirty
[submodule "src/boost-endian"]
path = src/boost-endian
url = ../boost-endian
ignore = dirty
[submodule "src/boost-exception"]
path = src/boost-exception
url = ../boost-exception
ignore = dirty
[submodule "src/boost-filesystem"]
path = src/boost-filesystem
url = ../boost-filesystem
ignore = dirty
[submodule "src/boost-flyweight"]
path = src/boost-flyweight
url = ../boost-flyweight
ignore = dirty
[submodule "src/boost-foreach"]
path = src/boost-foreach
url = ../boost-foreach
ignore = dirty
[submodule "src/boost-format"]
path = src/boost-format
url = ../boost-format
ignore = dirty
[submodule "src/boost-function"]
path = src/boost-function
url = ../boost-function
ignore = dirty
[submodule "src/boost-functional"]
path = src/boost-functional
url = ../boost-functional
ignore = dirty
[submodule "src/boost-function_types"]
path = src/boost-function_types
url = ../boost-function_types
ignore = dirty
[submodule "src/boost-fusion"]
path = src/boost-fusion
url = ../boost-fusion
ignore = dirty
[submodule "src/boost-geometry"]
path = src/boost-geometry
url = ../boost-geometry
ignore = dirty
[submodule "src/boost-gil"]
path = src/boost-gil
url = ../boost-gil
ignore = dirty
[submodule "src/boost-graph"]
path = src/boost-graph
url = ../boost-graph
ignore = dirty
[submodule "src/boost-graph_parallel"]
path = src/boost-graph_parallel
url = ../boost-graph_parallel
ignore = dirty
[submodule "src/boost-heap"]
path = src/boost-heap
url = ../boost-heap
ignore = dirty
[submodule "src/boost-icl"]
path = src/boost-icl
url = ../boost-icl
ignore = dirty
[submodule "src/boost-inspect"]
path = src/boost-inspect
url = ../boost-inspect
ignore = dirty
[submodule "src/boost-integer"]
path = src/boost-integer
url = ../boost-integer
ignore = dirty
[submodule "src/boost-interprocess"]
path = src/boost-interprocess
url = ../boost-interprocess
ignore = dirty
[submodule "src/boost-interval"]
path = src/boost-interval
url = ../boost-interval
ignore = dirty
[submodule "src/boost-intrusive"]
path = src/boost-intrusive
url = ../boost-intrusive
ignore = dirty
[submodule "src/boost-io"]
path = src/boost-io
url = ../boost-io
ignore = dirty
[submodule "src/boost-iostreams"]
path = src/boost-iostreams
url = ../boost-iostreams
ignore = dirty
[submodule "src/boost-iterator"]
path = src/boost-iterator
url = ../boost-iterator
ignore = dirty
[submodule "src/boost-lambda"]
path = src/boost-lambda
url = ../boost-lambda
ignore = dirty
[submodule "src/boost-lexical_cast"]
path = src/boost-lexical_cast
url = ../boost-lexical_cast
ignore = dirty
[submodule "src/boost-litre"]
path = src/boost-litre
url = ../boost-litre
ignore = dirty
[submodule "src/boost-locale"]
path = src/boost-locale
url = ../boost-locale
ignore = dirty
[submodule "src/boost-local_function"]
path = src/boost-local_function
url = ../boost-local_function
ignore = dirty
[submodule "src/boost-lockfree"]
path = src/boost-lockfree
url = ../boost-lockfree
ignore = dirty
[submodule "src/boost-log"]
path = src/boost-log
url = ../boost-log
ignore = dirty
[submodule "src/boost-logic"]
path = src/boost-logic
url = ../boost-logic
ignore = dirty
[submodule "src/boost-math"]
path = src/boost-math
url = ../boost-math
ignore = dirty
[submodule "src/boost-move"]
path = src/boost-move
url = ../boost-move
ignore = dirty
[submodule "src/boost-mpi"]
path = src/boost-mpi
url = ../boost-mpi
ignore = dirty
[submodule "src/boost-mpl"]
path = src/boost-mpl
url = ../boost-mpl
ignore = dirty
[submodule "src/boost-msm"]
path = src/boost-msm
url = ../boost-msm
ignore = dirty
[submodule "src/boost-multi_array"]
path = src/boost-multi_array
url = ../boost-multi_array
ignore = dirty
[submodule "src/boost-multi_index"]
path = src/boost-multi_index
url = ../boost-multi_index
ignore = dirty
[submodule "src/boost-multiprecision"]
path = src/boost-multiprecision
url = ../boost-multiprecision
ignore = dirty
[submodule "src/boost-numeric_conversion"]
path = src/boost-numeric_conversion
url = ../boost-numeric_conversion
ignore = dirty
[submodule "src/boost-odeint"]
path = src/boost-odeint
url = ../boost-odeint
ignore = dirty
[submodule "src/boost-optional"]
path = src/boost-optional
url = ../boost-optional
ignore = dirty
[submodule "src/boost-parameter"]
path = src/boost-parameter
url = ../boost-parameter
ignore = dirty
[submodule "src/boost-phoenix"]
path = src/boost-phoenix
url = ../boost-phoenix
ignore = dirty
[submodule "src/boost-polygon"]
path = src/boost-polygon
url = ../boost-polygon
ignore = dirty
[submodule "src/boost-pool"]
path = src/boost-pool
url = ../boost-pool
ignore = dirty
[submodule "src/boost-predef"]
path = src/boost-predef
url = ../boost-predef
ignore = dirty
[submodule "src/boost-preprocessor"]
path = src/boost-preprocessor
url = ../boost-preprocessor
ignore = dirty
[submodule "src/boost-program_options"]
path = src/boost-program_options
url = ../boost-program_options
ignore = dirty
[submodule "src/boost-property_map"]
path = src/boost-property_map
url = ../boost-property_map
ignore = dirty
[submodule "src/boost-property_tree"]
path = src/boost-property_tree
url = ../boost-property_tree
ignore = dirty
[submodule "src/boost-proto"]
path = src/boost-proto
url = ../boost-proto
ignore = dirty
[submodule "src/boost-ptr_container"]
path = src/boost-ptr_container
url = ../boost-ptr_container
ignore = dirty
[submodule "src/boost-python"]
path = src/boost-python
url = ../boost-python
ignore = dirty
[submodule "src/boost-quickbook"]
path = src/boost-quickbook
url = ../boost-quickbook
ignore = dirty
[submodule "src/boost-random"]
path = src/boost-random
url = ../boost-random
ignore = dirty
[submodule "src/boost-range"]
path = src/boost-range
url = ../boost-range
ignore = dirty
[submodule "src/boost-ratio"]
path = src/boost-ratio
url = ../boost-ratio
ignore = dirty
[submodule "src/boost-rational"]
path = src/boost-rational
url = ../boost-rational
ignore = dirty
[submodule "src/boost-regex"]
path = src/boost-regex
url = ../boost-regex
ignore = dirty
[submodule "src/boost-scope_exit"]
path = src/boost-scope_exit
url = ../boost-scope_exit
ignore = dirty
[submodule "src/boost-serialization"]
path = src/boost-serialization
url = ../boost-serialization
ignore = dirty
[submodule "src/boost-signals"]
path = src/boost-signals
url = ../boost-signals
ignore = dirty
[submodule "src/boost-signals2"]
path = src/boost-signals2
url = ../boost-signals2
ignore = dirty
[submodule "src/boost-smart_ptr"]
path = src/boost-smart_ptr
url = ../boost-smart_ptr
ignore = dirty
[submodule "src/boost-sort"]
path = src/boost-sort
url = ../boost-sort
ignore = dirty
[submodule "src/boost-spirit"]
path = src/boost-spirit
url = ../boost-spirit
ignore = dirty
[submodule "src/boost-statechart"]
path = src/boost-statechart
url = ../boost-statechart
ignore = dirty
[submodule "src/boost-static_assert"]
path = src/boost-static_assert
url = ../boost-static_assert
ignore = dirty
[submodule "src/boost-system"]
path = src/boost-system
url = ../boost-system
ignore = dirty
[submodule "src/boost-test"]
path = src/boost-test
url = ../boost-test
ignore = dirty
[submodule "src/boost-thread"]
path = src/boost-thread
url = ../boost-thread
ignore = dirty
[submodule "src/boost-throw_exception"]
path = src/boost-throw_exception
url = ../boost-throw_exception
ignore = dirty
[submodule "src/boost-timer"]
path = src/boost-timer
url = ../boost-timer
ignore = dirty
[submodule "src/boost-tokenizer"]
path = src/boost-tokenizer
url = ../boost-tokenizer
ignore = dirty
[submodule "src/boost-tr1"]
path = src/boost-tr1
url = ../boost-tr1
ignore = dirty
[submodule "src/boost-tti"]
path = src/boost-tti
url = ../boost-tti
ignore = dirty
[submodule "src/boost-tuple"]
path = src/boost-tuple
url = ../boost-tuple
ignore = dirty
[submodule "src/boost-type_erasure"]
path = src/boost-type_erasure
url = ../boost-type_erasure
ignore = dirty
[submodule "src/boost-type_index"]
path = src/boost-type_index
url = ../boost-type_index
ignore = dirty
[submodule "src/boost-typeof"]
path = src/boost-typeof
url = ../boost-typeof
ignore = dirty
[submodule "src/boost-type_traits"]
path = src/boost-type_traits
url = ../boost-type_traits
ignore = dirty
[submodule "src/boost-ublas"]
path = src/boost-ublas
url = ../boost-ublas
ignore = dirty
[submodule "src/boost-units"]
path = src/boost-units
url = ../boost-units
ignore = dirty
[submodule "src/boost-unordered"]
path = src/boost-unordered
url = ../boost-unordered
ignore = dirty
[submodule "src/boost-utility"]
path = src/boost-utility
url = ../boost-utility
ignore = dirty
[submodule "src/boost-uuid"]
path = src/boost-uuid
url = ../boost-uuid
ignore = dirty
[submodule "src/boost-variant"]
path = src/boost-variant
url = ../boost-variant
ignore = dirty
[submodule "src/boost-wave"]
path = src/boost-wave
url = ../boost-wave
ignore = dirty
[submodule "src/boost-winapi"]
path = src/boost-winapi
url = ../boost-winapi
ignore = dirty
[submodule "src/boost-xpressive"]
path = src/boost-xpressive
url = ../boost-xpressive
ignore = dirty
[submodule "src/bridge-utils"]
path = src/bridge-utils
url = ../bridge-utils
ignore = dirty
[submodule "src/busybox"]
path = src/busybox
url = ../busybox
ignore = dirty
[submodule "src/bzip2"]
path = src/bzip2
url = ../bzip2
ignore = dirty
[submodule "src/cloog"]
path = src/cloog
url = ../cloog
ignore = dirty
[submodule "src/collectd"]
path = src/collectd
url = ../collectd
ignore = dirty
[submodule "src/config"]
path = src/config
url = ../config
ignore = dirty
[submodule "src/coreutils"]
path = src/coreutils
url = ../coreutils
ignore = dirty
[submodule "src/cpio"]
path = src/cpio
url = ../cpio
ignore = dirty
[submodule "src/curl"]
path = src/curl
url = ../curl
ignore = dirty
[submodule "src/dbus"]
path = src/dbus
url = ../dbus
ignore = dirty
[submodule "src/diffutils"]
path = src/diffutils
url = ../diffutils
ignore = dirty
[submodule "src/ebtables"]
path = src/ebtables
url = ../ebtables
ignore = dirty
[submodule "src/elfinterface"]
path = src/elfinterface
url = ../elfinterface
ignore = dirty
[submodule "src/expat"]
path = src/expat
url = ../expat
ignore = dirty
[submodule "src/file"]
path = src/file
url = ../file
ignore = dirty
[submodule "src/findutils"]
path = src/findutils
url = ../findutils
ignore = dirty
[submodule "src/flex"]
path = src/flex
url = ../flex
ignore = dirty
[submodule "src/gawk"]
path = src/gawk
url = ../gawk
ignore = dirty
[submodule "src/gcc"]
path = src/gcc
url = ../gcc
ignore = dirty
[submodule "src/old_gcc"]
path = src/old_gcc
url = ../gcc
ignore = dirty
[submodule "src/gettext"]
path = src/gettext
url = ../gettext
ignore = dirty
[submodule "src/glib"]
path = src/glib
url = ../glib
ignore = dirty
[submodule "src/glibc"]
path = src/glibc
url = ../glibc
ignore = dirty
[submodule "src/old_glibc"]
path = src/old_glibc
url = ../glibc
ignore = dirty
[submodule "src/gmp"]
path = src/gmp
url = ../gmp
ignore = dirty
[submodule "src/gperf"]
path = src/gperf
url = ../gperf
ignore = dirty
[submodule "src/grep"]
path = src/grep
url = ../grep
ignore = dirty
[submodule "src/groff"]
path = src/groff
url = ../groff
ignore = dirty
[submodule "src/intltool"]
path = src/intltool
url = ../intltool
ignore = dirty
[submodule "src/isl"]
path = src/isl
url = ../isl
ignore = dirty
[submodule "src/kmod"]
path = src/kmod
url = ../kmod
ignore = dirty
[submodule "src/libaio"]
path = src/libaio
url = ../libaio
ignore = dirty
[submodule "src/libcap"]
path = src/libcap
url = ../libcap
ignore = dirty
[submodule "src/libffi"]
path = src/libffi
url = ../libffi
ignore = dirty
[submodule "src/libtool"]
path = src/libtool
url = ../libtool
ignore = dirty
[submodule "src/glibc_linux"]
path = src/glibc_linux
url = ../linux
ignore = dirty
[submodule "src/old_linux"]
path = src/old_linux
url = ../linux
ignore = dirty
[submodule "src/linux-pam"]
path = src/linux-pam
url = ../linux-pam
ignore = dirty
[submodule "src/lz4"]
path = src/lz4
url = ../lz4
ignore = dirty
[submodule "src/m4"]
path = src/m4
url = ../m4
ignore = dirty
[submodule "src/make"]
path = src/make
url = ../make
ignore = dirty
[submodule "src/mingwrt"]
path = src/mingwrt
url = ../mingwrt
ignore = dirty
[submodule "src/mpc"]
path = src/mpc
url = ../mpc
ignore = dirty
[submodule "src/mpfr"]
path = src/mpfr
url = ../mpfr
ignore = dirty
[submodule "src/ncurses"]
path = src/ncurses
url = ../ncurses
ignore = dirty
[submodule "src/openldap"]
path = src/openldap
url = ../openldap
ignore = dirty
[submodule "src/openssl"]
path = src/openssl
url = ../openssl
ignore = dirty
[submodule "src/perl"]
path = src/perl
url = ../perl
ignore = dirty
[submodule "src/pkg-config"]
path = src/pkg-config
url = ../pkg-config
ignore = dirty
[submodule "src/popt"]
path = src/popt
url = ../popt
ignore = dirty
[submodule "src/readline"]
path = src/readline
url = ../readline
ignore = dirty
[submodule "src/sed"]
path = src/sed
url = ../sed
ignore = dirty
[submodule "src/systemd"]
path = src/systemd
url = ../systemd
ignore = dirty
[submodule "src/tcp_wrappers"]
path = src/tcp_wrappers
url = ../tcp_wrappers
ignore = dirty
[submodule "src/texinfo"]
path = src/texinfo
url = ../texinfo
ignore = dirty
[submodule "src/unifdef"]
path = src/unifdef
url = ../unifdef
ignore = dirty
[submodule "src/util-linux"]
path = src/util-linux
url = ../util-linux
ignore = dirty
[submodule "src/w32api"]
path = src/w32api
url = ../w32api
ignore = dirty
[submodule "src/XML-Parser"]
path = src/XML-Parser
url = ../XML-Parser
ignore = dirty
[submodule "src/xz"]
path = src/xz
url = ../xz
ignore = dirty
[submodule "src/zlib"]
path = src/zlib
url = ../zlib
ignore = dirty
[submodule "src/gnulib"]
path = src/gnulib
url = ../gnulib
ignore = dirty
[submodule "src/paxutils"]
path = src/paxutils
url = ../paxutils
ignore = dirty
[submodule "src/gzip"]
path = src/gzip
url = ../gzip
ignore = dirty
[submodule "src/gpsd"]
path = src/gpsd
url = ../gpsd
ignore = dirty
[submodule "src/genext2fs"]
path = src/genext2fs
url = ../genext2fs
ignore = dirty
[submodule "src/gdb"]
path = src/gdb
url = ../binutils-gdb
ignore = dirty
[submodule "src/fuse"]
path = src/fuse
url = ../fuse
ignore = dirty
[submodule "src/fec"]
path = src/fec
url = ../fec
ignore = dirty
[submodule "src/expect"]
path = src/expect
url = ../expect
ignore = dirty
[submodule "src/ethtool"]
path = src/ethtool
url = ../ethtool
ignore = dirty
[submodule "src/encfs"]
path = src/encfs
url = ../encfs
ignore = dirty
[submodule "src/elfutils"]
path = src/elfutils
url = ../elfutils
ignore = dirty
[submodule "src/e2fsprogs"]
path = src/e2fsprogs
url = ../e2fsprogs
ignore = dirty
[submodule "src/dtc"]
path = src/dtc
url = ../dtc
ignore = dirty
[submodule "src/dhcp"]
path = src/dhcp
url = ../dhcp
ignore = dirty
[submodule "src/cryptopp"]
path = src/cryptopp
url = ../cryptopp
ignore = dirty
[submodule "src/apparmor"]
path = src/apparmor
url = ../apparmor
ignore = dirty
[submodule "src/tcl"]
path = src/tcl
url = ../tcl
ignore = dirty
[submodule "src/bind"]
path = src/bind
url = ../bind
ignore = dirty
[submodule "src/scons"]
path = src/scons
url = ../scons
ignore = dirty
[submodule "src/python"]
path = src/python
url = ../python
ignore = dirty
[submodule "src/libxml2"]
path = src/libxml2
url = ../libxml2
ignore = dirty
[submodule "src/rlog"]
path = src/rlog
url = ../rlog
ignore = dirty
[submodule "src/sqlite"]
path = src/sqlite
url = ../sqlite
ignore = dirty
[submodule "src/ktap"]
path = src/ktap
url = ../ktap
ignore = dirty
[submodule "src/iputils"]
path = src/iputils
url = ../iputils
ignore = dirty
[submodule "src/iptables"]
path = src/iptables
url = ../iptables
ignore = dirty
[submodule "src/ipsec-tools"]
path = src/ipsec-tools
url = ../ipsec-tools
ignore = dirty
[submodule "src/iproute2"]
path = src/iproute2
url = ../iproute2
ignore = dirty
[submodule "src/iperf"]
path = src/iperf
url = ../iperf
ignore = dirty
[submodule "src/inotify-tools"]
path = src/inotify-tools
url = ../inotify-tools
ignore = dirty
[submodule "src/inetutils"]
path = src/inetutils
url = ../inetutils
ignore = dirty
[submodule "src/linux"]
path = src/linux
url = ../linux
ignore = dirty
[submodule "src/iana-etc"]
path = src/iana-etc
url = ../iana-etc
ignore = dirty
[submodule "src/lksctp"]
path = src/lksctp
url = ../lksctp
ignore = dirty
[submodule "src/db"]
path = src/db
url = ../db
ignore = dirty
[submodule "src/lxc"]
path = src/lxc
url = ../lxc
ignore = dirty
[submodule "src/lua"]
path = src/lua
url = ../lua
ignore = dirty
[submodule "src/lttng-ust"]
path = src/lttng-ust
url = ../lttng-ust
ignore = dirty
[submodule "src/lttng-tools"]
path = src/lttng-tools
url = ../lttng-tools
ignore = dirty
[submodule "src/lttng-modules"]
path = src/lttng-modules
url = ../lttng-modules
ignore = dirty
[submodule "src/ltt-control"]
path = src/ltt-control
url = ../ltt-control
ignore = dirty
[submodule "src/ltrace"]
path = src/ltrace
url = ../ltrace
ignore = dirty
[submodule "src/lsof"]
path = src/lsof
url = ../lsof
ignore = dirty
[submodule "src/lrzsz"]
path = src/lrzsz
url = ../lrzsz
ignore = dirty
[submodule "src/logrotate"]
path = src/logrotate
url = ../logrotate
ignore = dirty
[submodule "src/lmbench3"]
path = src/lmbench3
url = ../lmbench3
ignore = dirty
[submodule "src/lighttpd"]
path = src/lighttpd
url = ../lighttpd
ignore = dirty
[submodule "src/libusb"]
path = src/libusb
url = ../libusb
ignore = dirty
[submodule "src/libunwind"]