I think this is due to /var/lib/dpkg/info/xserver-xorg.postinst:

if [ -n "$REAL_DRIVER_DIRS" ]; then
  # Build list of available video drivers, omitting the atimisc, r128, and
  # radeon sub-modules (the ati driver knows when and how to load these).
  # v4l is not a display driver, and dummy is for advanced users.
  DRIVER_LIST="$(find $REAL_DRIVER_DIRS -name '*_drv.*' \
                 | sed 's|^.*/\([^/]*\)_drv\.[^\._]*|\1|g' \
                 | egrep -v '(atimisc|dummy|r128|radeon|v4l)' | sort -u | xargs 
\
                 | sed 's/ /, /g' 2>/dev/null) "
fi

Here, "radeonhd" will match the "radeon" in the egrep pattern and it is 
mistakenly filtered out. If you edit the file and insert a "$" after "radeon" 
it will work:
 | egrep -v '(atimisc|dummy|r128|radeon$|v4l)' | sort -u | xargs \

** Changed in: xserver-xorg-video-radeonhd (Ubuntu)
       Status: New => Confirmed

-- 
radeonhd not shown when configuring xorg
https://bugs.launchpad.net/bugs/174311
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

-- 
ubuntu-bugs mailing list
[email protected]
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

Reply via email to