Revision: 5822
Author: pebender
Date: Wed Nov 11 16:34:21 2009
Log: - Fixed bug introduced when fixing problem with
mm_external_power_{off,on}.
http://code.google.com/p/minimyth/source/detail?r=5822
Modified:
/trunk/gar-minimyth/script/meta/minimyth/files/source/rootfs/usr/bin/mm_external_on_ss
/trunk/gar-minimyth/script/meta/minimyth/files/source/rootfs/usr/bin/mm_sleep
=======================================
---
/trunk/gar-minimyth/script/meta/minimyth/files/source/rootfs/usr/bin/mm_external_on_ss
Wed Nov 11 13:40:02 2009
+++
/trunk/gar-minimyth/script/meta/minimyth/files/source/rootfs/usr/bin/mm_external_on_ss
Wed Nov 11 16:34:21 2009
@@ -37,7 +37,7 @@
sub power_off
{
- if (-e q(/usr/bin/mm_external_power_off)
+ if (-e q(/usr/bin/mm_external_power_off))
{
system(q(/usr/bin/mm_external_power_off));
}
@@ -45,7 +45,7 @@
sub power_on
{
- if (-e q(/usr/bin/mm_external_power_on)
+ if (-e q(/usr/bin/mm_external_power_on))
{
system(qq(/usr/bin/mm_external_power_on));
}
=======================================
---
/trunk/gar-minimyth/script/meta/minimyth/files/source/rootfs/usr/bin/mm_sleep
Wed Nov 11 13:29:26 2009
+++
/trunk/gar-minimyth/script/meta/minimyth/files/source/rootfs/usr/bin/mm_sleep
Wed Nov 11 16:34:21 2009
@@ -24,7 +24,7 @@
File::Path::mkpath("/var/lib/mm_sleep.$$", { mode => 0755 });
# Turn off any external equipment.
-if (-e q(/usr/bin/mm_external_power_off)
+if (-e q(/usr/bin/mm_external_power_off))
{
system(q(/usr/bin/mm_external_power_off));
}
@@ -201,7 +201,7 @@
}
# Turn on any external equipment.
-if (-e q(/usr/bin/mm_external_power_on)
+if (-e q(/usr/bin/mm_external_power_on))
{
system(qq(/usr/bin/mm_external_power_on));
}
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"minimyth-commits" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/minimyth-commits?hl=en
-~----------~----~----~----~------~----~------~--~---