aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xfpga/usrp3/tools/utils/update_image_cores.sh13
1 files changed, 13 insertions, 0 deletions
diff --git a/fpga/usrp3/tools/utils/update_image_cores.sh b/fpga/usrp3/tools/utils/update_image_cores.sh
new file mode 100755
index 000000000..f4f678034
--- /dev/null
+++ b/fpga/usrp3/tools/utils/update_image_cores.sh
@@ -0,0 +1,13 @@
+#!/usr/bin/bash
+
+TOP_DIR=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )/../../top
+
+for device_top in e31x e320 n3xx x300 x400; do
+ curr_path=$(realpath ${TOP_DIR}/${device_top})
+ echo "Updating image cores in $curr_path..."
+ cd $curr_path
+ for yml_f in *core.yml; do
+ echo "Regenerating from $yml_f..."
+ rfnoc_image_builder -y $yml_f -o `basename $yml_f .yml`.v -H -D -G -l warning $@
+ done
+done