|
From: <sle...@us...> - 2007-03-24 20:02:15
|
Revision: 932
http://svn.sourceforge.net/hackndev/?rev=932&view=rev
Author: sleep_walker
Date: 2007-03-24 13:02:12 -0700 (Sat, 24 Mar 2007)
Log Message:
-----------
l4p: add no CPUfreq support to remove SD card speed problem
Modified Paths:
--------------
linux4palm/BFUGarux/BFULinuxHelper.c
linux4palm/BFUGarux/BFUSettings-alone.c
linux4palm/BFUGarux/BFUSettings.Rsrc
Modified: linux4palm/BFUGarux/BFULinuxHelper.c
===================================================================
--- linux4palm/BFUGarux/BFULinuxHelper.c 2007-03-22 17:00:31 UTC (rev 931)
+++ linux4palm/BFUGarux/BFULinuxHelper.c 2007-03-24 20:02:12 UTC (rev 932)
@@ -110,8 +110,8 @@
optint >>= 1;
printf("BFUSilentBoot=%ld\n",optint & 1);
optint >>= 1;
- printf("BFUCPUspeed=%ld\n",optint & 3);
- optint >>= 2;
+ printf("BFUCPUspeed=%ld\n",optint & 7);
+ optint >>= 3;
printf("BFUCardRO=%ld\n",optint & 1);
optint >>=1;
printf("BFUKeyboard=%ld\n",optint & 1);
Modified: linux4palm/BFUGarux/BFUSettings-alone.c
===================================================================
--- linux4palm/BFUGarux/BFUSettings-alone.c 2007-03-22 17:00:31 UTC (rev 931)
+++ linux4palm/BFUGarux/BFUSettings-alone.c 2007-03-24 20:02:12 UTC (rev 932)
@@ -191,8 +191,8 @@
options |= BFUSettingsValues.keyboard;
options = options << 1;
options |= BFUSettingsValues.cardRO;
- options = options << 2;
-//CPUspeed has 4 possibilities
+ options = options << 3;
+//CPUspeed has 5 possibilities
options |= BFUSettingsValues.CPUspeed;
options = options << 1;
options |= BFUSettingsValues.silentBoot;
Modified: linux4palm/BFUGarux/BFUSettings.Rsrc
===================================================================
--- linux4palm/BFUGarux/BFUSettings.Rsrc 2007-03-22 17:00:31 UTC (rev 931)
+++ linux4palm/BFUGarux/BFUSettings.Rsrc 2007-03-24 20:02:12 UTC (rev 932)
@@ -122,7 +122,7 @@
LABEL "Set:" ID 8035 AT (9 16) USABLE FONT 1
CHECKBOX "To card" ID BFUSave2CardBox AT (74 140 47 15) USABLE LEFTANCHOR GROUP 0
LABEL "CPU Frequency:" ID 8350 AT (9 33) USABLE FONT 1
- LIST "Auto" "133 MHz" "266 MHz" "400 MHz" ID BFUCPUSpeedList AT (90 31 39 44) NONUSABLE DISABLED
+ LIST "Auto" "133 MHz" "266 MHz" "400 MHz" "None" ID BFUCPUSpeedList AT (90 31 39 55) NONUSABLE DISABLED
POPUPTRIGGER "Auto" ID BFUCPUSpeedTrigger AT (90 31 55 15) USABLE LEFTANCHOR
POPUPLIST ID BFUCPUSpeedTrigger BFUCPUSpeedList
LABEL "RAMdisk size:" ID 8351 AT (9 48) USABLE FONT 1
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|