summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xtools/configure21
1 files changed, 12 insertions, 9 deletions
diff --git a/tools/configure b/tools/configure
index 60bf11c7a9..520add2233 100755
--- a/tools/configure
+++ b/tools/configure
@@ -581,15 +581,18 @@ fi
581 581
582 case $option in 582 case $option in
583 [Bb]) 583 [Bb])
584 if [ "$archos" = "h100" ]; then 584 case $archos in
585 extradefines="-DBOOTLOADER" # for target makefile symbol EXTRA_DEFINES 585 h100|h120)
586 appsdir='\$(ROOTDIR)/bootloader' 586 extradefines="-DBOOTLOADER" # for target makefile symbol EXTRA_DEFINES
587 apps="bootloader" 587 appsdir='\$(ROOTDIR)/bootloader'
588 else 588 apps="bootloader"
589 extradefines="-DBOOTLOADER -ffunction-sections -fdata-sections" 589 ;;
590 appsdir='\$(ROOTDIR)/flash/bootbox' 590 *)
591 apps="bootbox" 591 extradefines="-DBOOTLOADER -ffunction-sections -fdata-sections"
592 fi 592 appsdir='\$(ROOTDIR)/flash/bootbox'
593 apps="bootbox"
594 ;;
595 esac
593 bootloader="1" 596 bootloader="1"
594 echo "Bootloader build selected" 597 echo "Bootloader build selected"
595 ;; 598 ;;