-
Notifications
You must be signed in to change notification settings - Fork 217
Expand file tree
/
Copy pathusbutils.spdx
More file actions
895 lines (785 loc) · 42.3 KB
/
Copy pathusbutils.spdx
File metadata and controls
895 lines (785 loc) · 42.3 KB
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
SPDXVersion: SPDX-2.1
DataLicense: CC0-1.0
SPDXID: SPDXRef-DOCUMENT
DocumentName: usbutils
DocumentNamespace: http://spdx.org/spdxdocs/spdx-v2.1-189fdfca-df3e-490f-bfef-bf0b555c1390
Creator: Person: Greg Kroah-Hartman <gregkh@linuxfoundation.org> ()
Creator: Organization: The Linux Foundation ()
Creator: Tool: reuse-6.2.0
Created: 2026-05-31T12:24:24Z
CreatorComment: <text>This document was created automatically using available reuse information consistent with REUSE.</text>
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-68c02f636b8e3879dac8154f74e11a07
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-55ac808bfba4c56ce907af138af72acf
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-0eacc2ae7d0f5c3449ec0adf0eb43bf0
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-a3fe8c439a8920ee4f2b8078b85ad468
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-7a3bd08eba1bc24dee78f41529fb76d7
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-421ef750cbd607aeb62b8dab638454b4
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-dbefb4a51cbf16bc58c282be75359b68
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-f38228d528a8d5a2e1f3a7e14e3ef982
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-d55ab2ed4d5fdfcf0040347a879b8f2d
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-21a212edf35f19ec3cfeb707641e5d71
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-5503f4e216fc559b19e397a7433010ca
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-48837738997a8f7c8e44df92148bb30c
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-d677e7ba880d2b69bf8f23da8032d0da
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-e3868cd47017f499d3ae56566f2dd797
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-6e57fa87d3ce3ae7dc0d7a3f73772e93
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-06257158c5dd22f03d25b4bca4fdfda9
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-75f65fe9682d7b9f6bcf01dfa4094aed
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-60c5f0772761312cad5b32c0fc824a3d
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-b0b70e0323f579db4f4251cbb6dd5734
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-0d55599d39c57a6ef592993f38cb38ee
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-a9cd23771d5dd91bb7547c2bf9b6d61d
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-75b5d80d5b8e458a555bf9942bf7ed10
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-1d1ad6cdb4de72eeca72d3ad9a3c627e
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-4ae5ef4ab1501abb4c1c47d66ce32921
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-a7b2b91a40c7ab0bbe53401d34033e3d
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-f4fc4054b521c527a93f6569df101ee6
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-50536ae3a0aee6056d7fb92e3331aba9
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-830fc01dabc63645c1547b64e529769c
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-db07228bd97a32b4a5a1bf5c3f89bdff
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-44bd6ff37cd7b3a8aaf0c9439333227f
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-732ac70cbeb081518be428091ea2b7ea
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-df32fd71045b9bb4a88d11b9d0f003c3
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-9f9ae39928f219037b61c2083fbe7f1e
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-809edd80ee9a22b6cbb54b997a5126fd
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-9fb85b09f8a2a022ca84a59419f0c6f5
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-03c4f6abffb242d6d0dccde1eff96a71
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-83a45e768ddcfbd90f8f19c30a9b2780
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-f8de93054989a2fd41f3c2efbfb096a9
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-c5e911e3fb38d1362fb16df2a2fefd9e
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-6bf84d40f00b2566aa73a36acd80b594
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-eae4055469224764325d52cc96cbab3b
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-e8f43573a1e1c0ff6f4673c44c1c2bc1
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-3e2dd900eedfeb6de38e4ef6631df142
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-071eb02afab1f84445ce9af3e6bfa2eb
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-e86a1beac9018216b303111be6b03e4e
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-254c7e035e3bcf1cd9a502638aa8b04e
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-049709f1770711ea4558413c0af49689
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-ffc0e2541a5f0e9d2ad06d2aae0f25cd
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-5cfbb905a3e6d384f807ee6b0b2d85ed
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-6255cf19134a690827581d466c41d33e
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-417800d2dea07ec76c1b27b06647d2f9
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-6461588723f561fffe86e2d02e56c72a
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-61b9691bfcfc6795b602f4fb3c419880
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-7dc41c90cd97c4019704601fd113fa1c
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-79c0e03f59646c332937618578d165c3
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-9ac5de9d52d909c6f47c013f96617143
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-f6d1e15af1075fd750fe5d35bca76feb
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-7977767e1ae05785b9432dc06228c678
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-4436ad9e515f8b87aa5519a6f0263e96
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-1e7e5bed0f95bfa009d543db1bb860ab
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-ace4e536a8b25c6ef2ee575589ece0d9
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-db9fa881261298ad3dba4eca14aa66ff
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-067a7a6eb813edbf72757b0842552a51
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-4b754092bd92dda6453972edec9f97cf
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-d6124b20d6e3127b10e6829f91b61c71
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-9da5f453c7ab7532d4ededc567800aed
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-470fe677861374ce2405bf31ca4296d0
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-bb4d48127591cbfba935a001ad2a7e68
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-185df2aa002adad962987dbaefedc21c
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-077e5380ec67e40be5193faf8d0b4c12
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-3e5f493c632cb2c12d67d443cda16abf
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-cc52f431bee2755c8c6c9e94106fd0e8
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-74aadc123b626e2d4e19b3f472868674
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-a9fbe4a92c6f0903a0056a6fba71305e
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-2a8aa0414935ffbd11f5fed39115b898
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-355a0409fb954c93cfa2ba803c2ee7b2
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-a22e0299266ff5393dc8beaf3e2ffcd6
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-92bb052353d398aa95332362072c951e
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-a32fe22e0cc78542807dd3784982fedf
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-8ef5fbae844685e006588398d54f1b8f
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-194ac2b76a3cf9463e41d1e6c3fdda99
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-59d8e50e396c6124d46bff026c66ae3e
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-1d8a8449cec4b0009e0fcf9d0b83a965
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-c1115acee993ad94922fabffa1e35235
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-041c4033577b1d699f8aef1875c3b118
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-90e82f04cc232eed838b36019e813d6a
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-b7756e3d3be88d096157ab716bbc20a5
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-56c6dc57d1a1b00f935032c7394a7ab3
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-854845852c2fd2884a46f1fd683d6adc
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-c836d4b1a73772503ba8a88e1a0a7a0a
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-5caab38b28b28a1e757052f304adfd8d
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-a4ab912da758ea90ac0483b463d76f54
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-3fcb43cc533d0519e5a1ecdc4afe58ac
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-ae23252b6ad2e41711854d105a1c5eb1
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-1a8504143bfcae1608b9dadf439c07a5
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-ee077519a1819cd18bdc95353d67a9a9
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-863fe4948868393488cf4374dc1bf336
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-f46891395f23dbf7ef217ba349f459cc
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-dbdcddf16939f9896bb4808dec44839e
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-c512878b7b8cf31c0355d5a0b73db890
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-fec14677e17d08b48398f4f72075559e
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-e655c84f9cc2c2bb9a13dcd1a6e079f5
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-a5946b1a9eb230da3f3752c75257b8e4
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-e99e2d061caabfd49e2c6a1967bed2c5
Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-9ce27a3f2ace38d0bda5ac4efff82eda
FileName: ./.clang-format
SPDXID: SPDXRef-68c02f636b8e3879dac8154f74e11a07
FileChecksum: SHA1: 53d8e1ebbeecd7359dafd90c6a09427b26a599a6
LicenseConcluded: NOASSERTION
LicenseInfoInFile: GPL-2.0-only
FileCopyrightText: <text>SPDX-FileCopyrightText: Miguel Ojeda <ojeda@kernel.org></text>
FileName: ./.codespellignore
SPDXID: SPDXRef-55ac808bfba4c56ce907af138af72acf
FileChecksum: SHA1: 6f4789f1eb710c5dd0210521508af602d5d25438
LicenseConcluded: NOASSERTION
LicenseInfoInFile: LGPL-2.1-or-later
FileCopyrightText: <text>SPDX-FileCopyrightText: 2024 Emil Velikov <emil.l.velikov@gmail.com></text>
FileName: ./.editorconfig
SPDXID: SPDXRef-0eacc2ae7d0f5c3449ec0adf0eb43bf0
FileChecksum: SHA1: 237bcdcbe64e5ffcd1ee32598c86b096fa8686f6
LicenseConcluded: NOASSERTION
LicenseInfoInFile: LGPL-2.1-or-later
FileCopyrightText: <text>SPDX-FileCopyrightText: 2024 Emil Velikov <emil.l.velikov@gmail.com></text>
FileName: ./.github/actions/setup-alpine/action.yml
SPDXID: SPDXRef-a3fe8c439a8920ee4f2b8078b85ad468
FileChecksum: SHA1: 43bf25c558517a56bed79c5db30efe1f3a9a98b3
LicenseConcluded: NOASSERTION
LicenseInfoInFile: LGPL-2.1-or-later
FileCopyrightText: <text>SPDX-FileCopyrightText: 2024 Emil Velikov <emil.l.velikov@gmail.com>
SPDX-FileCopyrightText: 2024 Lucas De Marchi <lucas.de.marchi@gmail.com></text>
FileName: ./.github/actions/setup-archlinux/action.yml
SPDXID: SPDXRef-7a3bd08eba1bc24dee78f41529fb76d7
FileChecksum: SHA1: 4932e56a63436d56f2c3f3e9acbec11b3b04fdf9
LicenseConcluded: NOASSERTION
LicenseInfoInFile: LGPL-2.1-or-later
FileCopyrightText: <text>SPDX-FileCopyrightText: 2024 Emil Velikov <emil.l.velikov@gmail.com>
SPDX-FileCopyrightText: 2024 Lucas De Marchi <lucas.de.marchi@gmail.com></text>
FileName: ./.github/actions/setup-debian/action.yml
SPDXID: SPDXRef-421ef750cbd607aeb62b8dab638454b4
FileChecksum: SHA1: 6c0141996f10be924043f89b63a657a0a0813b4d
LicenseConcluded: NOASSERTION
LicenseInfoInFile: LGPL-2.1-or-later
FileCopyrightText: <text>SPDX-FileCopyrightText: 2024 Emil Velikov <emil.l.velikov@gmail.com>
SPDX-FileCopyrightText: 2024 Lucas De Marchi <lucas.de.marchi@gmail.com></text>
FileName: ./.github/actions/setup-fedora/action.yml
SPDXID: SPDXRef-dbefb4a51cbf16bc58c282be75359b68
FileChecksum: SHA1: 5d837599bbaddd4b40ce0c965f1098452b7886da
LicenseConcluded: NOASSERTION
LicenseInfoInFile: LGPL-2.1-or-later
FileCopyrightText: <text>SPDX-FileCopyrightText: 2024 Emil Velikov <emil.l.velikov@gmail.com>
SPDX-FileCopyrightText: 2024 Lucas De Marchi <lucas.de.marchi@gmail.com></text>
FileName: ./.github/actions/setup-ubuntu/action.yml
SPDXID: SPDXRef-f38228d528a8d5a2e1f3a7e14e3ef982
FileChecksum: SHA1: b39e7f7e85819fa264b4f2ed571c9eccf682a7f9
LicenseConcluded: NOASSERTION
LicenseInfoInFile: LGPL-2.1-or-later
FileCopyrightText: <text>SPDX-FileCopyrightText: 2024 Emil Velikov <emil.l.velikov@gmail.com>
SPDX-FileCopyrightText: 2024 Lucas De Marchi <lucas.de.marchi@gmail.com></text>
FileName: ./.github/cross-files/arch-cross.ini
SPDXID: SPDXRef-d55ab2ed4d5fdfcf0040347a879b8f2d
FileChecksum: SHA1: 2f2fc1855f25d477aaebaaf0d9ae76ff27fa8df5
LicenseConcluded: NOASSERTION
LicenseInfoInFile: LGPL-2.1-or-later
FileCopyrightText: <text>SPDX-FileCopyrightText: 2024 Emil Velikov <emil.l.velikov@gmail.com></text>
FileName: ./.github/cross-files/debian-cross.ini
SPDXID: SPDXRef-21a212edf35f19ec3cfeb707641e5d71
FileChecksum: SHA1: 1bc8bb17c718869c79edfb504b172fb8ae55e346
LicenseConcluded: NOASSERTION
LicenseInfoInFile: LGPL-2.1-or-later
FileCopyrightText: <text>SPDX-FileCopyrightText: 2024 Emil Velikov <emil.l.velikov@gmail.com></text>
FileName: ./.github/cross-files/ubuntu-cross.ini
SPDXID: SPDXRef-5503f4e216fc559b19e397a7433010ca
FileChecksum: SHA1: 1bc8bb17c718869c79edfb504b172fb8ae55e346
LicenseConcluded: NOASSERTION
LicenseInfoInFile: LGPL-2.1-or-later
FileCopyrightText: <text>SPDX-FileCopyrightText: 2024 Emil Velikov <emil.l.velikov@gmail.com></text>
FileName: ./.github/dependabot.yml
SPDXID: SPDXRef-48837738997a8f7c8e44df92148bb30c
FileChecksum: SHA1: 5e72d20eb87ce81ea96bf92eda6f037bde7d7a88
LicenseConcluded: NOASSERTION
LicenseInfoInFile: LGPL-2.1-or-later
FileCopyrightText: <text>SPDX-FileCopyrightText: 2024 Emil Velikov <emil.l.velikov@gmail.com></text>
FileName: ./.github/workflows/clang-format.yml
SPDXID: SPDXRef-d677e7ba880d2b69bf8f23da8032d0da
FileChecksum: SHA1: c2d77a2e22198abf718e21b3d95d0bae7cee2932
LicenseConcluded: NOASSERTION
LicenseInfoInFile: LGPL-2.1-or-later
FileCopyrightText: <text>SPDX-FileCopyrightText: 2024 Emil Velikov <emil.l.velikov@gmail.com></text>
FileName: ./.github/workflows/codeql.yml
SPDXID: SPDXRef-e3868cd47017f499d3ae56566f2dd797
FileChecksum: SHA1: 6524facc16ff8809a3cb0838b35352f143151eab
LicenseConcluded: NOASSERTION
LicenseInfoInFile: LGPL-2.1-or-later
FileCopyrightText: <text>SPDX-FileCopyrightText: 2024 Emil Velikov <emil.l.velikov@gmail.com>
SPDX-FileCopyrightText: 2024 Lucas De Marchi <lucas.de.marchi@gmail.com></text>
FileName: ./.github/workflows/codespell.yml
SPDXID: SPDXRef-6e57fa87d3ce3ae7dc0d7a3f73772e93
FileChecksum: SHA1: d73f70e5769804a8545f266c4603b54fa0aee656
LicenseConcluded: NOASSERTION
LicenseInfoInFile: LGPL-2.1-or-later
FileCopyrightText: <text>SPDX-FileCopyrightText: 2024 Emil Velikov <emil.l.velikov@gmail.com></text>
FileName: ./.github/workflows/main.yml
SPDXID: SPDXRef-06257158c5dd22f03d25b4bca4fdfda9
FileChecksum: SHA1: 5b78e63d6932ad6e095eeedb7ad615196a2d0a81
LicenseConcluded: NOASSERTION
LicenseInfoInFile: LGPL-2.1-or-later
FileCopyrightText: <text>SPDX-FileCopyrightText: 2024 Emil Velikov <emil.l.velikov@gmail.com>
SPDX-FileCopyrightText: 2024 Lucas De Marchi <lucas.de.marchi@gmail.com></text>
FileName: ./.github/workflows/reuse.yml
SPDXID: SPDXRef-75f65fe9682d7b9f6bcf01dfa4094aed
FileChecksum: SHA1: d23a0c460b9c5e4693cc0b40119c511de38b356b
LicenseConcluded: NOASSERTION
LicenseInfoInFile: LGPL-2.1-or-later
FileCopyrightText: <text>SPDX-FileCopyrightText: 2024 Emil Velikov <emil.l.velikov@gmail.com></text>
FileName: ./.gitignore
SPDXID: SPDXRef-60c5f0772761312cad5b32c0fc824a3d
FileChecksum: SHA1: 39951a5bdc5c52cac0e1849f5237b7f94300f5a7
LicenseConcluded: NOASSERTION
LicenseInfoInFile: GPL-2.0-only
FileCopyrightText: <text>Copyright (C) 2009 Greg Kroah-Hartman <gregkh@suse.de>
Copyright (C) 2014-2021 Greg Kroah-Hartman <gregkh@linuxfoundation.org></text>
FileName: ./NEWS
SPDXID: SPDXRef-b0b70e0323f579db4f4251cbb6dd5734
FileChecksum: SHA1: ae20b12bb2443053b2e5e21e6218b99f1f650823
LicenseConcluded: NOASSERTION
LicenseInfoInFile: GPL-2.0-only
FileCopyrightText: <text>Copyright (C) 2018-2025 Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Copyright strings</text>
FileName: ./README.md
SPDXID: SPDXRef-0d55599d39c57a6ef592993f38cb38ee
FileChecksum: SHA1: 783f577dd8442485278bcd35e0956a6507a724e8
LicenseConcluded: NOASSERTION
LicenseInfoInFile: GPL-2.0-or-later
FileCopyrightText: <text>Copyright (C) 2018 Greg Kroah-Hartman <gregkh@linuxfoundation.org></text>
FileName: ./autogen.sh
SPDXID: SPDXRef-a9cd23771d5dd91bb7547c2bf9b6d61d
FileChecksum: SHA1: 9df97295b60b11b78521f829eab2ef489b8367e8
LicenseConcluded: NOASSERTION
LicenseInfoInFile: GPL-2.0-only
FileCopyrightText: <text>Copyright (C) 2009, 2010 Greg Kroah-Hartman <gregkh@suse.de>
Copyright (C) 2024 Greg Kroah-Hartman <gregkh@linuxfoundation.org></text>
FileName: ./build-dev.ini
SPDXID: SPDXRef-75b5d80d5b8e458a555bf9942bf7ed10
FileChecksum: SHA1: d7ec729d36f6eb03a11c1b2327c29dd89cca005d
LicenseConcluded: NOASSERTION
LicenseInfoInFile: LGPL-2.1-or-later
FileCopyrightText: <text>SPDX-FileCopyrightText: 2024 Emil Velikov <emil.l.velikov@gmail.com></text>
FileName: ./ccan/check_type/check_type.h
SPDXID: SPDXRef-1d1ad6cdb4de72eeca72d3ad9a3c627e
FileChecksum: SHA1: 41089cb3040b64f1db5c5516174d5698d3c50312
LicenseConcluded: NOASSERTION
LicenseInfoInFile: CC0-1.0
FileCopyrightText: <text>SPDX-FileCopyrightText: Rusty Russell <rusty@rustcorp.com.au></text>
FileName: ./ccan/config.h
SPDXID: SPDXRef-4ae5ef4ab1501abb4c1c47d66ce32921
FileChecksum: SHA1: 4b3a3b475a32a6518e2d9051e21a262e46562243
LicenseConcluded: NOASSERTION
LicenseInfoInFile: CC0-1.0
FileCopyrightText: <text>SPDX-FileCopyrightText: Rusty Russell <rusty@rustcorp.com.au></text>
FileName: ./ccan/container_of/container_of.h
SPDXID: SPDXRef-a7b2b91a40c7ab0bbe53401d34033e3d
FileChecksum: SHA1: 09d56f0491025cf3da60c2c52db198795d06932f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: CC0-1.0
FileCopyrightText: <text>SPDX-FileCopyrightText: Rusty Russell <rusty@rustcorp.com.au></text>
FileName: ./ccan/list/list.h
SPDXID: SPDXRef-f4fc4054b521c527a93f6569df101ee6
FileChecksum: SHA1: b6e5a402b26d01c41faedf4d69d0194f68b73479
LicenseConcluded: NOASSERTION
LicenseInfoInFile: MIT
FileCopyrightText: <text>SPDX-FileCopyrightText: Rusty Russell <rusty@rustcorp.com.au></text>
FileName: ./ccan/str/str.h
SPDXID: SPDXRef-50536ae3a0aee6056d7fb92e3331aba9
FileChecksum: SHA1: 2de578d7e1ba12d0d85192272a890208dd4e63e0
LicenseConcluded: NOASSERTION
LicenseInfoInFile: CC0-1.0
FileCopyrightText: <text>SPDX-FileCopyrightText: Rusty Russell <rusty@rustcorp.com.au></text>
FileName: ./ccan/str/str_debug.h
SPDXID: SPDXRef-830fc01dabc63645c1547b64e529769c
FileChecksum: SHA1: 5aed1157108215170e16494d162ba8623f600ad4
LicenseConcluded: NOASSERTION
LicenseInfoInFile: CC0-1.0
FileCopyrightText: <text>SPDX-FileCopyrightText: Rusty Russell <rusty@rustcorp.com.au></text>
FileName: ./desc-defs.c
SPDXID: SPDXRef-db07228bd97a32b4a5a1bf5c3f89bdff
FileChecksum: SHA1: f8ace4c4976f465b4467c2ad47216f452cc2ba68
LicenseConcluded: NOASSERTION
LicenseInfoInFile: GPL-2.0-or-later
FileCopyrightText: <text>Copyright (C) 2017-2018 Michael Drake <michael.drake@codethink.co.uk></text>
FileName: ./desc-defs.h
SPDXID: SPDXRef-44bd6ff37cd7b3a8aaf0c9439333227f
FileChecksum: SHA1: ef0bbc932d7291c09178e8379e1602c44dc397e9
LicenseConcluded: NOASSERTION
LicenseInfoInFile: GPL-2.0-or-later
FileCopyrightText: <text>Copyright (C) 2017-2018 Michael Drake <michael.drake@codethink.co.uk></text>
FileName: ./desc-dump.c
SPDXID: SPDXRef-732ac70cbeb081518be428091ea2b7ea
FileChecksum: SHA1: ba9dba785d32e678578d638e2f0b5eeaa9754a7d
LicenseConcluded: NOASSERTION
LicenseInfoInFile: GPL-2.0-or-later
FileCopyrightText: <text>Copyright (C) 2017-2018 Michael Drake <michael.drake@codethink.co.uk></text>
FileName: ./desc-dump.h
SPDXID: SPDXRef-df32fd71045b9bb4a88d11b9d0f003c3
FileChecksum: SHA1: ca767adb65e5b7384875aeb55507fc0e27f303ca
LicenseConcluded: NOASSERTION
LicenseInfoInFile: GPL-2.0-or-later
FileCopyrightText: <text>Copyright (C) 2017 Michael Drake <michael.drake@codethink.co.uk></text>
FileName: ./justfile
SPDXID: SPDXRef-9f9ae39928f219037b61c2083fbe7f1e
FileChecksum: SHA1: 28ced6fbe125c165c9ffc54e418418f8a3b7f789
LicenseConcluded: NOASSERTION
LicenseInfoInFile: GPL-2.0-only
FileCopyrightText: <text>Copyright (C) 2024 Greg Kroah-Hartman <gregkh@linuxfoundation.org></text>
FileName: ./lsusb-t.c
SPDXID: SPDXRef-809edd80ee9a22b6cbb54b997a5126fd
FileChecksum: SHA1: d4348dadddf62ba78fbf78d9775b5f61c5554c0a
LicenseConcluded: NOASSERTION
LicenseInfoInFile: GPL-2.0-only
FileCopyrightText: <text>Copyright (C) 2009 Greg Kroah-Hartman <gregkh@suse.de></text>
FileName: ./lsusb.c
SPDXID: SPDXRef-9fb85b09f8a2a022ca84a59419f0c6f5
FileChecksum: SHA1: 3f52b5db8364582f6e390c1814fcf2aef7a614c5
LicenseConcluded: NOASSERTION
LicenseInfoInFile: GPL-2.0-or-later
FileCopyrightText: <text>Copyright (C) 1999-2001, 2003 Thomas Sailer (t.sailer@alumni.ethz.ch)
Copyright (C) 2003-2005 David Brownell</text>
FileName: ./lsusb.h
SPDXID: SPDXRef-03c4f6abffb242d6d0dccde1eff96a71
FileChecksum: SHA1: 441406c8bfcd1b5b6d4f25afdee494727b5888dd
LicenseConcluded: NOASSERTION
LicenseInfoInFile: GPL-2.0-or-later
FileCopyrightText: <text>Copyright 2011 (c) Greg Kroah-Hartman <gregkh@suse.de></text>
FileName: ./lsusb.py
SPDXID: SPDXRef-83a45e768ddcfbd90f8f19c30a9b2780
FileChecksum: SHA1: b718f89f6aa8fcccff87ddc9167dffb548a94e2b
LicenseConcluded: NOASSERTION
LicenseInfoInFile: GPL-2.0-only
LicenseInfoInFile: GPL-3.0-only
FileCopyrightText: <text>Copyright (C) 2009 Kurt Garloff <garloff@suse.de>
Copyright (C) 2013, 2018 Kurt Garloff <kurt@garloff.de></text>
FileName: ./man/lsusb.8
SPDXID: SPDXRef-f8de93054989a2fd41f3c2efbfb096a9
FileChecksum: SHA1: 809b319a3f62e6b58dc547f336c29e6204db098f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: GPL-2.0-only
FileCopyrightText: <text>Copyright (C) 1999 Thomas Sailer <sailer@ife.ee.ethz.ch></text>
FileName: ./man/lsusb.py.1
SPDXID: SPDXRef-c5e911e3fb38d1362fb16df2a2fefd9e
FileChecksum: SHA1: df8fb145901a6249861e548bdf4a6a94e5185799
LicenseConcluded: NOASSERTION
LicenseInfoInFile: GPL-2.0-only
FileCopyrightText: <text>Copyright (C) 1999 Thomas Sailer <sailer@ife.ee.ethz.ch>
Copyright (C) 2020 Sam Morris <sam@robots.org.uk></text>
FileName: ./man/usb-devices.1
SPDXID: SPDXRef-6bf84d40f00b2566aa73a36acd80b594
FileChecksum: SHA1: d4149382a2dac133414f2994f23665f507cf4565
LicenseConcluded: NOASSERTION
LicenseInfoInFile: GPL-2.0-only
FileCopyrightText: <text>Copyright (C) 2004 Frans Pop <elendil@planet.nl>
Copyright (C) 2004 Greg Kroah-Hartman <greg@kroah.com>
Copyright (C) 2004 Randy Dunlap <rdunlap@xenotime.net></text>
FileName: ./man/usbhid-dump.8
SPDXID: SPDXRef-eae4055469224764325d52cc96cbab3b
FileChecksum: SHA1: a2a4f607e08fe546d0d905fa49d7209408ba3e4e
LicenseConcluded: NOASSERTION
LicenseInfoInFile: GPL-2.0-or-later
FileCopyrightText: <text>Copyright Nikolai Kondrashov <spbnick@gmail.com></text>
FileName: ./man/usbreset.1
SPDXID: SPDXRef-e8f43573a1e1c0ff6f4673c44c1c2bc1
FileChecksum: SHA1: e32e39d86165fb886202cd3c7eb1b69a460ce093
LicenseConcluded: NOASSERTION
LicenseInfoInFile: GPL-2.0-only
FileCopyrightText: <text>Copyright (C) 2023 Aurelien Jarno <aurelien@aurel32.net></text>
FileName: ./meson.build
SPDXID: SPDXRef-3e2dd900eedfeb6de38e4ef6631df142
FileChecksum: SHA1: 9452eb02e8f3a8471a547c7c674c23027f0589fc
LicenseConcluded: NOASSERTION
LicenseInfoInFile: GPL-2.0-only
FileCopyrightText: <text>Copyright (C) 2024 Greg Kroah-Hartman <gregkh@linuxfoundation.org></text>
FileName: ./names.c
SPDXID: SPDXRef-071eb02afab1f84445ce9af3e6bfa2eb
FileChecksum: SHA1: 139ce7e0f2b0de2a87d28d8a4b4b7fda188bb203
LicenseConcluded: NOASSERTION
LicenseInfoInFile: GPL-2.0-or-later
FileCopyrightText: <text>Copyright (C) 1999, 2000 Thomas Sailer (sailer@ife.ee.ethz.ch)
Copyright (C) 2013 Tom Gundersen (teg@jklm.no)</text>
FileName: ./names.h
SPDXID: SPDXRef-e86a1beac9018216b303111be6b03e4e
FileChecksum: SHA1: f629ff1a58f36f9a4f911ae9b1b2a893f0fe742a
LicenseConcluded: NOASSERTION
LicenseInfoInFile: GPL-2.0-or-later
FileCopyrightText: <text>Copyright (C) 1999, 2000 Thomas Sailer (sailer@ife.ee.ethz.ch)</text>
FileName: ./sysfs.c
SPDXID: SPDXRef-254c7e035e3bcf1cd9a502638aa8b04e
FileChecksum: SHA1: 5576989219436f4ccc97c0a536d2ae1b3f492f91
LicenseConcluded: NOASSERTION
LicenseInfoInFile: GPL-2.0-or-later
FileCopyrightText: <text>Copyright (C) 1999, 2000 Thomas Sailer (sailer@ife.ee.ethz.ch)
Copyright (C) 2013 Tom Gundersen (teg@jklm.no)</text>
FileName: ./sysfs.h
SPDXID: SPDXRef-049709f1770711ea4558413c0af49689
FileChecksum: SHA1: f1fa3af93bb0135b4c29b0c19301656edd954fc0
LicenseConcluded: NOASSERTION
LicenseInfoInFile: GPL-2.0-or-later
FileCopyrightText: <text>Copyright (C) 1999, 2000 Thomas Sailer (sailer@ife.ee.ethz.ch)</text>
FileName: ./tests/brat/bin/brat
SPDXID: SPDXRef-ffc0e2541a5f0e9d2ad06d2aae0f25cd
FileChecksum: SHA1: 51766c792542f260d04d8ea71e71de8a94347804
LicenseConcluded: NOASSERTION
LicenseInfoInFile: LicenseRef-MIT-Trans-Rights
FileCopyrightText: <text>SPDX-FileCopyrightText: Sam Stephenson</text>
FileName: ./tests/brat/lib/brat/_init.sh
SPDXID: SPDXRef-5cfbb905a3e6d384f807ee6b0b2d85ed
FileChecksum: SHA1: f524be585c6a044e2cf77cad0ba7e8e80e2e509b
LicenseConcluded: NOASSERTION
LicenseInfoInFile: LicenseRef-MIT-Trans-Rights
FileCopyrightText: <text>SPDX-FileCopyrightText: Sam Stephenson</text>
FileName: ./tests/brat/lib/brat/_unhandled.sh
SPDXID: SPDXRef-6255cf19134a690827581d466c41d33e
FileChecksum: SHA1: ec0a3870997d31c17d4edcfe96f409df88cc446f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: LicenseRef-MIT-Trans-Rights
FileCopyrightText: <text>SPDX-FileCopyrightText: Sam Stephenson</text>
FileName: ./tests/brat/lib/brat/brat.sh
SPDXID: SPDXRef-417800d2dea07ec76c1b27b06647d2f9
FileChecksum: SHA1: 1aa9a6b3b6d05f4e1fc89fe3cc087579702c2507
LicenseConcluded: NOASSERTION
LicenseInfoInFile: LicenseRef-MIT-Trans-Rights
FileCopyrightText: <text>SPDX-FileCopyrightText: Sam Stephenson</text>
FileName: ./tests/brat/lib/brat/eval.sh
SPDXID: SPDXRef-6461588723f561fffe86e2d02e56c72a
FileChecksum: SHA1: a325544dc9cff65ccf5c795e56d7f52f27658d7d
LicenseConcluded: NOASSERTION
LicenseInfoInFile: LicenseRef-MIT-Trans-Rights
FileCopyrightText: <text>SPDX-FileCopyrightText: Sam Stephenson</text>
FileName: ./tests/brat/lib/brat/match.awk
SPDXID: SPDXRef-61b9691bfcfc6795b602f4fb3c419880
FileChecksum: SHA1: bba1d4a3a197c912001c296e91c4476731df6892
LicenseConcluded: NOASSERTION
LicenseInfoInFile: LicenseRef-MIT-Trans-Rights
FileCopyrightText: <text>SPDX-FileCopyrightText: Sam Stephenson</text>
FileName: ./tests/brat/lib/brat/plan-lines.awk
SPDXID: SPDXRef-7dc41c90cd97c4019704601fd113fa1c
FileChecksum: SHA1: 2329e640271b1bb82f80f58858c3dba7ff5c7015
LicenseConcluded: NOASSERTION
LicenseInfoInFile: LicenseRef-MIT-Trans-Rights
FileCopyrightText: <text>SPDX-FileCopyrightText: Sam Stephenson</text>
FileName: ./tests/brat/lib/brat/plan-names.awk
SPDXID: SPDXRef-79c0e03f59646c332937618578d165c3
FileChecksum: SHA1: 6d862ff65f870bbf84b4f34a49ff18be2d1e442f
LicenseConcluded: NOASSERTION
LicenseInfoInFile: LicenseRef-MIT-Trans-Rights
FileCopyrightText: <text>SPDX-FileCopyrightText: Sam Stephenson</text>
FileName: ./tests/brat/lib/brat/preprocess.awk
SPDXID: SPDXRef-9ac5de9d52d909c6f47c013f96617143
FileChecksum: SHA1: 9f01131cb0b9cfdb38e4ec764d702ffc8ee96eb1
LicenseConcluded: NOASSERTION
LicenseInfoInFile: LicenseRef-MIT-Trans-Rights
FileCopyrightText: <text>SPDX-FileCopyrightText: Sam Stephenson</text>
FileName: ./tests/brat/lib/brat/rewrite-paths.awk
SPDXID: SPDXRef-f6d1e15af1075fd750fe5d35bca76feb
FileChecksum: SHA1: 62f2173184be258b4ec310053ed433b7afcccbbd
LicenseConcluded: NOASSERTION
LicenseInfoInFile: LicenseRef-MIT-Trans-Rights
FileCopyrightText: <text>SPDX-FileCopyrightText: Sam Stephenson</text>
FileName: ./tests/brat/lib/brat/tap-format-plain.awk
SPDXID: SPDXRef-7977767e1ae05785b9432dc06228c678
FileChecksum: SHA1: 58e2e256477fe2b2a5a827861a33db5f14122b49
LicenseConcluded: NOASSERTION
LicenseInfoInFile: LicenseRef-MIT-Trans-Rights
FileCopyrightText: <text>SPDX-FileCopyrightText: Sam Stephenson</text>
FileName: ./tests/brat/lib/brat/tap-format-pretty.awk
SPDXID: SPDXRef-4436ad9e515f8b87aa5519a6f0263e96
FileChecksum: SHA1: b20803f22aa5e8f2ca963aa3c9beaa7ccfd10da1
LicenseConcluded: NOASSERTION
LicenseInfoInFile: LicenseRef-MIT-Trans-Rights
FileCopyrightText: <text>SPDX-FileCopyrightText: Sam Stephenson</text>
FileName: ./tests/brat/lib/brat/tap-status.awk
SPDXID: SPDXRef-1e7e5bed0f95bfa009d543db1bb860ab
FileChecksum: SHA1: 1a0dd22b029de78c7b9878f18152264772b2e93a
LicenseConcluded: NOASSERTION
LicenseInfoInFile: LicenseRef-MIT-Trans-Rights
FileCopyrightText: <text>SPDX-FileCopyrightText: Sam Stephenson</text>
FileName: ./tests/brat/lib/brat/terminal.awk
SPDXID: SPDXRef-ace4e536a8b25c6ef2ee575589ece0d9
FileChecksum: SHA1: 2cd0e5c5ab3d1593c38c5e10312d8e792f604748
LicenseConcluded: NOASSERTION
LicenseInfoInFile: LicenseRef-MIT-Trans-Rights
FileCopyrightText: <text>SPDX-FileCopyrightText: Sam Stephenson</text>
FileName: ./tests/brat/lib/brat/test.sh
SPDXID: SPDXRef-db9fa881261298ad3dba4eca14aa66ff
FileChecksum: SHA1: 31bf65c8db47d62a0528bd5793e58cf204a3bd77
LicenseConcluded: NOASSERTION
LicenseInfoInFile: LicenseRef-MIT-Trans-Rights
FileCopyrightText: <text>SPDX-FileCopyrightText: Sam Stephenson</text>
FileName: ./tests/brat/lib/brat/wcwidth.awk
SPDXID: SPDXRef-067a7a6eb813edbf72757b0842552a51
FileChecksum: SHA1: 8751c5661ee548a8d07e67ceb06b2f441b6a570c
LicenseConcluded: NOASSERTION
LicenseInfoInFile: BSD-2-Clause
FileCopyrightText: <text>SPDX-FileCopyrightText: Eric Pruitt</text>
FileName: ./tests/brat/libexec/brat--tap-format
SPDXID: SPDXRef-4b754092bd92dda6453972edec9f97cf
FileChecksum: SHA1: 5037718fe9c4248411efab0bf332ea57b42bdee4
LicenseConcluded: NOASSERTION
LicenseInfoInFile: LicenseRef-MIT-Trans-Rights
FileCopyrightText: <text>SPDX-FileCopyrightText: Sam Stephenson</text>
FileName: ./tests/brat/libexec/brat-plan-build
SPDXID: SPDXRef-d6124b20d6e3127b10e6829f91b61c71
FileChecksum: SHA1: b86f90f8c820bfd912bf16110c50123266d441ba
LicenseConcluded: NOASSERTION
LicenseInfoInFile: LicenseRef-MIT-Trans-Rights
FileCopyrightText: <text>SPDX-FileCopyrightText: Sam Stephenson</text>
FileName: ./tests/brat/libexec/brat-plan-run
SPDXID: SPDXRef-9da5f453c7ab7532d4ededc567800aed
FileChecksum: SHA1: 82a0861020488b7149f978440c3bb0efd885dfeb
LicenseConcluded: NOASSERTION
LicenseInfoInFile: LicenseRef-MIT-Trans-Rights
FileCopyrightText: <text>SPDX-FileCopyrightText: Sam Stephenson</text>
FileName: ./tests/brat/libexec/brat-test--preprocess
SPDXID: SPDXRef-470fe677861374ce2405bf31ca4296d0
FileChecksum: SHA1: fc01586a276d8eca819efea461592c7a06fe99ec
LicenseConcluded: NOASSERTION
LicenseInfoInFile: LicenseRef-MIT-Trans-Rights
FileCopyrightText: <text>SPDX-FileCopyrightText: Sam Stephenson</text>
FileName: ./tests/brat/libexec/brat-test-plan
SPDXID: SPDXRef-bb4d48127591cbfba935a001ad2a7e68
FileChecksum: SHA1: da3858e34d749acbd37d8d377670aad363069a0d
LicenseConcluded: NOASSERTION
LicenseInfoInFile: LicenseRef-MIT-Trans-Rights
FileCopyrightText: <text>SPDX-FileCopyrightText: Sam Stephenson</text>
FileName: ./tests/brat/libexec/brat-test-run
SPDXID: SPDXRef-185df2aa002adad962987dbaefedc21c
FileChecksum: SHA1: c067cfd65c913450cb48fb294af1228123e589ab
LicenseConcluded: NOASSERTION
LicenseInfoInFile: LicenseRef-MIT-Trans-Rights
FileCopyrightText: <text>SPDX-FileCopyrightText: Sam Stephenson</text>
FileName: ./tests/lsusb-D.brat
SPDXID: SPDXRef-077e5380ec67e40be5193faf8d0b4c12
FileChecksum: SHA1: 5efc204d02aafe52099010953483230ca55f16f9
LicenseConcluded: NOASSERTION
LicenseInfoInFile: GPL-2.0-only
FileCopyrightText: <text>SPDX-FileCopyrightText: 2026 Greg Kroah-Hartman <gregkh@linuxfoundation.org></text>
FileName: ./tests/lsusb-d.brat
SPDXID: SPDXRef-3e5f493c632cb2c12d67d443cda16abf
FileChecksum: SHA1: 95786feb9ef10ad570ede1ee185ce651bf3a82ff
LicenseConcluded: NOASSERTION
LicenseInfoInFile: GPL-2.0-only
FileCopyrightText: <text>SPDX-FileCopyrightText: 2026 Greg Kroah-Hartman <gregkh@linuxfoundation.org></text>
FileName: ./tests/lsusb-h.brat
SPDXID: SPDXRef-cc52f431bee2755c8c6c9e94106fd0e8
FileChecksum: SHA1: 90091f29b4f1d80e80fc226d0c9cd24beaf91c70
LicenseConcluded: NOASSERTION
LicenseInfoInFile: GPL-2.0-only
FileCopyrightText: <text>SPDX-FileCopyrightText: 2026 Greg Kroah-Hartman <gregkh@linuxfoundation.org></text>
FileName: ./tests/lsusb-s.brat
SPDXID: SPDXRef-74aadc123b626e2d4e19b3f472868674
FileChecksum: SHA1: b63918b61edda7750e5305cbf6cb811baafe2aa7
LicenseConcluded: NOASSERTION
LicenseInfoInFile: GPL-2.0-only
FileCopyrightText: <text>SPDX-FileCopyrightText: 2026 Greg Kroah-Hartman <gregkh@linuxfoundation.org></text>
FileName: ./tests/lsusb-t.brat
SPDXID: SPDXRef-a9fbe4a92c6f0903a0056a6fba71305e
FileChecksum: SHA1: 7f4a4f7b1cd110a9e6d967bf503a42da0552dcde
LicenseConcluded: NOASSERTION
LicenseInfoInFile: GPL-2.0-only
FileCopyrightText: <text>SPDX-FileCopyrightText: 2026 Greg Kroah-Hartman <gregkh@linuxfoundation.org></text>
FileName: ./tests/lsusb.brat
SPDXID: SPDXRef-2a8aa0414935ffbd11f5fed39115b898
FileChecksum: SHA1: 43a8973b029637bed315538d0fcfa766c6dac89e
LicenseConcluded: NOASSERTION
LicenseInfoInFile: GPL-2.0-only
FileCopyrightText: <text>SPDX-FileCopyrightText: 2026 Greg Kroah-Hartman <gregkh@linuxfoundation.org></text>
FileName: ./tests/lsusb.py-C.brat
SPDXID: SPDXRef-355a0409fb954c93cfa2ba803c2ee7b2
FileChecksum: SHA1: 69d5b332ae0a85afb7f1707c054ed52a42f9e352
LicenseConcluded: NOASSERTION
LicenseInfoInFile: GPL-2.0-only
FileCopyrightText: <text>SPDX-FileCopyrightText: 2026 Greg Kroah-Hartman <gregkh@linuxfoundation.org></text>
FileName: ./tests/lsusb.py-I.brat
SPDXID: SPDXRef-a22e0299266ff5393dc8beaf3e2ffcd6
FileChecksum: SHA1: 4c50efe15bca80d62156ba9ecb5ebdf488013539
LicenseConcluded: NOASSERTION
LicenseInfoInFile: GPL-2.0-only
FileCopyrightText: <text>SPDX-FileCopyrightText: 2026 Greg Kroah-Hartman <gregkh@linuxfoundation.org></text>
FileName: ./tests/lsusb.py-U.brat
SPDXID: SPDXRef-92bb052353d398aa95332362072c951e
FileChecksum: SHA1: 64467fbbb83c1593221d2569a2638be71869011c
LicenseConcluded: NOASSERTION
LicenseInfoInFile: GPL-2.0-only
FileCopyrightText: <text>SPDX-FileCopyrightText: 2026 Greg Kroah-Hartman <gregkh@linuxfoundation.org></text>
FileName: ./tests/lsusb.py-c.brat
SPDXID: SPDXRef-a32fe22e0cc78542807dd3784982fedf
FileChecksum: SHA1: bd568acc522471f4ac94761caabb5b1665b7d24a
LicenseConcluded: NOASSERTION
LicenseInfoInFile: GPL-2.0-only
FileCopyrightText: <text>SPDX-FileCopyrightText: 2026 Greg Kroah-Hartman <gregkh@linuxfoundation.org></text>
FileName: ./tests/lsusb.py-e.brat
SPDXID: SPDXRef-8ef5fbae844685e006588398d54f1b8f
FileChecksum: SHA1: ae6efd5b9fecfb8cf69a45dcf9f31d5ae2f70c03
LicenseConcluded: NOASSERTION
LicenseInfoInFile: GPL-2.0-only
FileCopyrightText: <text>SPDX-FileCopyrightText: 2026 Greg Kroah-Hartman <gregkh@linuxfoundation.org></text>
FileName: ./tests/lsusb.py-f.brat
SPDXID: SPDXRef-194ac2b76a3cf9463e41d1e6c3fdda99
FileChecksum: SHA1: e294a2557b9210ee01f5a1d52ec82c1c70d16ef1
LicenseConcluded: NOASSERTION
LicenseInfoInFile: GPL-2.0-only
FileCopyrightText: <text>SPDX-FileCopyrightText: 2026 Greg Kroah-Hartman <gregkh@linuxfoundation.org></text>
FileName: ./tests/lsusb.py-h.brat
SPDXID: SPDXRef-59d8e50e396c6124d46bff026c66ae3e
FileChecksum: SHA1: cf6dce707401d3ec215b6fbf9e4738e555edb1c6
LicenseConcluded: NOASSERTION
LicenseInfoInFile: GPL-2.0-only
FileCopyrightText: <text>SPDX-FileCopyrightText: 2026 Greg Kroah-Hartman <gregkh@linuxfoundation.org></text>
FileName: ./tests/lsusb.py-i.brat
SPDXID: SPDXRef-1d8a8449cec4b0009e0fcf9d0b83a965
FileChecksum: SHA1: 4fe7059a09df80ef5fe4ab2d0227eb05952f6ba7
LicenseConcluded: NOASSERTION
LicenseInfoInFile: GPL-2.0-only
FileCopyrightText: <text>SPDX-FileCopyrightText: 2026 Greg Kroah-Hartman <gregkh@linuxfoundation.org></text>
FileName: ./tests/lsusb.py-u.brat
SPDXID: SPDXRef-c1115acee993ad94922fabffa1e35235
FileChecksum: SHA1: 940da04d549acdcc63522197694c0ffe974360fe
LicenseConcluded: NOASSERTION
LicenseInfoInFile: GPL-2.0-only
FileCopyrightText: <text>SPDX-FileCopyrightText: 2026 Greg Kroah-Hartman <gregkh@linuxfoundation.org></text>
FileName: ./tests/lsusb.py-w.brat
SPDXID: SPDXRef-041c4033577b1d699f8aef1875c3b118
FileChecksum: SHA1: 42855618bae398d95ec017e1e1c060f4f0ab05ef
LicenseConcluded: NOASSERTION
LicenseInfoInFile: GPL-2.0-only
FileCopyrightText: <text>SPDX-FileCopyrightText: 2026 Greg Kroah-Hartman <gregkh@linuxfoundation.org></text>
FileName: ./tests/lsusb.py.brat
SPDXID: SPDXRef-90e82f04cc232eed838b36019e813d6a
FileChecksum: SHA1: ec8b064efcbf7fd85b4471de0e1a8a1a974193fc
LicenseConcluded: NOASSERTION
LicenseInfoInFile: GPL-2.0-only
FileCopyrightText: <text>SPDX-FileCopyrightText: 2026 Greg Kroah-Hartman <gregkh@linuxfoundation.org></text>
FileName: ./tests/run
SPDXID: SPDXRef-b7756e3d3be88d096157ab716bbc20a5
FileChecksum: SHA1: 095ab1a440374b40747458b6606fb9e516620b92
LicenseConcluded: NOASSERTION
LicenseInfoInFile: GPL-2.0-only
FileCopyrightText: <text>SPDX-FileCopyrightText: 2026 Greg Kroah-Hartman <gregkh@linuxfoundation.org></text>
FileName: ./tests/usb-devices.brat
SPDXID: SPDXRef-56c6dc57d1a1b00f935032c7394a7ab3
FileChecksum: SHA1: e7da5e5655d8e9e05e31d85f3da1d1a224e40b4d
LicenseConcluded: NOASSERTION
LicenseInfoInFile: GPL-2.0-only
FileCopyrightText: <text>SPDX-FileCopyrightText: 2026 Greg Kroah-Hartman <gregkh@linuxfoundation.org></text>
FileName: ./usb-devices
SPDXID: SPDXRef-854845852c2fd2884a46f1fd683d6adc
FileChecksum: SHA1: fc42adb5fecf46dbf6f1434865a994acf1983cd4
LicenseConcluded: NOASSERTION
LicenseInfoInFile: GPL-2.0-or-later
FileCopyrightText: <text>Copyright (C) 2009 Frans Pop <elendil@planet.nl>
Copyright (C) 2009 Greg Kroah-Hartman <greg@kroah.com>
Copyright (C) 2009 Randy Dunlap <rdunlap@xenotime.net></text>
FileName: ./usb-spec.h
SPDXID: SPDXRef-c836d4b1a73772503ba8a88e1a0a7a0a
FileChecksum: SHA1: a711e87eb0f305df1304e71f3a1b72c43259500c
LicenseConcluded: NOASSERTION
LicenseInfoInFile: GPL-2.0-or-later
FileCopyrightText: <text>Copyright (C) 2013 Tom Gundersen <teg@jklm.no></text>
FileName: ./usbhid-dump/NEWS
SPDXID: SPDXRef-5caab38b28b28a1e757052f304adfd8d
FileChecksum: SHA1: 81f641160fd9f17f89a195cc782e8be3fb7d9975
LicenseConcluded: NOASSERTION
LicenseInfoInFile: GPL-2.0-or-later
FileCopyrightText: <text>Copyright (C) 2010 Nikolai Kondrashov</text>
FileName: ./usbhid-dump/README.md
SPDXID: SPDXRef-a4ab912da758ea90ac0483b463d76f54
FileChecksum: SHA1: b184daca1cf24a499f3f4905f223e8f4e0dcb53a
LicenseConcluded: NOASSERTION
LicenseInfoInFile: GPL-2.0-or-later
FileCopyrightText: <text>Copyright (C) 2010 Nikolai Kondrashov</text>
FileName: ./usbhid-dump/dev.c
SPDXID: SPDXRef-3fcb43cc533d0519e5a1ecdc4afe58ac
FileChecksum: SHA1: 4c9696f2bb21d5bec12d9220015901727dac5102
LicenseConcluded: NOASSERTION
LicenseInfoInFile: GPL-2.0-or-later
FileCopyrightText: <text>Copyright (C) 2010 Nikolai Kondrashov <spbnick@gmail.com></text>
FileName: ./usbhid-dump/dev.h
SPDXID: SPDXRef-ae23252b6ad2e41711854d105a1c5eb1
FileChecksum: SHA1: 96cdc442559e68fb59c9503c928a307ea238920e
LicenseConcluded: NOASSERTION
LicenseInfoInFile: GPL-2.0-or-later
FileCopyrightText: <text>Copyright (C) 2010-2011 Nikolai Kondrashov <spbnick@gmail.com></text>
FileName: ./usbhid-dump/dev_list.c
SPDXID: SPDXRef-1a8504143bfcae1608b9dadf439c07a5
FileChecksum: SHA1: 137276661349838c4ad6885b664381ac4851bf75
LicenseConcluded: NOASSERTION
LicenseInfoInFile: GPL-2.0-or-later
FileCopyrightText: <text>Copyright (C) 2010 Nikolai Kondrashov <spbnick@gmail.com></text>
FileName: ./usbhid-dump/dev_list.h
SPDXID: SPDXRef-ee077519a1819cd18bdc95353d67a9a9
FileChecksum: SHA1: 08a5b92c57ccc998d93f2503a9afd0b5b2612509
LicenseConcluded: NOASSERTION
LicenseInfoInFile: GPL-2.0-or-later
FileCopyrightText: <text>Copyright (C) 2010-2011 Nikolai Kondrashov <spbnick@gmail.com></text>
FileName: ./usbhid-dump/iface.c
SPDXID: SPDXRef-863fe4948868393488cf4374dc1bf336
FileChecksum: SHA1: 555e382ded54de784aa8ef332be736fcb995962b
LicenseConcluded: NOASSERTION
LicenseInfoInFile: GPL-2.0-or-later
FileCopyrightText: <text>Copyright (C) 2010 Nikolai Kondrashov <spbnick@gmail.com></text>
FileName: ./usbhid-dump/iface.h
SPDXID: SPDXRef-f46891395f23dbf7ef217ba349f459cc
FileChecksum: SHA1: 15e98e57e65d44484e3f2b30339fbeb872b1586c
LicenseConcluded: NOASSERTION
LicenseInfoInFile: GPL-2.0-or-later
FileCopyrightText: <text>Copyright (C) 2010 Nikolai Kondrashov <spbnick@gmail.com></text>
FileName: ./usbhid-dump/iface_list.c
SPDXID: SPDXRef-dbdcddf16939f9896bb4808dec44839e
FileChecksum: SHA1: 9ed8e0cfdd50b9382cfe265cbb28c0d318c505a9
LicenseConcluded: NOASSERTION
LicenseInfoInFile: GPL-2.0-or-later
FileCopyrightText: <text>Copyright (C) 2010 Nikolai Kondrashov <spbnick@gmail.com></text>
FileName: ./usbhid-dump/iface_list.h
SPDXID: SPDXRef-c512878b7b8cf31c0355d5a0b73db890
FileChecksum: SHA1: 138b3f3abc179b8dcbebe9cd54a73f8926605046
LicenseConcluded: NOASSERTION
LicenseInfoInFile: GPL-2.0-or-later
FileCopyrightText: <text>Copyright (C) 2010 Nikolai Kondrashov <spbnick@gmail.com></text>
FileName: ./usbhid-dump/misc.h
SPDXID: SPDXRef-fec14677e17d08b48398f4f72075559e
FileChecksum: SHA1: 34d87817331e78b6ea51fc4d9a897b0944f1bdc8
LicenseConcluded: NOASSERTION
LicenseInfoInFile: GPL-2.0-or-later
FileCopyrightText: <text>Copyright (C) 2010 Nikolai Kondrashov <spbnick@gmail.com></text>
FileName: ./usbhid-dump/usbhid-dump.c
SPDXID: SPDXRef-e655c84f9cc2c2bb9a13dcd1a6e079f5
FileChecksum: SHA1: 2c9af8c9b7e79cee7ff839974ca03108c57a6e42
LicenseConcluded: NOASSERTION
LicenseInfoInFile: GPL-2.0-or-later
FileCopyrightText: <text>Copyright (C) 2010 Nikolai Kondrashov\n
Copyright (C) 2010-2011 Nikolai Kondrashov <spbnick@gmail.com></text>
FileName: ./usbmisc.c
SPDXID: SPDXRef-a5946b1a9eb230da3f3752c75257b8e4
FileChecksum: SHA1: 98e9097907c3c06194612d979fdf136b1cb67c2d
LicenseConcluded: NOASSERTION
LicenseInfoInFile: GPL-2.0-or-later
FileCopyrightText: <text>Copyright (C) 2003 Aurelien Jarno (aurelien@aurel32.net)</text>
FileName: ./usbmisc.h
SPDXID: SPDXRef-e99e2d061caabfd49e2c6a1967bed2c5
FileChecksum: SHA1: c568e376e13e81e59ae1977a02a52562e7650bdc
LicenseConcluded: NOASSERTION
LicenseInfoInFile: GPL-2.0-or-later
FileCopyrightText: <text>Copyright (C) 2003 Aurelien Jarno (aurelien@aurel32.net)</text>
FileName: ./usbreset.c
SPDXID: SPDXRef-9ce27a3f2ace38d0bda5ac4efff82eda
FileChecksum: SHA1: 7822e9966623a7380c77181d22f6c067f40a2a77
LicenseConcluded: NOASSERTION
LicenseInfoInFile: GPL-2.0-only
FileCopyrightText: <text>Copyright (C) 2009-2016 Alan Stern</text>
LicenseID: LicenseRef-MIT-Trans-Rights
LicenseName: NOASSERTION
ExtractedText: <text>MIT + Trans Rights License
Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the “Software”), to deal in
the Software without restriction, including without limitation the rights to
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
the Software, and to permit persons to whom the Software is furnished to do so,
subject to the following conditions:
The above copyright notice, this permission notice, and the affirmation that
TRANS RIGHTS ARE HUMAN RIGHTS shall be included in all copies or substantial
portions of the Software.
THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
</text>