--- usplash.orig 2006-03-05 19:06:00.000000000 +0100 +++ usplash 2006-03-05 19:08:41.000000000 +0100 @@ -15,6 +15,7 @@ SPLASH=false; VESA=false; +RADEON=false; for x in $(cat /proc/cmdline); do case $x in @@ -24,6 +25,9 @@ vga=*) VESA=true; ;; + video=radeon*) + RADEON=true; + ;; esac done @@ -32,6 +36,8 @@ modprobe fbcon if [ $VESA = "true" ]; then modprobe vesafb + elif [ $RADEON = "true" ]; then + modprobe radeonfb else modprobe vga16fb fi