From 1ebf11e947a0801ba56f385541b096b4c674fabf Mon Sep 17 00:00:00 2001 From: klueska Date: Tue, 11 Mar 2008 09:51:22 +0000 Subject: [PATCH] Changed bsl.exra to search for the string between the commas and not short circuiting after seeing a digit when installing to some default tty device. Also added some more variables to the avr.rules and msp430.rules to allow more flexibility in the way the tos-storage-XXX scripts are invoked --- support/make/avr/avr.rules | 2 +- support/make/msp/msp.rules | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/support/make/avr/avr.rules b/support/make/avr/avr.rules index d3acf1d7..f9230bb2 100644 --- a/support/make/avr/avr.rules +++ b/support/make/avr/avr.rules @@ -97,7 +97,7 @@ ifneq ($(wildcard $(VOLUMEFILE)), ) exe0: $(BUILDDIR)/StorageVolumes.h $(BUILDDIR)/StorageVolumes.h: $(VOLUMEFILE) - $(VOLUME_ALLOCATOR) $(PLATFORMDIR) $(VOLUME_ALLOCATOR_FLAGS) <$(VOLUMEFILE) >$@ || rm -f $@ + $(VOLUME_ALLOCATOR) $(VOLUME_ALLOCATOR_FLAGS) $(PLATFORMDIR) <$(VOLUMEFILE) >$@ || rm -f $@ PFLAGS += -I$(BUILDDIR) endif diff --git a/support/make/msp/msp.rules b/support/make/msp/msp.rules index 276fadb7..6a434f87 100644 --- a/support/make/msp/msp.rules +++ b/support/make/msp/msp.rules @@ -68,7 +68,7 @@ exe0: $(BUILDDIR)/StorageVolumes.h VOLUME_ALLOCATOR_FLAGS ?= $(BUILDDIR)/StorageVolumes.h: $(VOLUME_FILE) - $(VOLUME_ALLOCATOR) $(PLATFORMDIR) $(VOLUME_ALLOCATOR_FLAGS) <$(VOLUME_FILE) >$@ || rm -f $@ + $(VOLUME_ALLOCATOR) $(VOLUME_ALLOCATOR_FLAGS) $(PLATFORMDIR) <$(VOLUME_FILE) >$@ || rm -f $@ PFLAGS += -I$(BUILDDIR) endif -- 2.39.2