Package: plymouth Version: 0.7.2-1 Severity: normal Tags: patch Hi, plymouth looks for /dev/fb instead of /dev/fb0 by default which makes it fail all of the graphical splashs. Although this can be overriden by $FRAMEBUFFER setting a reasonable default makes sense. Patch attached. Cheers, -- Guido
-- System Information: Debian Release: squeeze/sid APT prefers unstable APT policy: (500, 'unstable'), (500, 'testing'), (500, 'stable'), (1, 'experimental') Architecture: i386 (i686) Kernel: Linux 2.6.33 (SMP w/2 CPU cores) Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/dash
>From 03b8cc38f1ba9fb9de958b5ca4be90657faf8714 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Guido=20G=C3=BCnther?= <[email protected]> Date: Sat, 13 Mar 2010 13:37:27 +0100 Subject: [PATCH 1/2] Set default framebuffer device to /dev/fb0 instead of /dev/fb which doesn't exist by default. --- src/libply/ply-frame-buffer.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/src/libply/ply-frame-buffer.c b/src/libply/ply-frame-buffer.c index a1e4fcd..19aab4b 100644 --- a/src/libply/ply-frame-buffer.c +++ b/src/libply/ply-frame-buffer.c @@ -46,7 +46,7 @@ #include <linux/fb.h> #ifndef PLY_FRAME_BUFFER_DEFAULT_FB_DEVICE_NAME -#define PLY_FRAME_BUFFER_DEFAULT_FB_DEVICE_NAME "/dev/fb" +#define PLY_FRAME_BUFFER_DEFAULT_FB_DEVICE_NAME "/dev/fb0" #endif struct _ply_frame_buffer -- 1.7.0

