Author: pebender
Date: Fri Oct 17 13:57:18 2008
New Revision: 3840

Added:
     
trunk/gar-minimyth/script/meta/minimyth/files/source/lists/graphics/minimyth-lib-list.radeonhd
Modified:
    trunk/gar-minimyth/html/minimyth/document-changelog.txt
    trunk/gar-minimyth/html/minimyth/document-hardware.html
    trunk/gar-minimyth/script/meta/minimyth/files/check.mk
     
trunk/gar-minimyth/script/meta/minimyth/files/source/rootfs/etc/X11/xorg.conf
     
trunk/gar-minimyth/script/meta/minimyth/files/source/rootfs/etc/hardware.d/x2kernel.map
     
trunk/gar-minimyth/script/meta/minimyth/files/source/rootfs/etc/rc.d.perl/init/video.pm
     
trunk/gar-minimyth/script/meta/minimyth/files/source/rootfs/etc/rc.d.perl/init/x.pm
     
trunk/gar-minimyth/script/meta/minimyth/files/source/rootfs/etc/rc.d/init.d/video
     
trunk/gar-minimyth/script/meta/minimyth/files/source/rootfs/etc/rc.d/init.d/x
    trunk/gar-minimyth/script/minimyth.conf.mk

Log:
- Added support for the radeonhd video driver.



Modified: trunk/gar-minimyth/html/minimyth/document-changelog.txt
==============================================================================
--- trunk/gar-minimyth/html/minimyth/document-changelog.txt     (original)
+++ trunk/gar-minimyth/html/minimyth/document-changelog.txt     Fri Oct 17  
13:57:18 2008
@@ -51,6 +51,13 @@
  Modified MPlayer SVN version
      - Changed it to use the external dvdread libraries.

+MOdified MiniMyth X support
+    - Added support for the radeonhd video driver.
+        - To use the radeonhd driver add MM_X_DRIVER='radeonhd' to your
+          minimyth.conf file.
+        - As with the radeon driver, you will likely need to create a  
custom
+          xorg.conf file.
+
  Modified MiniMyth configuration
      - Added MM_PLUGIN_INFORMATION_CENTER_ENABLED for disabling (i.e.  
removing)
        the 'Information Center' menu.
@@ -93,6 +100,7 @@
      - Added support for the Neoware CA2.
          - Added support for the savage video driver.
          - Added support for the vt8231 sensor chip.
+    - Added support for the radeonhd video driver.
      - Moved gspca and uvc drivers to their in-tree locations.

  Fixed build system

Modified: trunk/gar-minimyth/html/minimyth/document-hardware.html
==============================================================================
--- trunk/gar-minimyth/html/minimyth/document-hardware.html     (original)
+++ trunk/gar-minimyth/html/minimyth/document-hardware.html     Fri Oct 17  
13:57:18 2008
@@ -156,6 +156,7 @@
                  <li>nvidia</li>
                  <li>openchrome</li>
                  <li>radeon</li>
+                <li>radeonhd (not autodetected, so use  
MM_X_DRIVER='radeonhd')</li>
                </ul>
              </dd>
            </dl>
@@ -409,7 +410,7 @@
                alt="Valid CSS!"      height="31" width="88" /></a>
          </div>
          <div class="version">
-          Last Updated on 2008-10-08
+          Last Updated on 2008-10-17
            <br />
             
&lt;&nbsp;mailto&nbsp;:&nbsp;webmaster&nbsp;at&nbsp;minimyth&nbsp;dot&nbsp;org&nbsp;&gt;
          </div>

Modified: trunk/gar-minimyth/script/meta/minimyth/files/check.mk
==============================================================================
--- trunk/gar-minimyth/script/meta/minimyth/files/check.mk      (original)
+++ trunk/gar-minimyth/script/meta/minimyth/files/check.mk      Fri Oct 17  
13:57:18 2008
@@ -117,6 +117,7 @@
                   [ ! "$${graphic}" = "nvidia"     ] && \
                   [ ! "$${graphic}" = "openchrome" ] && \
                   [ ! "$${graphic}" = "radeon"     ] && \
+                  [ ! "$${graphic}" = "radeonhd"   ] && \
                   [ ! "$${graphic}" = "savage"     ] && \
                   [ ! "$${graphic}" = "sis"        ] && \
                   [ ! "$${graphic}" = "vmware"     ] ; then \

Added:  
trunk/gar-minimyth/script/meta/minimyth/files/source/lists/graphics/minimyth-lib-list.radeonhd
==============================================================================
--- (empty file)
+++  
trunk/gar-minimyth/script/meta/minimyth/files/source/lists/graphics/minimyth-lib-list.radeonhd
   
Fri Oct 17 13:57:18 2008
@@ -0,0 +1,9 @@
+# Kernel
+modules/*/kernel/drivers/char/drm/radeon.ko
+modules/*/kernel/drivers/gpu/drm/radeon/radeon.ko
+
+# X11
+xorg/modules/dri/r200_dri.so
+xorg/modules/dri/r300_dri.so
+xorg/modules/dri/radeon_dri.so
+xorg/modules/drivers/radeonhd_drv.so

Modified:  
trunk/gar-minimyth/script/meta/minimyth/files/source/rootfs/etc/X11/xorg.conf
==============================================================================
---  
trunk/gar-minimyth/script/meta/minimyth/files/source/rootfs/etc/X11/xorg.conf   
 
(original)
+++  
trunk/gar-minimyth/script/meta/minimyth/files/source/rootfs/etc/X11/xorg.conf   
 
Fri Oct 17 13:57:18 2008
@@ -101,6 +101,11 @@
  EndSection

  Section "Device"
+    Identifier  "Device_radeonhd"
+    Driver      "radeonhd"
+EndSection
+
+Section "Device"
      Identifier  "Device_savage"
      Driver      "savage"
  EndSection

Modified:  
trunk/gar-minimyth/script/meta/minimyth/files/source/rootfs/etc/hardware.d/x2kernel.map
==============================================================================
---  
trunk/gar-minimyth/script/meta/minimyth/files/source/rootfs/etc/hardware.d/x2kernel.map
  
(original)
+++  
trunk/gar-minimyth/script/meta/minimyth/files/source/rootfs/etc/hardware.d/x2kernel.map
  
Fri Oct 17 13:57:18 2008
@@ -7,6 +7,7 @@
    intel_915  , i915
    nvidia     , nvidia
    radeon     , radeon
+  radeonhd   , radeon
    savage     , savage
    sis        , sis
    openchrome , via

Modified:  
trunk/gar-minimyth/script/meta/minimyth/files/source/rootfs/etc/rc.d.perl/init/video.pm
==============================================================================
---  
trunk/gar-minimyth/script/meta/minimyth/files/source/rootfs/etc/rc.d.perl/init/video.pm
  
(original)
+++  
trunk/gar-minimyth/script/meta/minimyth/files/source/rootfs/etc/rc.d.perl/init/video.pm
  
Fri Oct 17 13:57:18 2008
@@ -48,6 +48,11 @@
              ($deinterlacer  eq 'auto') && ($deinterlacer  = 'bobdeint');
              ($mpeg2_decoder eq 'auto') && ($mpeg2_decoder = 'ffmpeg');
          }
+        when (/^radeonhd$/)
+        {
+            ($deinterlacer  eq 'auto') && ($deinterlacer  = 'bobdeint');
+            ($mpeg2_decoder eq 'auto') && ($mpeg2_decoder = 'ffmpeg');
+        }
          when (/^savage$/)
          {
              ($deinterlacer  eq 'auto') && ($deinterlacer  = 'bobdeint');

Modified:  
trunk/gar-minimyth/script/meta/minimyth/files/source/rootfs/etc/rc.d.perl/init/x.pm
==============================================================================
---  
trunk/gar-minimyth/script/meta/minimyth/files/source/rootfs/etc/rc.d.perl/init/x.pm
      
(original)
+++  
trunk/gar-minimyth/script/meta/minimyth/files/source/rootfs/etc/rc.d.perl/init/x.pm
      
Fri Oct 17 13:57:18 2008
@@ -237,6 +237,9 @@
          when (/^(radeon)$/)
          {
          }
+        when (/^(radeonhd)$/)
+        {
+        }
          when (/^(savage)$/)
          {
          }

Modified:  
trunk/gar-minimyth/script/meta/minimyth/files/source/rootfs/etc/rc.d/init.d/video
==============================================================================
---  
trunk/gar-minimyth/script/meta/minimyth/files/source/rootfs/etc/rc.d/init.d/video
        
(original)
+++  
trunk/gar-minimyth/script/meta/minimyth/files/source/rootfs/etc/rc.d/init.d/video
        
Fri Oct 17 13:57:18 2008
@@ -56,6 +56,10 @@
              /usr/bin/test "${MM_VIDEO_DEINTERLACER}"  = "auto" &&  
MM_VIDEO_DEINTERLACER='bobdeint'
              /usr/bin/test "${MM_VIDEO_MPEG2_DECODER}" = "auto" &&  
MM_VIDEO_MPEG2_DECODER='ffmpeg'
              ;;
+        radeonhd)
+            /usr/bin/test "${MM_VIDEO_DEINTERLACER}"  = "auto" &&  
MM_VIDEO_DEINTERLACER='bobdeint'
+            /usr/bin/test "${MM_VIDEO_MPEG2_DECODER}" = "auto" &&  
MM_VIDEO_MPEG2_DECODER='ffmpeg'
+            ;;
          savage)
              /usr/bin/test "${MM_VIDEO_DEINTERLACER}"  = "auto" &&  
MM_VIDEO_DEINTERLACER='bobdeint'
              /usr/bin/test "${MM_VIDEO_MPEG2_DECODER}" = "auto" &&  
MM_VIDEO_MPEG2_DECODER='ffmpeg'

Modified:  
trunk/gar-minimyth/script/meta/minimyth/files/source/rootfs/etc/rc.d/init.d/x
==============================================================================
---  
trunk/gar-minimyth/script/meta/minimyth/files/source/rootfs/etc/rc.d/init.d/x   
 
(original)
+++  
trunk/gar-minimyth/script/meta/minimyth/files/source/rootfs/etc/rc.d/init.d/x   
 
Fri Oct 17 13:57:18 2008
@@ -157,6 +157,8 @@
              ;;
          radeon)
              ;;
+        radeonhd)
+            ;;
          savage)
              ;;
          sis)

Modified: trunk/gar-minimyth/script/minimyth.conf.mk
==============================================================================
--- trunk/gar-minimyth/script/minimyth.conf.mk  (original)
+++ trunk/gar-minimyth/script/minimyth.conf.mk  Fri Oct 17 13:57:18 2008
@@ -31,8 +31,8 @@
  mm_DEBUG_BUILD            ?= no
  # Lists the graphics drivers supported.
  # Valid values for mm_GRAPHICS are one or more of 'intel', 'nvidia',
-# 'openchrome', 'radeon', 'savage', 'sis', and 'vmware'.
-mm_GRAPHICS               ?= intel nvidia openchrome radeon
+# 'openchrome', 'radeon', 'radeonhd', 'savage', 'sis', and 'vmware'.
+mm_GRAPHICS               ?= intel nvidia openchrome radeon radeonhd
  # Lists the software to be supported.
  # Lists the software to be supported.
  # Valid values for MM_SOFTWARE are zero or more  
of 'mythbrowser', 'mythgallery',

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"minimyth-commits" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/minimyth-commits?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to