[U-Boot] Pull request: u-boot-video/master

Hi Tom,
The following changes since commit 8a36287a019f5d7532a8a1a7da6aa96e490dbb8a:
Merge git://git.denx.de/u-boot-dm (2016-01-29 13:47:38 -0500)
are available in the git repository at:
git://git.denx.de/u-boot-video.git master
for you to fetch changes up to 8cdae1dacde7dbe74d53a8ac1a05761a53c4f191:
video: Correct 'tor' typo in comment (2016-01-30 10:58:47 +0100)
---------------------------------------------------------------- Simon Glass (19): video: Add stb TrueType font renderer Makefile: Add rules to build in .ttf files video kconfig console_normal video: Use fractional units for X coordinates video: Handle the 'bell' character video: Provide a left margin for the text console video: Provide a signal when a new console line is started video: Provide a backspace method video: Add a console driver that uses TrueType fonts video: Add the Nimbus sans font video: Add the AnkaCoder mono-spaced font video: Add the Rufscript handwriting font video: Add the Cantoraone decorative font License: Add the Open Font License video: Allow selection of the driver and font size video: sandbox: Allow selection of font size and console name video: sandbox: Enable truetype fonts for sandbox video: test: Add console tests for truetype video: Correct 'tor' typo in comment
Licenses/OFL.txt | 97 + Licenses/README | 1 + configs/sandbox_defconfig | 4 +- drivers/video/Kconfig | 36 +- drivers/video/Makefile | 6 +- drivers/video/console_normal.c | 24 +- drivers/video/console_rotate.c | 65 +- drivers/video/console_truetype.c | 550 +++++ drivers/video/fonts/Kconfig | 51 + drivers/video/fonts/Makefile | 11 + drivers/video/fonts/ankacoder_c75_r.ttf | Bin 0 -> 65596 bytes drivers/video/fonts/cantoraone_regular.ttf | Bin 0 -> 163116 bytes drivers/video/fonts/nimbus_sans_l_regular.ttf | Bin 0 -> 61660 bytes drivers/video/fonts/rufscript010.ttf | Bin 0 -> 23080 bytes drivers/video/sandbox_sdl.c | 2 + drivers/video/stb_truetype.h | 3240 +++++++++++++++++++++++++ drivers/video/vidconsole-uclass.c | 84 +- drivers/video/video-uclass.c | 29 +- include/dm/test.h | 2 + include/video.h | 7 +- include/video_console.h | 70 +- scripts/Makefile.lib | 21 + test/dm/video.c | 90 +- 23 files changed, 4325 insertions(+), 65 deletions(-) create mode 100644 Licenses/OFL.txt create mode 100644 drivers/video/console_truetype.c create mode 100644 drivers/video/fonts/Kconfig create mode 100644 drivers/video/fonts/Makefile create mode 100644 drivers/video/fonts/ankacoder_c75_r.ttf create mode 100644 drivers/video/fonts/cantoraone_regular.ttf create mode 100644 drivers/video/fonts/nimbus_sans_l_regular.ttf create mode 100644 drivers/video/fonts/rufscript010.ttf create mode 100644 drivers/video/stb_truetype.h
Please pull. Thanks!
Anatolij

On Sat, Jan 30, 2016 at 02:12:39PM +0100, Anatolij Gustschin wrote:
Hi Tom,
The following changes since commit 8a36287a019f5d7532a8a1a7da6aa96e490dbb8a:
Merge git://git.denx.de/u-boot-dm (2016-01-29 13:47:38 -0500)
are available in the git repository at:
git://git.denx.de/u-boot-video.git master
for you to fetch changes up to 8cdae1dacde7dbe74d53a8ac1a05761a53c4f191:
video: Correct 'tor' typo in comment (2016-01-30 10:58:47 +0100)
Applied to u-boot/master, thanks!
But do note: 20: video: Correct 'tor' typo in comment sandbox: (for 1/1 boards) all +189440.0 data +384.0 rodata +164352.0 text +24704.0 sandbox : all +189440 data +384 rodata +164352 text +24704 arm: (for 495/495 boards) all -33.1 bss +0.0 data -26.2 rodata -0.2 text -6.7 rock2 : all -5464 bss -20 data -4328 rodata -36 text -1080 chromebook_jerry: all -5464 bss +12 data -4328 rodata -36 text -1112 firefly-rk3288 : all -5464 bss +12 data -4328 rodata -36 text -1112
So was something disabled by accident for Rockchip, Simon?

Hi Tom,
On 30 January 2016 at 15:11, Tom Rini trini@konsulko.com wrote:
On Sat, Jan 30, 2016 at 02:12:39PM +0100, Anatolij Gustschin wrote:
Hi Tom,
The following changes since commit 8a36287a019f5d7532a8a1a7da6aa96e490dbb8a:
Merge git://git.denx.de/u-boot-dm (2016-01-29 13:47:38 -0500)
are available in the git repository at:
git://git.denx.de/u-boot-video.git master
for you to fetch changes up to 8cdae1dacde7dbe74d53a8ac1a05761a53c4f191:
video: Correct 'tor' typo in comment (2016-01-30 10:58:47 +0100)
Applied to u-boot/master, thanks!
But do note: 20: video: Correct 'tor' typo in comment sandbox: (for 1/1 boards) all +189440.0 data +384.0 rodata +164352.0 text +24704.0 sandbox : all +189440 data +384 rodata +164352 text +24704 arm: (for 495/495 boards) all -33.1 bss +0.0 data -26.2 rodata -0.2 text -6.7 rock2 : all -5464 bss -20 data -4328 rodata -36 text -1080 chromebook_jerry: all -5464 bss +12 data -4328 rodata -36 text -1112 firefly-rk3288 : all -5464 bss +12 data -4328 rodata -36 text -1112
So was something disabled by accident for Rockchip, Simon?
Yes, the rotated console. I do want it disabled but here it was done by accident. I'll send a patch to tidy it up.
Regards, Simon
participants (3)
-
Anatolij Gustschin
-
Simon Glass
-
Tom Rini