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:
parent
6fa590b0a7
commit
f69c77933c
1 changed files with 12 additions and 9 deletions
21
tools/configure
vendored
21
tools/configure
vendored
|
@ -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"
|
||||
;;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue