archboot/usr/lib/initcpio/install/arch_fb

18 lines
412 B
Text
Raw Normal View History

2012-05-27 11:40:23 +02:00
#!/bin/bash
# Created by Tobias Powalowski <tpowa@archlinux.org>
build ()
{
2012-05-27 21:54:46 +02:00
add_checked_modules 'drivers/video/|drivers/char/agp|i915|radeon|nouveau'
2012-05-27 11:40:23 +02:00
add_binary "/sbin/v86d"
2009-06-17 15:59:27 +02:00
add_file "/usr/share/archboot/fb/etc/modprobe.d/uvesafb.conf" "/etc/modprobe.d/uvesafb.conf"
2012-05-27 11:47:05 +02:00
add_runscript
}
help ()
{
cat<<HELPEOF
This hook includes the framebuffer and kms subsystem on an arch boot image.
HELPEOF
}