summaryrefslogtreecommitdiff
path: root/SConscript
diff options
context:
space:
mode:
authorsakumisu <[email protected]>2025-05-15 16:08:25 +0800
committersakumisu <[email protected]>2025-05-15 17:23:35 +0800
commiteadcf7530b66262c62cb8a3867ff582587ddfbb0 (patch)
tree7f329c1b7d9e56c6dab8a8633dcae56335b488e0 /SConscript
parent43692c0ba20ae62948da8cb438a3c64aa57ce31c (diff)
refacor(port/hpmicro): move hpmicro glue into hpmicro directory
Signed-off-by: sakumisu <[email protected]>
Diffstat (limited to 'SConscript')
-rw-r--r--SConscript6
1 files changed, 4 insertions, 2 deletions
diff --git a/SConscript b/SConscript
index 93730091..ff70d0e5 100644
--- a/SConscript
+++ b/SConscript
@@ -85,7 +85,8 @@ if GetDepend(['PKG_CHERRYUSB_DEVICE']):
if GetDepend(['PKG_CHERRYUSB_DEVICE_BL']):
src += Glob('port/bouffalolab/usb_dc_bl.c')
if GetDepend(['PKG_CHERRYUSB_DEVICE_HPM']):
- src += Glob('port/hpm/usb_dc_hpm.c')
+ src += Glob('port/hpmicro/usb_dc_hpm.c')
+ src += Glob('port/hpmicro/usb_glue_hpm.c')
if GetDepend(['PKG_CHERRYUSB_DEVICE_AIC']):
src += Glob('port/aic/usb_dc_aic.c')
src += Glob('port/aic/usb_dc_aic_ll.c')
@@ -169,7 +170,8 @@ if GetDepend(['PKG_CHERRYUSB_HOST']):
src += Glob('port/ehci/usb_glue_bouffalo.c')
if GetDepend(['PKG_CHERRYUSB_HOST_EHCI_HPM']):
src += Glob('port/ehci/usb_hc_ehci.c')
- src += Glob('port/ehci/usb_glue_hpm.c')
+ src += Glob('port/hpmicro/usb_hc_hpm.c')
+ src += Glob('port/hpmicro/usb_glue_hpm.c')
if GetDepend(['PKG_CHERRYUSB_HOST_EHCI_AIC']):
path += [cwd + '/port/ehci']
path += [cwd + '/port/ohci']