From d6ba2dfb5cb524ba2116cb0c3613af9650e57d03 Mon Sep 17 00:00:00 2001 From: Wade Fife Date: Mon, 9 Sep 2024 14:32:00 -0500 Subject: [PATCH] Fix instances of sim preamble --- fpga/docs/usrp3/sim/writing_sim_makefile.md | 4 ++-- fpga/usrp3/export/x300/radio/Makefile | 2 +- fpga/usrp3/lib/rfnoc/blocks/rfnoc_block_addsub/Makefile | 2 +- fpga/usrp3/lib/rfnoc/blocks/rfnoc_block_ddc/Makefile | 2 +- fpga/usrp3/lib/rfnoc/blocks/rfnoc_block_duc/Makefile | 2 +- .../usrp3/lib/rfnoc/blocks/rfnoc_block_keep_one_in_n/Makefile | 2 +- .../usrp3/lib/rfnoc/blocks/rfnoc_block_license_check/Makefile | 2 +- fpga/usrp3/lib/rfnoc/blocks/rfnoc_block_logpwr/Makefile | 2 +- fpga/usrp3/lib/rfnoc/blocks/rfnoc_block_moving_avg/Makefile | 2 +- .../blocks/rfnoc_block_radio/rx_frontend_gen3_tb/Makefile | 2 +- fpga/usrp3/lib/rfnoc/blocks/rfnoc_block_siggen/Makefile | 2 +- fpga/usrp3/lib/rfnoc/blocks/rfnoc_block_split_stream/Makefile | 2 +- fpga/usrp3/lib/rfnoc/blocks/rfnoc_block_switchboard/Makefile | 2 +- fpga/usrp3/lib/rfnoc/blocks/rfnoc_block_vector_iir/Makefile | 2 +- fpga/usrp3/lib/rfnoc/blocks/rfnoc_block_window/Makefile | 2 +- fpga/usrp3/lib/rfnoc/sim/chdr_resize_tb/Makefile | 2 +- fpga/usrp3/lib/rfnoc/sim/eth_ipv4_interface_tb/Makefile | 2 +- fpga/usrp3/lib/sim/control/gearbox_2x1/Makefile | 2 +- .../lib/sim/io_cap_gen/cat_io_lvds_dual_mode_tb/Makefile | 2 +- fpga/usrp3/lib/sim/packet_proc/chdr_dechunker/Makefile | 2 +- fpga/usrp3/top/e31x/sim/dram_test/Makefile | 2 +- fpga/usrp3/top/e31x/sim/e310_io_tb/Makefile | 2 +- fpga/usrp3/top/n3xx/sim/arm_to_sfp_loopback/Makefile | 2 +- fpga/usrp3/top/n3xx/sim/aurora_loopback/Makefile | 2 +- fpga/usrp3/top/n3xx/sim/dram_fifo/Makefile | 2 +- fpga/usrp3/top/n3xx/sim/dram_fifo_bist/Makefile | 2 +- fpga/usrp3/top/n3xx/sim/one_gig_eth_loopback/Makefile | 2 +- fpga/usrp3/top/n3xx/sim/ten_gig_eth_loopback/Makefile | 2 +- fpga/usrp3/top/x300/sim/aurora_loopback/Makefile | 2 +- fpga/usrp3/top/x300/sim/dram_fifo/Makefile | 2 +- fpga/usrp3/top/x300/sim/dram_fifo_bist/Makefile | 2 +- fpga/usrp3/top/x300/sim/x300_pcie_int/Makefile | 2 +- fpga/usrp3/top/x400/dboards/fbx/sim/clock_en_control/Makefile | 2 +- fpga/usrp3/top/x400/dboards/fbx/sim/i2c_sync_ctrl/Makefile | 2 +- fpga/usrp3/top/x400/rf/sim/Makefile | 2 +- host/examples/rfnoc-gain/fpga/gain/rfnoc_block_gain/Makefile | 2 +- host/python/uhd/rfnoc_utils/templates/blocktool/Makefile.mako | 2 +- 37 files changed, 38 insertions(+), 38 deletions(-) diff --git a/fpga/docs/usrp3/sim/writing_sim_makefile.md b/fpga/docs/usrp3/sim/writing_sim_makefile.md index c503e7e047..38ed65c463 100644 --- a/fpga/docs/usrp3/sim/writing_sim_makefile.md +++ b/fpga/docs/usrp3/sim/writing_sim_makefile.md @@ -23,7 +23,7 @@ template for your RFNoC block. $(error "UHD_FPGA_DIR is not set! Must point to UHD FPGA repository!") endif BASE_DIR = $(UHD_FPGA_DIR)/usrp3/top - # Include viv_sim_preample after defining BASE_DIR + # Include viv_sim_preamble after defining BASE_DIR include $(BASE_DIR)/../tools/make/viv_sim_preamble.mak #------------------------------------------------- @@ -104,7 +104,7 @@ You will notice that the Makefile has 5 distinct sections. $(error "UHD_FPGA_DIR is not set! Must point to UHD FPGA repository!") endif BASE_DIR = $(UHD_FPGA_DIR)/usrp3/top - # Include viv_sim_preample after defining BASE_DIR + # Include viv_sim_preamble after defining BASE_DIR include $(BASE_DIR)/../tools/make/viv_sim_preamble.mak Before declaring any variables or using any recipes, the following must be diff --git a/fpga/usrp3/export/x300/radio/Makefile b/fpga/usrp3/export/x300/radio/Makefile index d5d28e08c8..c6f5079db6 100644 --- a/fpga/usrp3/export/x300/radio/Makefile +++ b/fpga/usrp3/export/x300/radio/Makefile @@ -4,7 +4,7 @@ # Define BASE_DIR to point to the "top" dir BASE_DIR = $(abspath ../../../top) -# Include viv_sim_preample after defining BASE_DIR +# Include viv_sim_preamble after defining BASE_DIR include $(BASE_DIR)/../tools/make/viv_design_builder.mak #------------------------------------------------- diff --git a/fpga/usrp3/lib/rfnoc/blocks/rfnoc_block_addsub/Makefile b/fpga/usrp3/lib/rfnoc/blocks/rfnoc_block_addsub/Makefile index 2bca6ddf8b..c637af5775 100644 --- a/fpga/usrp3/lib/rfnoc/blocks/rfnoc_block_addsub/Makefile +++ b/fpga/usrp3/lib/rfnoc/blocks/rfnoc_block_addsub/Makefile @@ -9,7 +9,7 @@ #------------------------------------------------- # Define BASE_DIR to point to the "top" dir. BASE_DIR = ../../../../top -# Include viv_sim_preample after defining BASE_DIR +# Include viv_sim_preamble after defining BASE_DIR include $(BASE_DIR)/../tools/make/viv_sim_preamble.mak #------------------------------------------------- diff --git a/fpga/usrp3/lib/rfnoc/blocks/rfnoc_block_ddc/Makefile b/fpga/usrp3/lib/rfnoc/blocks/rfnoc_block_ddc/Makefile index cf2d5b0364..1f2b7a0a81 100644 --- a/fpga/usrp3/lib/rfnoc/blocks/rfnoc_block_ddc/Makefile +++ b/fpga/usrp3/lib/rfnoc/blocks/rfnoc_block_ddc/Makefile @@ -9,7 +9,7 @@ #------------------------------------------------- # Define BASE_DIR to point to the "top" dir. BASE_DIR = ../../../../top -# Include viv_sim_preample after defining BASE_DIR +# Include viv_sim_preamble after defining BASE_DIR include $(BASE_DIR)/../tools/make/viv_sim_preamble.mak #------------------------------------------------- diff --git a/fpga/usrp3/lib/rfnoc/blocks/rfnoc_block_duc/Makefile b/fpga/usrp3/lib/rfnoc/blocks/rfnoc_block_duc/Makefile index 7b1d18a8f4..263945b521 100644 --- a/fpga/usrp3/lib/rfnoc/blocks/rfnoc_block_duc/Makefile +++ b/fpga/usrp3/lib/rfnoc/blocks/rfnoc_block_duc/Makefile @@ -9,7 +9,7 @@ #------------------------------------------------- # Define BASE_DIR to point to the "top" dir. BASE_DIR = ../../../../top -# Include viv_sim_preample after defining BASE_DIR +# Include viv_sim_preamble after defining BASE_DIR include $(BASE_DIR)/../tools/make/viv_sim_preamble.mak #------------------------------------------------- diff --git a/fpga/usrp3/lib/rfnoc/blocks/rfnoc_block_keep_one_in_n/Makefile b/fpga/usrp3/lib/rfnoc/blocks/rfnoc_block_keep_one_in_n/Makefile index 17de7c3ae5..ad61f13ba9 100644 --- a/fpga/usrp3/lib/rfnoc/blocks/rfnoc_block_keep_one_in_n/Makefile +++ b/fpga/usrp3/lib/rfnoc/blocks/rfnoc_block_keep_one_in_n/Makefile @@ -8,7 +8,7 @@ # Top-of-Makefile #------------------------------------------------- BASE_DIR = $(abspath ../../../../top) -# Include viv_sim_preample after defining BASE_DIR +# Include viv_sim_preamble after defining BASE_DIR include $(BASE_DIR)/../tools/make/viv_sim_preamble.mak #------------------------------------------------- diff --git a/fpga/usrp3/lib/rfnoc/blocks/rfnoc_block_license_check/Makefile b/fpga/usrp3/lib/rfnoc/blocks/rfnoc_block_license_check/Makefile index 1e9dbed59c..7efc67962a 100644 --- a/fpga/usrp3/lib/rfnoc/blocks/rfnoc_block_license_check/Makefile +++ b/fpga/usrp3/lib/rfnoc/blocks/rfnoc_block_license_check/Makefile @@ -10,7 +10,7 @@ # Define BASE_DIR to point to the "top" dir. BASE_DIR = ../../../../top LIB_DIR = ../../../../lib -# Include viv_sim_preample after defining BASE_DIR +# Include viv_sim_preamble after defining BASE_DIR include $(BASE_DIR)/../tools/make/viv_sim_preamble.mak #------------------------------------------------- diff --git a/fpga/usrp3/lib/rfnoc/blocks/rfnoc_block_logpwr/Makefile b/fpga/usrp3/lib/rfnoc/blocks/rfnoc_block_logpwr/Makefile index 02d84e4506..ca711380f9 100644 --- a/fpga/usrp3/lib/rfnoc/blocks/rfnoc_block_logpwr/Makefile +++ b/fpga/usrp3/lib/rfnoc/blocks/rfnoc_block_logpwr/Makefile @@ -9,7 +9,7 @@ #------------------------------------------------- # Define BASE_DIR to point to the "top" dir. BASE_DIR = ../../../../top -# Include viv_sim_preample after defining BASE_DIR +# Include viv_sim_preamble after defining BASE_DIR include $(BASE_DIR)/../tools/make/viv_sim_preamble.mak #------------------------------------------------- diff --git a/fpga/usrp3/lib/rfnoc/blocks/rfnoc_block_moving_avg/Makefile b/fpga/usrp3/lib/rfnoc/blocks/rfnoc_block_moving_avg/Makefile index 4a499e512a..bb2ed4c4cc 100644 --- a/fpga/usrp3/lib/rfnoc/blocks/rfnoc_block_moving_avg/Makefile +++ b/fpga/usrp3/lib/rfnoc/blocks/rfnoc_block_moving_avg/Makefile @@ -10,7 +10,7 @@ # Define BASE_DIR to point to the "top" dir. Note: # UHD_FPGA_DIR must be passed into this Makefile. BASE_DIR = ../../../../top -# Include viv_sim_preample after defining BASE_DIR +# Include viv_sim_preamble after defining BASE_DIR include $(BASE_DIR)/../tools/make/viv_sim_preamble.mak #------------------------------------------------- diff --git a/fpga/usrp3/lib/rfnoc/blocks/rfnoc_block_radio/rx_frontend_gen3_tb/Makefile b/fpga/usrp3/lib/rfnoc/blocks/rfnoc_block_radio/rx_frontend_gen3_tb/Makefile index 1a8f9d1638..866d94d18c 100644 --- a/fpga/usrp3/lib/rfnoc/blocks/rfnoc_block_radio/rx_frontend_gen3_tb/Makefile +++ b/fpga/usrp3/lib/rfnoc/blocks/rfnoc_block_radio/rx_frontend_gen3_tb/Makefile @@ -9,7 +9,7 @@ #------------------------------------------------- # Define BASE_DIR to point to the "top" dir. BASE_DIR = $(abspath ../../../../../top) -# Include viv_sim_preample after defining BASE_DIR +# Include viv_sim_preamble after defining BASE_DIR include $(BASE_DIR)/../tools/make/viv_sim_preamble.mak #------------------------------------------------- diff --git a/fpga/usrp3/lib/rfnoc/blocks/rfnoc_block_siggen/Makefile b/fpga/usrp3/lib/rfnoc/blocks/rfnoc_block_siggen/Makefile index 92720c8ad2..0c9986ec0a 100644 --- a/fpga/usrp3/lib/rfnoc/blocks/rfnoc_block_siggen/Makefile +++ b/fpga/usrp3/lib/rfnoc/blocks/rfnoc_block_siggen/Makefile @@ -9,7 +9,7 @@ #------------------------------------------------- # Define BASE_DIR to point to the "top" dir. BASE_DIR = ../../../../top -# Include viv_sim_preample after defining BASE_DIR +# Include viv_sim_preamble after defining BASE_DIR include $(BASE_DIR)/../tools/make/viv_sim_preamble.mak #------------------------------------------------- diff --git a/fpga/usrp3/lib/rfnoc/blocks/rfnoc_block_split_stream/Makefile b/fpga/usrp3/lib/rfnoc/blocks/rfnoc_block_split_stream/Makefile index 8d97409886..4e42466879 100644 --- a/fpga/usrp3/lib/rfnoc/blocks/rfnoc_block_split_stream/Makefile +++ b/fpga/usrp3/lib/rfnoc/blocks/rfnoc_block_split_stream/Makefile @@ -9,7 +9,7 @@ #------------------------------------------------- # Define BASE_DIR to point to the "top" dir BASE_DIR = $(abspath ../../../../top) -# Include viv_sim_preample after defining BASE_DIR +# Include viv_sim_preamble after defining BASE_DIR include $(BASE_DIR)/../tools/make/viv_sim_preamble.mak #------------------------------------------------- diff --git a/fpga/usrp3/lib/rfnoc/blocks/rfnoc_block_switchboard/Makefile b/fpga/usrp3/lib/rfnoc/blocks/rfnoc_block_switchboard/Makefile index 7615450b6f..0c86534d60 100644 --- a/fpga/usrp3/lib/rfnoc/blocks/rfnoc_block_switchboard/Makefile +++ b/fpga/usrp3/lib/rfnoc/blocks/rfnoc_block_switchboard/Makefile @@ -9,7 +9,7 @@ #------------------------------------------------- # Define BASE_DIR to point to the "top" dir. BASE_DIR = $(abspath ../../../../top) -# Include viv_sim_preample after defining BASE_DIR +# Include viv_sim_preamble after defining BASE_DIR include $(BASE_DIR)/../tools/make/viv_sim_preamble.mak #------------------------------------------------- diff --git a/fpga/usrp3/lib/rfnoc/blocks/rfnoc_block_vector_iir/Makefile b/fpga/usrp3/lib/rfnoc/blocks/rfnoc_block_vector_iir/Makefile index 0d60a7b9ad..d7d8e8b063 100644 --- a/fpga/usrp3/lib/rfnoc/blocks/rfnoc_block_vector_iir/Makefile +++ b/fpga/usrp3/lib/rfnoc/blocks/rfnoc_block_vector_iir/Makefile @@ -9,7 +9,7 @@ #------------------------------------------------- # Define BASE_DIR to point to the "top" dir. BASE_DIR = ../../../../top -# Include viv_sim_preample after defining BASE_DIR +# Include viv_sim_preamble after defining BASE_DIR include $(BASE_DIR)/../tools/make/viv_sim_preamble.mak #------------------------------------------------- diff --git a/fpga/usrp3/lib/rfnoc/blocks/rfnoc_block_window/Makefile b/fpga/usrp3/lib/rfnoc/blocks/rfnoc_block_window/Makefile index 83c7c2916a..b022480e04 100644 --- a/fpga/usrp3/lib/rfnoc/blocks/rfnoc_block_window/Makefile +++ b/fpga/usrp3/lib/rfnoc/blocks/rfnoc_block_window/Makefile @@ -9,7 +9,7 @@ #------------------------------------------------- # Define BASE_DIR to point to the "top" dir. BASE_DIR = ../../../../top -# Include viv_sim_preample after defining BASE_DIR +# Include viv_sim_preamble after defining BASE_DIR include $(BASE_DIR)/../tools/make/viv_sim_preamble.mak #------------------------------------------------- diff --git a/fpga/usrp3/lib/rfnoc/sim/chdr_resize_tb/Makefile b/fpga/usrp3/lib/rfnoc/sim/chdr_resize_tb/Makefile index 813ae2b13a..20f3354c19 100644 --- a/fpga/usrp3/lib/rfnoc/sim/chdr_resize_tb/Makefile +++ b/fpga/usrp3/lib/rfnoc/sim/chdr_resize_tb/Makefile @@ -9,7 +9,7 @@ #------------------------------------------------- # Define BASE_DIR to point to the "top" dir. BASE_DIR = $(abspath ../../../../top) -# Include viv_sim_preample after defining BASE_DIR +# Include viv_sim_preamble after defining BASE_DIR include $(BASE_DIR)/../tools/make/viv_sim_preamble.mak #------------------------------------------------- diff --git a/fpga/usrp3/lib/rfnoc/sim/eth_ipv4_interface_tb/Makefile b/fpga/usrp3/lib/rfnoc/sim/eth_ipv4_interface_tb/Makefile index 87c2cd9575..4520aab509 100644 --- a/fpga/usrp3/lib/rfnoc/sim/eth_ipv4_interface_tb/Makefile +++ b/fpga/usrp3/lib/rfnoc/sim/eth_ipv4_interface_tb/Makefile @@ -9,7 +9,7 @@ #------------------------------------------------- # Define BASE_DIR to point to the "top" dir. BASE_DIR = ../../../../top -# Include viv_sim_preample after defining BASE_DIR +# Include viv_sim_preamble after defining BASE_DIR include $(BASE_DIR)/../tools/make/viv_sim_preamble.mak #------------------------------------------------- diff --git a/fpga/usrp3/lib/sim/control/gearbox_2x1/Makefile b/fpga/usrp3/lib/sim/control/gearbox_2x1/Makefile index 48651a3051..9afee1f2cf 100644 --- a/fpga/usrp3/lib/sim/control/gearbox_2x1/Makefile +++ b/fpga/usrp3/lib/sim/control/gearbox_2x1/Makefile @@ -9,7 +9,7 @@ #------------------------------------------------- # Define BASE_DIR to point to the "top" dir. BASE_DIR = $(abspath ../../../../top) -# Include viv_sim_preample after defining BASE_DIR +# Include viv_sim_preamble after defining BASE_DIR include $(BASE_DIR)/../tools/make/viv_sim_preamble.mak #------------------------------------------------- diff --git a/fpga/usrp3/lib/sim/io_cap_gen/cat_io_lvds_dual_mode_tb/Makefile b/fpga/usrp3/lib/sim/io_cap_gen/cat_io_lvds_dual_mode_tb/Makefile index 3d795edda4..9997cbc2df 100644 --- a/fpga/usrp3/lib/sim/io_cap_gen/cat_io_lvds_dual_mode_tb/Makefile +++ b/fpga/usrp3/lib/sim/io_cap_gen/cat_io_lvds_dual_mode_tb/Makefile @@ -9,7 +9,7 @@ #------------------------------------------------- # Define BASE_DIR to point to the "top" dir. BASE_DIR = $(abspath ../../../../top) -# Include viv_sim_preample after defining BASE_DIR +# Include viv_sim_preamble after defining BASE_DIR include $(BASE_DIR)/../tools/make/viv_sim_preamble.mak #------------------------------------------------- diff --git a/fpga/usrp3/lib/sim/packet_proc/chdr_dechunker/Makefile b/fpga/usrp3/lib/sim/packet_proc/chdr_dechunker/Makefile index f73cbdae97..3b40ace477 100644 --- a/fpga/usrp3/lib/sim/packet_proc/chdr_dechunker/Makefile +++ b/fpga/usrp3/lib/sim/packet_proc/chdr_dechunker/Makefile @@ -7,7 +7,7 @@ #------------------------------------------------- # Define BASE_DIR to point to the "top" dir BASE_DIR = $(abspath ../../../../top) -# Include viv_sim_preample after defining BASE_DIR +# Include viv_sim_preamble after defining BASE_DIR include $(BASE_DIR)/../tools/make/viv_sim_preamble.mak #------------------------------------------------- diff --git a/fpga/usrp3/top/e31x/sim/dram_test/Makefile b/fpga/usrp3/top/e31x/sim/dram_test/Makefile index 91c59b4a58..65abc909cd 100644 --- a/fpga/usrp3/top/e31x/sim/dram_test/Makefile +++ b/fpga/usrp3/top/e31x/sim/dram_test/Makefile @@ -7,7 +7,7 @@ #------------------------------------------------- # Define BASE_DIR to point to the "top" dir BASE_DIR = $(abspath ../../..) -# Include viv_sim_preample after defining BASE_DIR +# Include viv_sim_preamble after defining BASE_DIR include $(BASE_DIR)/../tools/make/viv_sim_preamble.mak #------------------------------------------------- diff --git a/fpga/usrp3/top/e31x/sim/e310_io_tb/Makefile b/fpga/usrp3/top/e31x/sim/e310_io_tb/Makefile index 956c1f2115..1ca6d2fa19 100644 --- a/fpga/usrp3/top/e31x/sim/e310_io_tb/Makefile +++ b/fpga/usrp3/top/e31x/sim/e310_io_tb/Makefile @@ -7,7 +7,7 @@ #------------------------------------------------- # Define BASE_DIR to point to the "top" dir BASE_DIR = $(abspath ../../..) -# Include viv_sim_preample after defining BASE_DIR +# Include viv_sim_preamble after defining BASE_DIR include $(BASE_DIR)/../tools/make/viv_sim_preamble.mak #------------------------------------------------- diff --git a/fpga/usrp3/top/n3xx/sim/arm_to_sfp_loopback/Makefile b/fpga/usrp3/top/n3xx/sim/arm_to_sfp_loopback/Makefile index 1e783b2de7..bf96ecdb15 100644 --- a/fpga/usrp3/top/n3xx/sim/arm_to_sfp_loopback/Makefile +++ b/fpga/usrp3/top/n3xx/sim/arm_to_sfp_loopback/Makefile @@ -7,7 +7,7 @@ #------------------------------------------------- # Define BASE_DIR to point to the "top" dir BASE_DIR = $(abspath ../../..) -# Include viv_sim_preample after defining BASE_DIR +# Include viv_sim_preamble after defining BASE_DIR include $(BASE_DIR)/../tools/make/viv_sim_preamble.mak #------------------------------------------------- diff --git a/fpga/usrp3/top/n3xx/sim/aurora_loopback/Makefile b/fpga/usrp3/top/n3xx/sim/aurora_loopback/Makefile index c4cdf38ddf..63f66f6e15 100644 --- a/fpga/usrp3/top/n3xx/sim/aurora_loopback/Makefile +++ b/fpga/usrp3/top/n3xx/sim/aurora_loopback/Makefile @@ -7,7 +7,7 @@ #------------------------------------------------- # Define BASE_DIR to point to the "top" dir BASE_DIR = $(abspath ../../..) -# Include viv_sim_preample after defining BASE_DIR +# Include viv_sim_preamble after defining BASE_DIR include $(BASE_DIR)/../tools/make/viv_sim_preamble.mak #------------------------------------------------- diff --git a/fpga/usrp3/top/n3xx/sim/dram_fifo/Makefile b/fpga/usrp3/top/n3xx/sim/dram_fifo/Makefile index 0669aaa106..7b80918a2d 100644 --- a/fpga/usrp3/top/n3xx/sim/dram_fifo/Makefile +++ b/fpga/usrp3/top/n3xx/sim/dram_fifo/Makefile @@ -7,7 +7,7 @@ #------------------------------------------------- # Define BASE_DIR to point to the "top" dir BASE_DIR = $(abspath ../../..) -# Include viv_sim_preample after defining BASE_DIR +# Include viv_sim_preamble after defining BASE_DIR include $(BASE_DIR)/../tools/make/viv_sim_preamble.mak #------------------------------------------------- diff --git a/fpga/usrp3/top/n3xx/sim/dram_fifo_bist/Makefile b/fpga/usrp3/top/n3xx/sim/dram_fifo_bist/Makefile index b2959a24e3..247eb3b920 100644 --- a/fpga/usrp3/top/n3xx/sim/dram_fifo_bist/Makefile +++ b/fpga/usrp3/top/n3xx/sim/dram_fifo_bist/Makefile @@ -7,7 +7,7 @@ #------------------------------------------------- # Define BASE_DIR to point to the "top" dir BASE_DIR = $(abspath ../../..) -# Include viv_sim_preample after defining BASE_DIR +# Include viv_sim_preamble after defining BASE_DIR include $(BASE_DIR)/../tools/make/viv_sim_preamble.mak #------------------------------------------------- diff --git a/fpga/usrp3/top/n3xx/sim/one_gig_eth_loopback/Makefile b/fpga/usrp3/top/n3xx/sim/one_gig_eth_loopback/Makefile index 77c7c58c5c..43ae99b5ca 100644 --- a/fpga/usrp3/top/n3xx/sim/one_gig_eth_loopback/Makefile +++ b/fpga/usrp3/top/n3xx/sim/one_gig_eth_loopback/Makefile @@ -7,7 +7,7 @@ #------------------------------------------------- # Define BASE_DIR to point to the "top" dir BASE_DIR = $(abspath ../../..) -# Include viv_sim_preample after defining BASE_DIR +# Include viv_sim_preamble after defining BASE_DIR include $(BASE_DIR)/../tools/make/viv_sim_preamble.mak #------------------------------------------------- diff --git a/fpga/usrp3/top/n3xx/sim/ten_gig_eth_loopback/Makefile b/fpga/usrp3/top/n3xx/sim/ten_gig_eth_loopback/Makefile index c1271a40b9..247ab25276 100644 --- a/fpga/usrp3/top/n3xx/sim/ten_gig_eth_loopback/Makefile +++ b/fpga/usrp3/top/n3xx/sim/ten_gig_eth_loopback/Makefile @@ -7,7 +7,7 @@ #------------------------------------------------- # Define BASE_DIR to point to the "top" dir BASE_DIR = $(abspath ../../..) -# Include viv_sim_preample after defining BASE_DIR +# Include viv_sim_preamble after defining BASE_DIR include $(BASE_DIR)/../tools/make/viv_sim_preamble.mak #------------------------------------------------- diff --git a/fpga/usrp3/top/x300/sim/aurora_loopback/Makefile b/fpga/usrp3/top/x300/sim/aurora_loopback/Makefile index c4dc4a37d9..630b46d606 100644 --- a/fpga/usrp3/top/x300/sim/aurora_loopback/Makefile +++ b/fpga/usrp3/top/x300/sim/aurora_loopback/Makefile @@ -7,7 +7,7 @@ #------------------------------------------------- # Define BASE_DIR to point to the "top" dir BASE_DIR = $(abspath ../../..) -# Include viv_sim_preample after defining BASE_DIR +# Include viv_sim_preamble after defining BASE_DIR include $(BASE_DIR)/../tools/make/viv_sim_preamble.mak #------------------------------------------------- diff --git a/fpga/usrp3/top/x300/sim/dram_fifo/Makefile b/fpga/usrp3/top/x300/sim/dram_fifo/Makefile index f790a3bcab..44a78d835e 100644 --- a/fpga/usrp3/top/x300/sim/dram_fifo/Makefile +++ b/fpga/usrp3/top/x300/sim/dram_fifo/Makefile @@ -7,7 +7,7 @@ #------------------------------------------------- # Define BASE_DIR to point to the "top" dir BASE_DIR = $(abspath ../../..) -# Include viv_sim_preample after defining BASE_DIR +# Include viv_sim_preamble after defining BASE_DIR include $(BASE_DIR)/../tools/make/viv_sim_preamble.mak #------------------------------------------------- diff --git a/fpga/usrp3/top/x300/sim/dram_fifo_bist/Makefile b/fpga/usrp3/top/x300/sim/dram_fifo_bist/Makefile index 68fdfc3ccd..73cc19d3b6 100644 --- a/fpga/usrp3/top/x300/sim/dram_fifo_bist/Makefile +++ b/fpga/usrp3/top/x300/sim/dram_fifo_bist/Makefile @@ -7,7 +7,7 @@ #------------------------------------------------- # Define BASE_DIR to point to the "top" dir BASE_DIR = $(abspath ../../..) -# Include viv_sim_preample after defining BASE_DIR +# Include viv_sim_preamble after defining BASE_DIR include $(BASE_DIR)/../tools/make/viv_sim_preamble.mak #------------------------------------------------- diff --git a/fpga/usrp3/top/x300/sim/x300_pcie_int/Makefile b/fpga/usrp3/top/x300/sim/x300_pcie_int/Makefile index 02aaef59c5..e36e4dc155 100644 --- a/fpga/usrp3/top/x300/sim/x300_pcie_int/Makefile +++ b/fpga/usrp3/top/x300/sim/x300_pcie_int/Makefile @@ -7,7 +7,7 @@ #------------------------------------------------- # Define BASE_DIR to point to the "top" dir BASE_DIR = $(abspath ../../..) -# Include viv_sim_preample after defining BASE_DIR +# Include viv_sim_preamble after defining BASE_DIR include $(BASE_DIR)/../tools/make/viv_sim_preamble.mak #------------------------------------------------- diff --git a/fpga/usrp3/top/x400/dboards/fbx/sim/clock_en_control/Makefile b/fpga/usrp3/top/x400/dboards/fbx/sim/clock_en_control/Makefile index 4d1533c3ee..69c7697cba 100644 --- a/fpga/usrp3/top/x400/dboards/fbx/sim/clock_en_control/Makefile +++ b/fpga/usrp3/top/x400/dboards/fbx/sim/clock_en_control/Makefile @@ -9,7 +9,7 @@ #------------------------------------------------- # Define BASE_DIR to point to the "top" dir. BASE_DIR = ../../../../.. -# Include viv_sim_preample after defining BASE_DIR +# Include viv_sim_preamble after defining BASE_DIR include $(BASE_DIR)/../tools/make/viv_sim_preamble.mak #------------------------------------------------- diff --git a/fpga/usrp3/top/x400/dboards/fbx/sim/i2c_sync_ctrl/Makefile b/fpga/usrp3/top/x400/dboards/fbx/sim/i2c_sync_ctrl/Makefile index b963cb29b4..57dd45cd58 100644 --- a/fpga/usrp3/top/x400/dboards/fbx/sim/i2c_sync_ctrl/Makefile +++ b/fpga/usrp3/top/x400/dboards/fbx/sim/i2c_sync_ctrl/Makefile @@ -9,7 +9,7 @@ #------------------------------------------------- # Define BASE_DIR to point to the "top" dir. BASE_DIR = ../../../../.. -# Include viv_sim_preample after defining BASE_DIR +# Include viv_sim_preamble after defining BASE_DIR include $(BASE_DIR)/../tools/make/viv_sim_preamble.mak #------------------------------------------------- diff --git a/fpga/usrp3/top/x400/rf/sim/Makefile b/fpga/usrp3/top/x400/rf/sim/Makefile index 63c7e924b6..cd850c630e 100644 --- a/fpga/usrp3/top/x400/rf/sim/Makefile +++ b/fpga/usrp3/top/x400/rf/sim/Makefile @@ -9,7 +9,7 @@ #------------------------------------------------- # Define BASE_DIR to point to the "top" dir. BASE_DIR = ../../.. -# Include viv_sim_preample after defining BASE_DIR +# Include viv_sim_preamble after defining BASE_DIR include $(BASE_DIR)/../tools/make/viv_sim_preamble.mak #------------------------------------------------- diff --git a/host/examples/rfnoc-gain/fpga/gain/rfnoc_block_gain/Makefile b/host/examples/rfnoc-gain/fpga/gain/rfnoc_block_gain/Makefile index b349c5de2c..68af74555e 100644 --- a/host/examples/rfnoc-gain/fpga/gain/rfnoc_block_gain/Makefile +++ b/host/examples/rfnoc-gain/fpga/gain/rfnoc_block_gain/Makefile @@ -16,7 +16,7 @@ ifndef UHD_FPGA_DIR $(error "UHD_FPGA_DIR is not set! Must point to UHD FPGA repository!") endif BASE_DIR = $(UHD_FPGA_DIR)/usrp3/top -# Include viv_sim_preample after defining BASE_DIR +# Include viv_sim_preamble after defining BASE_DIR include $(BASE_DIR)/../tools/make/viv_sim_preamble.mak #------------------------------------------------- diff --git a/host/python/uhd/rfnoc_utils/templates/blocktool/Makefile.mako b/host/python/uhd/rfnoc_utils/templates/blocktool/Makefile.mako index 2cb5eabfc1..b7373efe1b 100644 --- a/host/python/uhd/rfnoc_utils/templates/blocktool/Makefile.mako +++ b/host/python/uhd/rfnoc_utils/templates/blocktool/Makefile.mako @@ -13,7 +13,7 @@ ifndef UHD_FPGA_DIR $(error "UHD_FPGA_DIR is not set! Must point to UHD FPGA repository!") endif BASE_DIR = $(UHD_FPGA_DIR)/usrp3/top -# Include viv_sim_preample after defining BASE_DIR +# Include viv_sim_preamble after defining BASE_DIR include $(BASE_DIR)/../tools/make/viv_sim_preamble.mak #-------------------------------------------------