debian/apport/source_xorg.py | 8 ++++++++ debian/changelog | 7 +++++++ 2 files changed, 15 insertions(+)
New commits: commit a84d559c00c94157e9f8128dd328445a4051aed1 Author: Bryce Harrington <[email protected]> Date: Sat Apr 4 00:17:32 2009 -0700 cl diff --git a/debian/changelog b/debian/changelog index ad08100..be4e0e4 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +xorg (1:7.4~5ubuntu19) UNRELEASED; urgency=low + + * apport/source_xorg.py: Detect ext4, which can indicate freeze bugs due + to ext4 bug 354822. + + -- Bryce Harrington <[email protected]> Sat, 04 Apr 2009 00:16:48 -0700 + xorg (1:7.4~5ubuntu18) jaunty; urgency=low * local/dexconf: Don't use cirrus on kvm (Technical Corp. Device 1111) commit c8c4dea6d09c41deec7a8d1f934829f2113c61c2 Author: Bryce Harrington <[email protected]> Date: Sat Apr 4 00:15:50 2009 -0700 Add capture of ext4 usage (could result in freeze bug #354822) diff --git a/debian/apport/source_xorg.py b/debian/apport/source_xorg.py index 3f0a9f8..dfbbaf4 100644 --- a/debian/apport/source_xorg.py +++ b/debian/apport/source_xorg.py @@ -98,6 +98,14 @@ def add_info(report): pass try: + script = subprocess.Popen(['mount', '-t', 'ext4'], stdout=subprocess.PIPE) + matches = script.communicate()[0] + if (matches): + report['ext4'] = matches + except OSError: + pass + + try: script = subprocess.Popen(['grep', 'fglrx', '/var/log/kern.log', '/proc/modules'], stdout=subprocess.PIPE) matches = script.communicate()[0] if (matches): -- To UNSUBSCRIBE, email to [email protected] with a subject of "unsubscribe". Trouble? Contact [email protected]

