diff options
author | Jonathan Gordon <rockbox@jdgordon.info> | 2007-09-09 11:20:20 +0000 |
---|---|---|
committer | Jonathan Gordon <rockbox@jdgordon.info> | 2007-09-09 11:20:20 +0000 |
commit | 9db22efd1fe133d7477fb7ceb6ded745dc889cdc (patch) | |
tree | 3618bcafee34be52d6bac212daf5e19ab843cadd /tools | |
parent | c9f6858de83ec5a15e4d4bdf78185cbca231e5bf (diff) | |
download | rockbox-9db22efd1fe133d7477fb7ceb6ded745dc889cdc.tar.gz rockbox-9db22efd1fe133d7477fb7ceb6ded745dc889cdc.zip |
Firmware "hacker" code for the e200r install so the full bootloader rom doesnt need to be written.
Requires a custom version of e200tool which isnt available yet.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@14654 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/configure | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/tools/configure b/tools/configure index 36295b5446..9cd3991e90 100755 --- a/tools/configure +++ b/tools/configure @@ -1424,6 +1424,9 @@ fi ifp7xx) gdbstub="(G)DB stub, " ;; + e200r|e200) + gdbstub="(I)installer, " + ;; *) ;; esac @@ -1434,6 +1437,13 @@ fi option=`input`; case $option in + [Ii]) + appsdir='\$(ROOTDIR)/bootloader' + apps="bootloader" + extradefines="-DBOOTLOADER -DE200R_INSTALLER -ffunction-sections -fdata-sections" + bootloader="1" + echo "e200R-installer build selected" + ;; [Bb]) if test $t_manufacturer = "archos"; then # Archos SH-based players do this somewhat differently for |