blob: 6c7aa7e7d914aee4bc514a1a4e6a9581930c3d63 (
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
|
# Path-based auto-labeling for USB IP / port drivers.
# Maps changed dcd/hcd files under src/portable/ to their "Port <ip>" label.
# Consumed by actions/labeler (see .github/workflows/labeler.yml -> label-port job).
"Port DWC2":
- changed-files:
- any-glob-to-any-file: 'src/portable/synopsys/dwc2/**'
"Port EHCI":
- changed-files:
- any-glob-to-any-file: 'src/portable/ehci/**'
"Port OHCI":
- changed-files:
- any-glob-to-any-file: 'src/portable/ohci/**'
"Port FSDev":
- changed-files:
- any-glob-to-any-file: 'src/portable/st/stm32_fsdev/**'
"Port ChipIdea":
- changed-files:
- any-glob-to-any-file: 'src/portable/chipidea/**'
"Port NXP IP3511":
- changed-files:
- any-glob-to-any-file: 'src/portable/nxp/lpc_ip3511/**'
"Port NXP IP3516":
- changed-files:
- any-glob-to-any-file: 'src/portable/nxp/lpc_ip3516/**'
"Port MUSB":
- changed-files:
- any-glob-to-any-file:
- 'src/portable/mentor/musb/**'
- 'src/portable/sunxi/**'
"Port RUSB2":
- changed-files:
- any-glob-to-any-file: 'src/portable/renesas/rusb2/**'
"Port WCH USBFS":
- changed-files:
- any-glob-to-any-file: 'src/portable/wch/*usbfs*'
"Port WCH USBHS":
- changed-files:
- any-glob-to-any-file: 'src/portable/wch/*usbhs*'
"Port MAX3421":
- changed-files:
- any-glob-to-any-file: 'src/portable/analog/max3421/**'
"Port SAMD":
- changed-files:
- any-glob-to-any-file: 'src/portable/microchip/samd/**'
"Port SAMG":
- changed-files:
- any-glob-to-any-file: 'src/portable/microchip/samg/**'
"Port nRF":
- changed-files:
- any-glob-to-any-file: 'src/portable/nordic/nrf5x/**'
"Port Nuvoton":
- changed-files:
- any-glob-to-any-file: 'src/portable/nuvoton/**'
"Port RP2":
- changed-files:
- any-glob-to-any-file: 'src/portable/raspberrypi/**'
"Port MSP430":
- changed-files:
- any-glob-to-any-file: 'src/portable/ti/msp430x5xx/**'
|