ps3 platform not detected correctly by dexconf
Affects | Status | Importance | Assigned to | Milestone | |
---|---|---|---|---|---|
Ubuntu PS3 Port |
Fix Released
|
Medium
|
Unassigned | ||
xorg (Ubuntu) |
Fix Released
|
Medium
|
Bryce Harrington | ||
Hardy |
Fix Released
|
Undecided
|
Bryce Harrington | ||
Intrepid |
Fix Released
|
Medium
|
Bryce Harrington |
Bug Description
Binary package hint: xorg
"I sent this patch in to the mailing list last Monday. dexconf wasn't
detecting the ps3fb correctly on hardy. Because of this it misses out a
couple of options that are meant to be explicitly set for PS3. It's a
very very small change.
https:/
From: Dan Munckton <daniel at munckfish.net>
The output of cat /proc/fb on 2.6.24 is "0 ps3fb". Dexconf was searching for "PS3" and was therefore failing to detect the platform correctly.
---
debian/
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/debian/
index 50a2f4e..596a4e2 100644
--- a/debian/
+++ b/debian/
@@ -281,7 +281,7 @@ SECTION
if [ -n "$DEVICE_DRIVER" ]; then
printf "\tDriver\
fi
-PS3_FB=$(grep PS3 /proc/fb 2>/dev/null || true)
+PS3_FB=$(grep -i PS3 /proc/fb 2>/dev/null || true)
if [ -n "$PS3_FB" ]; then
printf "\tOption\
fi
Changed in ubuntu-ps3-port: | |
importance: | Undecided → Medium |
status: | New → Fix Committed |
Changed in xorg: | |
assignee: | nobody → bryceharrington |
Committed to git. Upload to Intrepid coming soon...