oem-ec2-compat: blacklist xen_fbfront

To complete the fix started in 480fb78, we ban xen_fbfront from loading on EC2.
Testing missed a case where this would still happen.
This commit is contained in:
Jed Smith 2015-05-11 14:16:59 -07:00 committed by Jed Smith
parent 4501de7633
commit c716d49b58
2 changed files with 7 additions and 0 deletions

View File

@ -0,0 +1,4 @@
# CoreOS GRUB settings for EC2
# Blacklist the Xen framebuffer module so it doesn't get loaded at boot
set linux_append="modprobe.blacklist=xen_fbfront"

View File

@ -43,4 +43,7 @@ src_prepare() {
src_install() {
insinto "/usr/share/oem"
doins ${T}/cloud-config.yml
if use ec2 ; then
newins ${FILESDIR}/grub-ec2.cfg grub.cfg
fi
}