archboot/usr/lib/initcpio/install/arch_fb
2012-05-27 11:40:23 +02:00

17 lines
421 B
Bash

#!/bin/bash
# Created by Tobias Powalowski <tpowa@archlinux.org>
build ()
{
add_checked_modules 'drivers/video/' 'drivers/char/agp' 'i915' 'radeon' 'nouveau'
add_binary "/sbin/v86d"
add_file "/usr/share/archboot/fb/etc/modprobe.d/uvesafb.conf" "/etc/modprobe.d/uvesafb.conf"
add_runscripts
}
help ()
{
cat<<HELPEOF
This hook includes the framebuffer and kms subsystem on an arch boot image.
HELPEOF
}