0

When you turn a Raspberry Pi on, it displays three (or four) pictures of raspberries in the top-left corner of the screen. Now, as far as I know, you cannot draw images or any other non-text content on the text mode terminal. How does Raspbian manage it? Even weirder, this happens before I start X..

The answer to this question, for example, says that it is impossible to draw images on the terminal without talking to X directly

DividedByZero
  • 591
  • 1
  • 5
  • 7
  • You can read all about how to program the raspberry pi framebuffer in this [interesting series of articles](http://raspberrycompote.blogspot.fr/2012/12/low-level-graphics-on-raspberry-pi-part_9509.html). – meuh Mar 21 '16 at 06:59

1 Answers1

1

The raspberries are not drawn on a text only screen, nor is X used.

This is part of the bootsplash image and displayed in VESA/VGA graphics mode, which also displays your boot text in a higher resolution (i.e. smaller characters) than the non-graphical 80x25 screen.

Anthon
  • 78,313
  • 42
  • 165
  • 222