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>
Fri, 28 Jun 2013 08:28:22 +0000 (10:28 +0200)
commitee89bd6bc73d1d14555418a2642172448052f1dd
tree854442fcd43a77286056a1eafecacd8878f067f4
parentd1e183c8dd38bfdd07e38a79577fe78124e63ab1
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.

[Kevin Hilman <khilman@linaro.org>: Update arch/arm/boot/compressed/Makefile]
Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org>
33 files changed:
Documentation/DocBook/device-drivers.tmpl
arch/arm/boot/compressed/Makefile
arch/m68k/kernel/asm-offsets.c
arch/unicore32/boot/compressed/Makefile
drivers/video/Makefile
drivers/video/console/Kconfig
drivers/video/console/Makefile
drivers/video/console/font_10x18.c [deleted file]
drivers/video/console/font_6x11.c [deleted file]
drivers/video/console/font_7x14.c [deleted file]
drivers/video/console/font_8x16.c [deleted file]
drivers/video/console/font_8x8.c [deleted file]
drivers/video/console/font_acorn_8x8.c [deleted file]
drivers/video/console/font_mini_4x6.c [deleted file]
drivers/video/console/font_pearl_8x8.c [deleted file]
drivers/video/console/font_sun12x22.c [deleted file]
drivers/video/console/font_sun8x16.c [deleted file]
drivers/video/console/fonts.c [deleted file]
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 [new file with mode: 0644]
lib/fonts/font_6x11.c [new file with mode: 0644]
lib/fonts/font_7x14.c [new file with mode: 0644]
lib/fonts/font_8x16.c [new file with mode: 0644]
lib/fonts/font_8x8.c [new file with mode: 0644]
lib/fonts/font_acorn_8x8.c [new file with mode: 0644]
lib/fonts/font_mini_4x6.c [new file with mode: 0644]
lib/fonts/font_pearl_8x8.c [new file with mode: 0644]
lib/fonts/font_sun12x22.c [new file with mode: 0644]
lib/fonts/font_sun8x16.c [new file with mode: 0644]
lib/fonts/fonts.c [new file with mode: 0644]