|
|
2010-03-24
, 16:27
|
|
Posts: 1,729 |
Thanked: 388 times |
Joined on Jan 2010
@ Canada
|
#181
|
|
|
2010-03-24
, 16:32
|
|
Posts: 1,258 |
Thanked: 672 times |
Joined on Mar 2009
|
#182
|
- it is a wrong initialization of driver for bq27200 ( i2dc device 0x55) or driver missing entirely even if it is activated by "CONFIG_W1_SLAVE_BQ27000=y" . bq27x00 chip is made in two bus variants bq27200 for i2c bus and bq27000 for hdq 1wire bus
so something is wrong in software, schematics make sense.
bq27200 chip is near blamed isp1707 usb transceiver chip
|
|
2010-03-24
, 16:52
|
|
Posts: 3,617 |
Thanked: 2,412 times |
Joined on Nov 2009
@ Cambridge, UK
|
#183
|
hmmmm in what way you enabled it? by changing the values in /etc/pmconfig ? or by the 2 codes?
| The Following User Says Thank You to Rob1n For This Useful Post: | ||
|
|
2010-03-24
, 17:16
|
|
Posts: 1,729 |
Thanked: 388 times |
Joined on Jan 2010
@ Canada
|
#184
|
Both - I used the 2 codes first to test it out, then changed /etc/pmconfig to make the change persist across reboots.
|
|
2010-03-24
, 18:52
|
|
Posts: 3,617 |
Thanked: 2,412 times |
Joined on Nov 2009
@ Cambridge, UK
|
#185
|
oh, so if i change the values, the power saving will be consistent and active even after reboots???
and is this done in xterm? cant cd to /etc/pmconfig, or im doing it the wrong way?
sudo gainroot echo "sr_vdd1_autocomp 1" >> /etc/pmconfig echo "sr_vdd2_autocomp 1" >> /etc/pmconfig
|
|
2010-03-24
, 19:07
|
|
Posts: 1,729 |
Thanked: 388 times |
Joined on Jan 2010
@ Canada
|
#186
|
If you edit the /etc/pmconfig file then the changes will persist across reboots, yes - you'll need to be root to do this though. The following should do it (if you've got rootsh installed) - make sure you type it in exactly though!:
Alternately, use vi, vim, mc, or leafpad as root to edit the file.Code:sudo gainroot echo "sr_vdd1_autocomp 1" >> /etc/pmconfig echo "sr_vdd2_autocomp 1" >> /etc/pmconfig
|
|
2010-03-24
, 19:18
|
|
Posts: 3,617 |
Thanked: 2,412 times |
Joined on Nov 2009
@ Cambridge, UK
|
#187
|
thanks very much! you save my life again.
when i performed the codes and hit enter, i just came back at /home/user #,
does this mean it was successful or nothing happened???
EDIT: oh, then i reboot the device (in root, typed "reboot")
cat /sys/power/sr_vdd1_autocomp cat /sys/power/sr_vdd2_autocomp
| The Following User Says Thank You to Rob1n For This Useful Post: | ||
|
|
2010-03-24
, 20:22
|
|
Posts: 1,729 |
Thanked: 388 times |
Joined on Jan 2010
@ Canada
|
#188
|
Yes, it doesn't output anything - you can do "cat /etc/pmconfig" to check that the file has been edited properly (you should see the sr_vdd.... lines at the bottom). After rebooting you can check that the changes are in place by running (you should get "1" back from each):
Code:cat /sys/power/sr_vdd1_autocomp cat /sys/power/sr_vdd2_autocomp
|
|
2010-03-24
, 21:30
|
|
Posts: 1,729 |
Thanked: 388 times |
Joined on Jan 2010
@ Canada
|
#189
|


|
|
2010-03-24
, 22:07
|
|
Posts: 284 |
Thanked: 161 times |
Joined on Dec 2009
|
#190
|