From 530623f9bca03fd727dc4d8721646d96e59b8e03 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Israelson?= <57065102+israpps@users.noreply.github.com> Date: Wed, 31 Jan 2024 02:37:26 -0300 Subject: [PATCH] dont compile UDPBD if BDM was not requested too --- Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Makefile b/Makefile index 68efd8d6..0ee7168c 100644 --- a/Makefile +++ b/Makefile @@ -80,6 +80,9 @@ ifeq ($(MX4SIO),1) endif ifeq ($(UDPBD), 1) + ifneq ($(EXFAT),1) + $(error UDPBD Requested on build without BDM) + else $(info UDPBD enabled, disabling any other network feature) EE_OBJS += smap_udpbd.o HAS_UDPBD = -UDPBD