From mboxrd@z Thu Jan 1 00:00:00 1970 From: voidexp@gmail.com (Ivan Nikolaev) Date: Tue, 19 Feb 2013 14:50:57 +0100 Subject: Suppress all boot output (framebuffer?) - embedded linux distro Message-ID: <51238341.30803@gmail.com> To: kernelnewbies@lists.kernelnewbies.org List-Id: kernelnewbies.lists.kernelnewbies.org Hi everybody! I'm new to linux kernel development (very very little experience), time ago have began studying Operating Systems, even written a simple x86 2-stage bootloader for my supa-dupa-noob-os (which never ended up in something working). Anyway, that was just to explain what kind of a noob you talk to. ;) I'm developing an ubuntu 12.04 (LTS) based embedded distribution, which basically is a normal ubuntu stripped down to bare minimal packages, which runs a minimal XOrg server with one single full-screen application. What I want is to suppress every single char of console output since the bootloader passed control to the kernel, and possibly show instead of that some static text and/or image. What I thought is to try to disable printk-s and to write some kind of patch which uses the framebuffer to show the logo. Is that possible/difficult? Can you eventually explain where I should dig? Thanks in advice!