Mailinglist Archive: yast-commit (759 mails)
| < Previous | Next > |
[yast-commit] r45610 - in /trunk/yast2: library/modules/Arch.ycp package/yast2.changes
- From: jsrain@xxxxxxxxxxxxxxxx
- Date: Wed, 19 Mar 2008 14:37:54 -0000
- Message-id: <20080319143754.8BC1034AFF@xxxxxxxxxxxxxxxx>
Author: jsrain
Date: Wed Mar 19 15:37:54 2008
New Revision: 45610
URL: http://svn.opensuse.org/viewcvs/yast?rev=45610&view=rev
Log:
fixed efika detection (bnc #369045)
Modified:
trunk/yast2/library/modules/Arch.ycp
trunk/yast2/package/yast2.changes
Modified: trunk/yast2/library/modules/Arch.ycp
URL:
http://svn.opensuse.org/viewcvs/yast/trunk/yast2/library/modules/Arch.ycp?rev=45610&r1=45609&r2=45610&view=diff
==============================================================================
--- trunk/yast2/library/modules/Arch.ycp (original)
+++ trunk/yast2/library/modules/Arch.ycp Wed Mar 19 15:37:54 2008
@@ -246,12 +246,14 @@
_board_compatible = "CHRP";
}
// Pegasos has CHRP in /proc/cpuinfo and 'chrp' in
/proc/device-tree/device_type
- if (board == "Pegasos2")
+ if (board == "Pegasos2"
+ || issubstring (tolower (device_type["stdout"]:""), "pegasos2"))
{
_board_compatible = "Pegasos";
}
// Efika has CHRP in /proc/cpuinfo and 'efika' in
/proc/device-tree/device_type
- if (board == "efika")
+ if (issubstring (tolower (board), "efika")
+ || issubstring (tolower (device_type["stdout"]:""), "efika"))
{
_board_compatible = "Pegasos";
}
Modified: trunk/yast2/package/yast2.changes
URL:
http://svn.opensuse.org/viewcvs/yast/trunk/yast2/package/yast2.changes?rev=45610&r1=45609&r2=45610&view=diff
==============================================================================
--- trunk/yast2/package/yast2.changes (original)
+++ trunk/yast2/package/yast2.changes Wed Mar 19 15:37:54 2008
@@ -1,4 +1,9 @@
-------------------------------------------------------------------
+Wed Mar 19 15:36:55 CET 2008 - jsrain@xxxxxxx
+
+- fixed efika detection (bnc #369045)
+
+-------------------------------------------------------------------
Tue Mar 18 13:22:01 CET 2008 - locilka@xxxxxxx
- Changed the default value for use-automatic-configuration in
--
To unsubscribe, e-mail: yast-commit+unsubscribe@xxxxxxxxxxxx
For additional commands, e-mail: yast-commit+help@xxxxxxxxxxxx
Date: Wed Mar 19 15:37:54 2008
New Revision: 45610
URL: http://svn.opensuse.org/viewcvs/yast?rev=45610&view=rev
Log:
fixed efika detection (bnc #369045)
Modified:
trunk/yast2/library/modules/Arch.ycp
trunk/yast2/package/yast2.changes
Modified: trunk/yast2/library/modules/Arch.ycp
URL:
http://svn.opensuse.org/viewcvs/yast/trunk/yast2/library/modules/Arch.ycp?rev=45610&r1=45609&r2=45610&view=diff
==============================================================================
--- trunk/yast2/library/modules/Arch.ycp (original)
+++ trunk/yast2/library/modules/Arch.ycp Wed Mar 19 15:37:54 2008
@@ -246,12 +246,14 @@
_board_compatible = "CHRP";
}
// Pegasos has CHRP in /proc/cpuinfo and 'chrp' in
/proc/device-tree/device_type
- if (board == "Pegasos2")
+ if (board == "Pegasos2"
+ || issubstring (tolower (device_type["stdout"]:""), "pegasos2"))
{
_board_compatible = "Pegasos";
}
// Efika has CHRP in /proc/cpuinfo and 'efika' in
/proc/device-tree/device_type
- if (board == "efika")
+ if (issubstring (tolower (board), "efika")
+ || issubstring (tolower (device_type["stdout"]:""), "efika"))
{
_board_compatible = "Pegasos";
}
Modified: trunk/yast2/package/yast2.changes
URL:
http://svn.opensuse.org/viewcvs/yast/trunk/yast2/package/yast2.changes?rev=45610&r1=45609&r2=45610&view=diff
==============================================================================
--- trunk/yast2/package/yast2.changes (original)
+++ trunk/yast2/package/yast2.changes Wed Mar 19 15:37:54 2008
@@ -1,4 +1,9 @@
-------------------------------------------------------------------
+Wed Mar 19 15:36:55 CET 2008 - jsrain@xxxxxxx
+
+- fixed efika detection (bnc #369045)
+
+-------------------------------------------------------------------
Tue Mar 18 13:22:01 CET 2008 - locilka@xxxxxxx
- Changed the default value for use-automatic-configuration in
--
To unsubscribe, e-mail: yast-commit+unsubscribe@xxxxxxxxxxxx
For additional commands, e-mail: yast-commit+help@xxxxxxxxxxxx
| < Previous | Next > |