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 case $option in
[Bb]) [Bb])
if [ "$archos" = "h100" ]; then case $archos in
extradefines="-DBOOTLOADER" # for target makefile symbol EXTRA_DEFINES h100|h120)
appsdir='\$(ROOTDIR)/bootloader' extradefines="-DBOOTLOADER" # for target makefile symbol EXTRA_DEFINES
apps="bootloader" appsdir='\$(ROOTDIR)/bootloader'
else apps="bootloader"
extradefines="-DBOOTLOADER -ffunction-sections -fdata-sections" ;;
appsdir='\$(ROOTDIR)/flash/bootbox' *)
apps="bootbox" extradefines="-DBOOTLOADER -ffunction-sections -fdata-sections"
fi appsdir='\$(ROOTDIR)/flash/bootbox'
apps="bootbox"
;;
esac
bootloader="1" bootloader="1"
echo "Bootloader build selected" echo "Bootloader build selected"
;; ;;