aboutsummaryrefslogtreecommitdiffstats
path: root/xen/drivers/Makefile
diff options
context:
space:
mode:
authorStefano Stabellini <stefano.stabellini@eu.citrix.com>2013-01-24 12:47:51 +0000
committerStefano Stabellini <stefano.stabellini@eu.citrix.com>2013-01-24 12:47:51 +0000
commit9f0443bafbab97831e5c99553bf9f0805537f3fc (patch)
treef345b364549d6431c6158b899aebf8f191f0d332 /xen/drivers/Makefile
parent22bf8a6c143701504b7ed71b80a6f39ae53ea39c (diff)
downloadxen-9f0443bafbab97831e5c99553bf9f0805537f3fc.tar.gz
xen-9f0443bafbab97831e5c99553bf9f0805537f3fc.tar.bz2
xen-9f0443bafbab97831e5c99553bf9f0805537f3fc.zip
xen: infrastructure to have cross-platform video drivers
- introduce a new HAS_VIDEO config variable; - build xen/drivers/video/font* if HAS_VIDEO; - rename vga_puts to video_puts; - rename vga_init to video_init; - rename vga_endboot to video_endboot. Signed-off-by: Stefano Stabellini <stefano.stabellini@eu.citrix.com> Acked-by: Ian Campbell <ian.campbell@citrix.com> Acked-by: Jan Beulich <jbeulich@suse.com> Acked-by: Keir Fraser <keir@xen.org> Committed-by: Ian Campbell <ian.campbell@citrix.com>
Diffstat (limited to 'xen/drivers/Makefile')
-rw-r--r--xen/drivers/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/xen/drivers/Makefile b/xen/drivers/Makefile
index 7239375331..9c70f20f23 100644
--- a/xen/drivers/Makefile
+++ b/xen/drivers/Makefile
@@ -3,4 +3,4 @@ subdir-$(HAS_CPUFREQ) += cpufreq
subdir-$(HAS_PCI) += pci
subdir-$(HAS_PASSTHROUGH) += passthrough
subdir-$(HAS_ACPI) += acpi
-subdir-$(HAS_VGA) += video
+subdir-$(HAS_VIDEO) += video