Index: /trunk/softs/tsar_boot/Makefile
===================================================================
--- /trunk/softs/tsar_boot/Makefile	(revision 405)
+++ /trunk/softs/tsar_boot/Makefile	(revision 406)
@@ -16,4 +16,8 @@
     endif
   endif
+endif
+
+ifeq ($(USE_DT), 0)
+	DTS=
 endif
 
@@ -54,6 +58,7 @@
 
 C_SRCS	   := boot_elf_loader.c boot_ioc.c boot_memcpy.c boot_tty.c exceptions.c
+
 ifndef SOCLIB
-C_SRCS	   += sdcard.c spi.c
+  C_SRCS   += sdcard.c spi.c
 endif
 
@@ -66,7 +71,12 @@
 TARGET     := bin.soft
 
+ifndef USE_DT
+  USE_DT := 1
+else
+  USE_DT := $(USE_DT)
+endif
 
 ifdef SYSCLK_FREQ
-DEFS+= -DSYSCLK_FREQ=$(SYSCLK_FREQ)
+  DEFS += -DSYSCLK_FREQ=$(SYSCLK_FREQ)
 endif
 
@@ -83,6 +93,10 @@
 
 $(BUILD_DIR)/platform.dtb: $(DTS)
+ifeq ($(USE_DT), 1)
 	$(ECHO) "[   DTC   ]     $(notdir $<)"
 	${DTC} -O dtb -o $@ $< &> /dev/null
+else
+	touch $@
+endif
 
 $(BUILD_DIR):
