1
0
Fork 0
forked from len0rd/rockbox

FS#11966 - use separate modelnames and config files for RaaA. This adds an APPLICATION define that can be used in Makefiles, and target-name defines (-DSDLAPP, -DANDROID, -DNOKIAN8XX and -DNOKIAN900) for use elsewhere. LCD size is now hard-coded for the Nokia builds in their config files. A new --app parameter is passed to buildzip.pl to explicitly state that this is an application build - it was previously derived from the model name.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@29418 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Dave Chapman 2011-02-27 11:37:39 +00:00
parent 9501986047
commit 376c9f3ad0
10 changed files with 346 additions and 74 deletions

View file

@ -440,15 +440,23 @@ Lyre prototype 1 */
#include "config/mpiohd200.h"
#elif defined(MPIO_HD300)
#include "config/mpiohd300.h"
#elif defined(APPLICATION)
#include "config/application.h"
#define CONFIG_CPU 0
#define CONFIG_STORAGE 0
#elif defined(SDLAPP)
#include "config/sdlapp.h"
#elif defined(ANDROID)
#include "config/android.h"
#elif defined(NOKIAN8XX)
#include "config/nokian8xx.h"
#elif defined(NOKIAN900)
#include "config/nokian900.h"
#else
/* no known platform */
#endif
#ifdef APPLICATION
#define CONFIG_CPU 0
#define CONFIG_STORAGE 0
#endif
/* keep this include after the target configs */
#ifdef SIMULATOR
#include "config/sim.h"