diff options
| author | Rafaël Carré <rafael.carre@gmail.com> | 2008-10-28 11:24:29 +0000 |
|---|---|---|
| committer | Rafaël Carré <rafael.carre@gmail.com> | 2008-10-28 11:24:29 +0000 |
| commit | b3ee07c22e1886c4cb1557dbaa4fd65d25cd1be3 (patch) | |
| tree | 666598d06ac756ba58dedab7c53ea4bd667e0b0d /tools | |
| parent | a5a2f12f0a07df1f58732e1d6cb08a5d730fc79c (diff) | |
| download | rockbox-b3ee07c22e1886c4cb1557dbaa4fd65d25cd1be3.zip rockbox-b3ee07c22e1886c4cb1557dbaa4fd65d25cd1be3.tar.gz rockbox-b3ee07c22e1886c4cb1557dbaa4fd65d25cd1be3.tar.bz2 rockbox-b3ee07c22e1886c4cb1557dbaa4fd65d25cd1be3.tar.xz | |
Sansav2 : initializes SDRAM
The AS3525 SoC ships with an ARM PL172 MPMC controller
Also correct the memory sizes in tools/configure
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18899 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'tools')
| -rwxr-xr-x | tools/configure | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/configure b/tools/configure index 0f7a821..4c9da06 100755 --- a/tools/configure +++ b/tools/configure @@ -1684,7 +1684,7 @@ fi target_id=50 modelname="clip" target="-DSANSA_CLIP" - memory=1 # In fact, 0.3125 + memory=2 arm9tdmicc bmp2rb_mono="$rootdir/tools/bmp2rb -f 0" bmp2rb_native="$bmp2rb_mono" @@ -1704,7 +1704,7 @@ fi target_id=51 modelname="e200v2" target="-DSANSA_E200V2" - memory=2 # FIXME - a guess + memory=8 arm9tdmicc bmp2rb_mono="$rootdir/tools/bmp2rb -f 0" bmp2rb_native="$bmp2rb_mono" @@ -1724,7 +1724,7 @@ fi target_id=52 modelname="m200v2" target="-DSANSA_M200V2" - memory=2 # FIXME - A guess + memory=2 arm9tdmicc bmp2rb_mono="$rootdir/tools/bmp2rb -f 0" bmp2rb_native="$bmp2rb_mono" |