aboutsummaryrefslogtreecommitdiffstats
path: root/images/Makefile
diff options
context:
space:
mode:
authorJosh Blum <josh@joshknows.com>2012-09-04 18:04:10 -0700
committerJosh Blum <josh@joshknows.com>2012-09-04 18:04:10 -0700
commit02b246fff2f272dd7b17e8c1fdca3a20dd17280a (patch)
tree3f22dab686a138ce21753480697561936e79db1e /images/Makefile
parentd84207264e0d08a12f6e680b22a60b388d71f2e7 (diff)
downloaduhd-02b246fff2f272dd7b17e8c1fdca3a20dd17280a.tar.gz
uhd-02b246fff2f272dd7b17e8c1fdca3a20dd17280a.tar.bz2
uhd-02b246fff2f272dd7b17e8c1fdca3a20dd17280a.zip
images: added entry for b100 2rx fpga image
Diffstat (limited to 'images/Makefile')
-rw-r--r--images/Makefile8
1 files changed, 7 insertions, 1 deletions
diff --git a/images/Makefile b/images/Makefile
index 827db28cd..562aa76c0 100644
--- a/images/Makefile
+++ b/images/Makefile
@@ -95,13 +95,19 @@ ifdef HAS_XTCLSH
_usrp_b100_fpga_dir = $(TOP_FPGA_DIR)/usrp2/top/B100
_usrp_b100_fpga_bin = $(BUILT_IMAGES_DIR)/usrp_b100_fpga.bin
-IMAGES_LIST += $(_usrp_b100_fpga_bin)
+_usrp_b100_fpga_2rx_bin = $(BUILT_IMAGES_DIR)/usrp_b100_fpga_2rx.bin
+IMAGES_LIST += $(_usrp_b100_fpga_bin) $(_usrp_b100_fpga_2rx_bin)
$(_usrp_b100_fpga_bin): $(GLOBAL_DEPS)
cd $(_usrp_b100_fpga_dir) && make -f Makefile.B100 clean
cd $(_usrp_b100_fpga_dir) && make -f Makefile.B100 bin
cp $(_usrp_b100_fpga_dir)/build-B100/B100.bin $@
+$(_usrp_b100_fpga_2rx_bin): $(GLOBAL_DEPS)
+ cd $(_usrp_b100_fpga_dir) && make -f Makefile.B100_2RX clean
+ cd $(_usrp_b100_fpga_dir) && make -f Makefile.B100_2RX bin
+ cp $(_usrp_b100_fpga_dir)/build-B100_2RX/B100.bin $@
+
endif
########################################################################