1
0
Fork 0
forked from len0rd/rockbox

Wrong appsdir for the H120 boot loader

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@7081 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Linus Nielsen Feltzing 2005-07-09 07:45:16 +00:00
parent 6fa590b0a7
commit f69c77933c

21
tools/configure vendored
View file

@ -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"
;;