diff options
author | Antonino A. Daplas <adaplas@gmail.com> | 2005-11-09 06:39:12 +0100 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2005-11-09 16:56:34 +0100 |
commit | dbcbfe1ea41e404d960a06fa2faf7da568909f33 (patch) | |
tree | 757dccdb6e1c518392b7ee973641969b6130bf11 /drivers/video/console/Makefile | |
parent | [PATCH] fbcon: Console Rotation - Add support to rotate font bitmap (diff) | |
download | linux-dbcbfe1ea41e404d960a06fa2faf7da568909f33.tar.xz linux-dbcbfe1ea41e404d960a06fa2faf7da568909f33.zip |
[PATCH] fbcon: Console Rotation - Add support for 90-degree console rotation
Add support for 90-degree (clockwise) rotation of the console. To activate,
boot with:
fbcon=rotate:1
Signed-off-by: Antonino Daplas <adaplas@pol.net>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'drivers/video/console/Makefile')
-rw-r--r-- | drivers/video/console/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/video/console/Makefile b/drivers/video/console/Makefile index 4532bdfa94fc..984f8cd3cc65 100644 --- a/drivers/video/console/Makefile +++ b/drivers/video/console/Makefile @@ -32,7 +32,7 @@ ifeq ($(CONFIG_FB_TILEBLITTING),y) obj-$(CONFIG_FRAMEBUFFER_CONSOLE) += tileblit.o endif ifeq ($(CONFIG_FRAMEBUFFER_CONSOLE_ROTATION),y) -obj-$(CONFIG_FRAMEBUFFER_CONSOLE) += fbcon_rotate.o +obj-$(CONFIG_FRAMEBUFFER_CONSOLE) += fbcon_rotate.o fbcon_cw.o endif obj-$(CONFIG_FB_STI) += sticore.o font.o |