File tree Expand file tree Collapse file tree 2 files changed +8
-6
lines changed
components/drivers/usb/cherryusb Expand file tree Collapse file tree 2 files changed +8
-6
lines changed Original file line number Diff line number Diff line change 26
26
- ' **/*.c'
27
27
- ' **/*.h'
28
28
- ' **/*.cpp'
29
+ workflow_dispatch :
30
+ repository_dispatch :
29
31
30
32
permissions :
31
33
contents : read # to fetch code (actions/checkout)
60
62
61
63
- name : Build Tools
62
64
run : |
63
- scons --pyconfig-silent -C $TEST_BSP_ROOT
65
+ scons --pyconfig-silent -C $TEST_BSP_ROOT 2>menuconfig.log
66
+ cat menuconfig.log
67
+ if grep -q "warning:" menuconfig.log; then
68
+ echo "Errors found in menuconfig, failing the build."
69
+ exit 1
70
+ fi
64
71
scons -j$(nproc) -C $TEST_BSP_ROOT
65
72
66
73
- name : Project generate Tools
Original file line number Diff line number Diff line change @@ -229,23 +229,20 @@ if RT_USING_CHERRYUSB
229
229
bool
230
230
prompt "Enable usb cdc ecm driver"
231
231
select RT_USING_LWIP
232
- select RT_USING_LWIP212
233
232
select CONFIG_USBHOST_PLATFORM_CDC_ECM
234
233
default n
235
234
236
235
config RT_CHERRYUSB_HOST_CDC_RNDIS
237
236
bool
238
237
prompt "Enable usb rndis driver"
239
238
select RT_USING_LWIP
240
- select RT_USING_LWIP212
241
239
select CONFIG_USBHOST_PLATFORM_CDC_RNDIS
242
240
default n
243
241
244
242
config RT_CHERRYUSB_HOST_CDC_NCM
245
243
bool
246
244
prompt "Enable usb cdc ncm driver"
247
245
select RT_USING_LWIP
248
- select RT_USING_LWIP212
249
246
select CONFIG_USBHOST_PLATFORM_CDC_NCM
250
247
default n
251
248
@@ -268,15 +265,13 @@ if RT_USING_CHERRYUSB
268
265
bool
269
266
prompt "Enable usb asix driver"
270
267
select RT_USING_LWIP
271
- select RT_USING_LWIP212
272
268
select CONFIG_USBHOST_PLATFORM_ASIX
273
269
default n
274
270
275
271
config RT_CHERRYUSB_HOST_RTL8152
276
272
bool
277
273
prompt "Enable usb rtl8152 driver"
278
274
select RT_USING_LWIP
279
- select RT_USING_LWIP212
280
275
select CONFIG_USBHOST_PLATFORM_RTL8152
281
276
default n
282
277
You can’t perform that action at this time.
0 commit comments