]> git.karo-electronics.de Git - karo-tx-linux.git/commit
lib: Move fonts from drivers/video/console/ to lib/fonts/
authorGeert Uytterhoeven <geert@linux-m68k.org>
Sun, 9 Jun 2013 09:46:43 +0000 (11:46 +0200)
committerGeert Uytterhoeven <geert@linux-m68k.org>
Tue, 18 Jun 2013 16:42:24 +0000 (18:42 +0200)
commit062d93db2c4f1dac5b93053dd20cca946cfd6103
tree84e48b2d1960eb88eac78d41348bcf2a0dc0c4d2
parent9cbce8d7e1dae0744ca4f68d62aa7de18196b6f4
lib: Move fonts from drivers/video/console/ to lib/fonts/

Several drivers need font support independent of CONFIG_VT, cfr. commit
9cbce8d7e1dae0744ca4f68d62aa7de18196b6f4, "console/font: Refactor font
support code selection logic").
Hence move the fonts and their support logic from drivers/video/console/ to
its own library directory lib/fonts/.
This also allows to limit processing of drivers/video/console/Makefile to
CONFIG_VT=y again.

Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org>
18 files changed:
drivers/video/Makefile
drivers/video/console/Kconfig
drivers/video/console/Makefile
lib/Kconfig
lib/Makefile
lib/fonts/Kconfig [new file with mode: 0644]
lib/fonts/Makefile [new file with mode: 0644]
lib/fonts/font_10x18.c [moved from drivers/video/console/font_10x18.c with 100% similarity]
lib/fonts/font_6x11.c [moved from drivers/video/console/font_6x11.c with 100% similarity]
lib/fonts/font_7x14.c [moved from drivers/video/console/font_7x14.c with 100% similarity]
lib/fonts/font_8x16.c [moved from drivers/video/console/font_8x16.c with 100% similarity]
lib/fonts/font_8x8.c [moved from drivers/video/console/font_8x8.c with 100% similarity]
lib/fonts/font_acorn_8x8.c [moved from drivers/video/console/font_acorn_8x8.c with 100% similarity]
lib/fonts/font_mini_4x6.c [moved from drivers/video/console/font_mini_4x6.c with 100% similarity]
lib/fonts/font_pearl_8x8.c [moved from drivers/video/console/font_pearl_8x8.c with 100% similarity]
lib/fonts/font_sun12x22.c [moved from drivers/video/console/font_sun12x22.c with 100% similarity]
lib/fonts/font_sun8x16.c [moved from drivers/video/console/font_sun8x16.c with 100% similarity]
lib/fonts/fonts.c [moved from drivers/video/console/fonts.c with 100% similarity]