소스 검색

cores/ice40: Rename 'ice40' to 'no2ice40' to prepare split

This will be split off in its own repo, so rename in preparation
for that.

Directory name is not changed yet as this would break history
when doing the split.

Signed-off-by: Sylvain Munaut <tnt@246tNt.com>
Sylvain Munaut 4 년 전
부모
커밋
e3c30a06d3
5개의 변경된 파일7개의 추가작업 그리고 7개의 파일을 삭제
  1. 3 3
      cores/ice40/no2core.mk
  2. 1 1
      cores/mem_cache/no2core.mk
  3. 1 1
      cores/qspi_master/no2core.mk
  4. 1 1
      projects/memtest/Makefile
  5. 1 1
      projects/riscv_usb/Makefile

+ 3 - 3
cores/ice40/no2core.mk

@@ -1,6 +1,6 @@
-CORE := ice40
+CORE := no2ice40
 
-RTL_SRCS_ice40 := $(addprefix rtl/, \
+RTL_SRCS_no2ice40 := $(addprefix rtl/, \
 	ice40_ebr.v \
 	ice40_spram_gen.v \
 	ice40_iserdes.v \
@@ -10,7 +10,7 @@ RTL_SRCS_ice40 := $(addprefix rtl/, \
 	ice40_serdes_sync.v \
 )
 
-TESTBENCHES_ice40 := \
+TESTBENCHES_no2ice40 := \
 	ice40_ebr_tb \
 	$(NULL)
 

+ 1 - 1
cores/mem_cache/no2core.mk

@@ -1,6 +1,6 @@
 CORE := mem_cache
 
-DEPS_mem_cache := no2misc ice40
+DEPS_mem_cache := no2misc no2ice40
 
 RTL_SRCS_mem_cache := $(addprefix rtl/, \
 	mc_bus_wb.v \

+ 1 - 1
cores/qspi_master/no2core.mk

@@ -1,6 +1,6 @@
 CORE := qspi_master
 
-DEPS_qspi_master = no2misc ice40
+DEPS_qspi_master = no2misc no2ice40
 
 RTL_SRCS_qspi_master := $(addprefix rtl/, \
 	qspi_master.v \

+ 1 - 1
projects/memtest/Makefile

@@ -1,7 +1,7 @@
 # Project config
 PROJ = memtest
 
-PROJ_DEPS := no2misc ice40
+PROJ_DEPS := no2misc no2ice40
 PROJ_RTL_SRCS := $(addprefix rtl/, \
 	memtest.v \
 	uart2wb.v \

+ 1 - 1
projects/riscv_usb/Makefile

@@ -1,7 +1,7 @@
 # Project config
 PROJ = riscv_usb
 
-PROJ_DEPS := no2usb no2misc ice40
+PROJ_DEPS := no2usb no2misc no2ice40
 PROJ_RTL_SRCS := $(addprefix rtl/, \
 	bridge.v \
 	dfu_helper.v \