Browse Source

cores/misc: Rename 'misc' to 'no2misc' 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 years ago
parent
commit
1289f6eefc

+ 1 - 1
cores/hub75/no2core.mk

@@ -1,6 +1,6 @@
 CORE := hub75
 
-DEPS_hub75 := misc
+DEPS_hub75 := no2misc
 
 RTL_SRCS_hub75 := $(addprefix rtl/, \
 	hub75_bcm.v \

+ 1 - 1
cores/mem_cache/no2core.mk

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

+ 1 - 1
cores/misc/Makefile

@@ -1,4 +1,4 @@
-CORE := misc
+CORE := no2misc
 
 NO2BUILD_DIR ?= $(abspath ../../build)
 include $(NO2BUILD_DIR)/core-rules.mk

+ 3 - 3
cores/misc/no2core.mk

@@ -1,6 +1,6 @@
-CORE := misc
+CORE := no2misc
 
-RTL_SRCS_misc = $(addprefix rtl/, \
+RTL_SRCS_no2misc = $(addprefix rtl/, \
 	delay.v \
 	fifo_sync_ram.v \
 	fifo_sync_shift.v \
@@ -16,7 +16,7 @@ RTL_SRCS_misc = $(addprefix rtl/, \
 	xclk_wb.v \
 )
 
-TESTBENCHES_misc := \
+TESTBENCHES_no2misc := \
 	fifo_tb \
 	pdm_tb \
 	uart_tb \

+ 1 - 1
cores/qspi_master/no2core.mk

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

+ 1 - 1
cores/usb/no2core.mk

@@ -1,6 +1,6 @@
 CORE := no2usb
 
-DEPS_no2usb := misc
+DEPS_no2usb := no2misc
 
 RTL_SRCS_no2usb := $(addprefix rtl/, \
 	usb.v \

+ 1 - 1
cores/video/no2core.mk

@@ -1,6 +1,6 @@
 CORE := video
 
-DEPS_video := misc
+DEPS_video := no2misc
 
 RTL_SRCS_video := $(addprefix rtl/, \
 	hdmi_phy_2x.v \

+ 1 - 1
projects/boot_stub/Makefile

@@ -1,7 +1,7 @@
 # Project config
 PROJ = boot_stub
 
-PROJ_DEPS := misc
+PROJ_DEPS := no2misc
 PROJ_RTL_SRCS := $(addprefix rtl/, \
 )
 PROJ_TOP_SRC := rtl/top.v

+ 1 - 1
projects/memtest/Makefile

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

+ 1 - 1
projects/nano-pmod-up5k/Makefile

@@ -1,7 +1,7 @@
 # Project config
 PROJ = nano-pmod-up5k
 
-PROJ_DEPS := misc spi_slave
+PROJ_DEPS := no2misc spi_slave
 PROJ_RTL_SRCS := $(addprefix rtl/, \
 	nano_dsi_clk.v \
 	nano_dsi_data.v \

+ 1 - 1
projects/riscv_usb/Makefile

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