summaryrefslogtreecommitdiff
path: root/hw
diff options
context:
space:
mode:
authorHa Thach <[email protected]>2026-08-21 17:24:35 +0700
committerGitHub <[email protected]>2026-08-21 17:24:35 +0700
commitfd70160a2f5fd23de1abfbaefb6399746a90b588 (patch)
treed65fb7848c2365b45279a6727f001022f2ba7507 /hw
parentcb3caee74de7dbb9fc91a5fdb37b448a63eadae0 (diff)
parentc8e0e94d889cd9b9a423d36c2b194d50805d8272 (diff)
Merge pull request #3841 from hathach/build-filter
ci: scope the build matrix and HIL run to what a PR affects
Diffstat (limited to 'hw')
-rw-r--r--hw/bsp/mcx/family.cmake2
-rw-r--r--hw/bsp/rp2040/family.cmake1
-rw-r--r--hw/bsp/samd2x_l2x/family.cmake1
3 files changed, 1 insertions, 3 deletions
diff --git a/hw/bsp/mcx/family.cmake b/hw/bsp/mcx/family.cmake
index b2b4fd45b..00c8c4ead 100644
--- a/hw/bsp/mcx/family.cmake
+++ b/hw/bsp/mcx/family.cmake
@@ -95,7 +95,7 @@ function(family_configure_example TARGET RTOS)
endif()
# PORT is set per board (board.cmake), so pick the driver at configure time. Spelled out
- # rather than $<IF:${PORT},...> so the port path stays greppable: test/hil/helper/hil_select.py
+ # rather than $<IF:${PORT},...> so the port path stays greppable: tools/ci_select.py
# maps a portable-driver change to the families whose build file names that directory.
if (PORT)
set(PORT_SRC ${TOP}/src/portable/chipidea/ci_hs/dcd_ci_hs.c)
diff --git a/hw/bsp/rp2040/family.cmake b/hw/bsp/rp2040/family.cmake
index 43b1dc234..57be416a2 100644
--- a/hw/bsp/rp2040/family.cmake
+++ b/hw/bsp/rp2040/family.cmake
@@ -126,7 +126,6 @@ target_sources(tinyusb_host_base INTERFACE
${TOP}/src/class/midi/midi_host.c
${TOP}/src/class/midi/midi2_host.c
${TOP}/src/class/msc/msc_host.c
- ${TOP}/src/class/vendor/vendor_host.c
)
# Sometimes have to do host specific actions in mostly common functions
diff --git a/hw/bsp/samd2x_l2x/family.cmake b/hw/bsp/samd2x_l2x/family.cmake
index 76371ccdc..2edcea0cd 100644
--- a/hw/bsp/samd2x_l2x/family.cmake
+++ b/hw/bsp/samd2x_l2x/family.cmake
@@ -106,7 +106,6 @@ function(family_configure_example TARGET RTOS)
${CMAKE_CURRENT_FUNCTION_LIST_DIR}/family.c
${CMAKE_CURRENT_FUNCTION_LIST_DIR}/../board.c
${TOP}/src/portable/microchip/samd/dcd_samd.c
- ${TOP}/src/portable/microchip/samd/hcd_samd.c
${STARTUP_FILE_${CMAKE_C_COMPILER_ID}}
)
# Add HCD support for SAMD21 (has host capability)