Merge lp:~fcwu-tw/jockey/lp1196848 into lp:ubuntu/precise-proposed/jockey

Proposed by Doro Wu
Status: Needs review
Proposed branch: lp:~fcwu-tw/jockey/lp1196848
Merge into: lp:ubuntu/precise-proposed/jockey
Diff against target: 42 lines (+12/-4)
2 files modified
data/handlers/fglrx.py (+4/-4)
debian/changelog (+8/-0)
To merge this branch: bzr merge lp:~fcwu-tw/jockey/lp1196848
Reviewer Review Type Date Requested Status
Alberto Milone Pending
Review via email: mp+172486@code.launchpad.net

Description of the change

To post a comment you must log in.
Revision history for this message
Alberto Milone (albertomilone) wrote :

The patch looks good to me but I'll probably integrate your change with some changes I need to make so that we can use the same SRU for all of them

Unmerged revisions

157. By Doro Wu

* data/handlers/fglrx.py
  - Jockey returns wrong enablement status of fglrx within iGPU mode.
    (LP: 1196848)

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'data/handlers/fglrx.py'
2--- data/handlers/fglrx.py 2013-01-07 10:55:32 +0000
3+++ data/handlers/fglrx.py 2013-07-02 08:39:58 +0000
4@@ -104,9 +104,9 @@
5
6 def enabled(self):
7 # See if fglrx is the current alternative
8- target_alternative = self._alternatives.get_alternative_by_name('fglrx')
9+ target_alternative = [alt for alt in self._alternatives.list_alternatives() if alt.split('/')[-2] in ('pxpress', 'fglrx')]
10 current_alternative = self._alternatives.get_current_alternative()
11- other_target_alternative = self._other_alternatives.get_alternative_by_name('fglrx')
12+ other_target_alternative = [alt for alt in self._other_alternatives.list_alternatives() if alt.split('/')[-2] in ('pxpress', 'fglrx')]
13 other_current_alternative = self._other_alternatives.get_current_alternative()
14
15 logging.debug('fglrx.enabled(%s): target_alt %s current_alt %s other target alt %s other current alt %s',
16@@ -116,8 +116,8 @@
17 if current_alternative is None:
18 logging.debug('current alternative of %s is None, not enabled', self.module)
19 return False
20- if current_alternative != target_alternative or \
21- other_current_alternative != other_target_alternative:
22+ if current_alternative not in target_alternative or \
23+ other_current_alternative not in other_target_alternative:
24 logging.debug('%s is not the alternative in use', self.module)
25 return False
26
27
28=== modified file 'debian/changelog'
29--- debian/changelog 2013-04-16 11:19:02 +0000
30+++ debian/changelog 2013-07-02 08:39:58 +0000
31@@ -1,3 +1,11 @@
32+jockey (0.9.7-0ubuntu7.10) precise; urgency=low
33+
34+ * data/handlers/fglrx.py
35+ - Jockey returns wrong enablement status of fglrx within iGPU mode.
36+ (LP: 1196848)
37+
38+ -- Doro Wu <doro.wu@canonical.com> Tue, 02 Jul 2013 04:24:41 -0400
39+
40 jockey (0.9.7-0ubuntu7.9) precise-proposed; urgency=low
41
42 * jockey/kerneldetection.py:

Subscribers

People subscribed via source and target branches

to all changes: