diff options
| author | Daniel Stenberg <daniel@haxx.se> | 2004-09-16 21:19:21 +0000 |
|---|---|---|
| committer | Daniel Stenberg <daniel@haxx.se> | 2004-09-16 21:19:21 +0000 |
| commit | e76d7d99d9c12f94c3dcea062cae9f660ccbfe3d (patch) | |
| tree | b63abf65d93a211c8d8b6046e6f2541f73cb4d5e | |
| parent | c70ede76bd75ae5df9872ae3b5f6bbc5f5141a56 (diff) | |
| download | rockbox-e76d7d99d9c12f94c3dcea062cae9f660ccbfe3d.zip rockbox-e76d7d99d9c12f94c3dcea062cae9f660ccbfe3d.tar.gz rockbox-e76d7d99d9c12f94c3dcea062cae9f660ccbfe3d.tar.bz2 rockbox-e76d7d99d9c12f94c3dcea062cae9f660ccbfe3d.tar.xz | |
remove display-leftovers and remove the memory size question for iRiver
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@5085 a1c6a512-1295-4272-9138-f99709370657
| -rwxr-xr-x | tools/configure | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/tools/configure b/tools/configure index 3bcb656..f941850 100755 --- a/tools/configure +++ b/tools/configure @@ -48,7 +48,6 @@ sed > Makefile \ -e "s,@ROOTDIR@,${rootdir},g" \ -e "s,@ARCHOS@,${archos},g" \ -e "s,@DEBUG@,${debug},g" \ - -e "s,@DISPLAY@,${display},g" \ -e "s,@KEYPAD@,${keypad},g" \ -e "s,@PWD@,${pwd},g" \ -e "s,@LANGUAGE@,${language},g" \ @@ -62,7 +61,6 @@ ROOTDIR=@ROOTDIR@ SIMDIR=\$(ROOTDIR)/uisimulator/@SIMVER@ TOOLSDIR=\$(ROOTDIR)/tools DEBUG=@DEBUG@ -DISPLAY=@DISPLAY@ KEYPAD=@KEYPAD@ THISDIR="@PWD@" SIMVER=@SIMVER@ @@ -185,7 +183,6 @@ if [ "$target" = "update" ]; then if [ "$debug" = "SIMULATOR=1" ]; then simulator="yes" - display=`grep "^DISPLAY=" Makefile | cut -d= -f2-` keypad=`grep "^KEYPAD=" Makefile | cut -d= -f2-` simver=`grep "^SIMVER=" Makefile | cut -d= -f2-` fi @@ -259,6 +256,7 @@ if [ -z "$archos" ]; then 9) archos="h100" target="-DIRIVER_H100" + memory=32 # always ;; *) |