summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLinus Nielsen Feltzing <linus@haxx.se>2005-07-09 07:45:16 +0000
committerLinus Nielsen Feltzing <linus@haxx.se>2005-07-09 07:45:16 +0000
commitf69c77933c7fca7b72dfc6aa94cbe03651a149f8 (patch)
tree6a4f53df3a30bc46a98377a9002882b45176c182
parent6fa590b0a74c8328c37e1f25afcb2c64cf5fcedb (diff)
downloadrockbox-f69c77933c7fca7b72dfc6aa94cbe03651a149f8.tar.gz
rockbox-f69c77933c7fca7b72dfc6aa94cbe03651a149f8.zip
Wrong appsdir for the H120 boot loader
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@7081 a1c6a512-1295-4272-9138-f99709370657
-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 ;;