From f69c77933c7fca7b72dfc6aa94cbe03651a149f8 Mon Sep 17 00:00:00 2001 From: Linus Nielsen Feltzing Date: Sat, 9 Jul 2005 07:45:16 +0000 Subject: Wrong appsdir for the H120 boot loader git-svn-id: svn://svn.rockbox.org/rockbox/trunk@7081 a1c6a512-1295-4272-9138-f99709370657 --- tools/configure | 21 ++++++++++++--------- 1 file 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 case $option in [Bb]) - if [ "$archos" = "h100" ]; then - extradefines="-DBOOTLOADER" # for target makefile symbol EXTRA_DEFINES - appsdir='\$(ROOTDIR)/bootloader' - apps="bootloader" - else - extradefines="-DBOOTLOADER -ffunction-sections -fdata-sections" - appsdir='\$(ROOTDIR)/flash/bootbox' - apps="bootbox" - fi + case $archos in + h100|h120) + extradefines="-DBOOTLOADER" # for target makefile symbol EXTRA_DEFINES + appsdir='\$(ROOTDIR)/bootloader' + apps="bootloader" + ;; + *) + extradefines="-DBOOTLOADER -ffunction-sections -fdata-sections" + appsdir='\$(ROOTDIR)/flash/bootbox' + apps="bootbox" + ;; + esac bootloader="1" echo "Bootloader build selected" ;; -- cgit v1.2.3