archboot/usr/lib/initcpio/install/arch_fb
Tobias Powalowski 320f9a7c28 simplify arch_fb
2013-05-22 09:45:17 +02:00

17 lines
388 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 "v86d"
add_file "/usr/lib/modprobe.d/uvesafb.conf" "/etc/modprobe.d/uvesafb.conf"
add_runscript
}
help ()
{
cat<<HELPEOF
This hook includes the framebuffer and kms subsystem on an arch boot image.
HELPEOF
}