Your message dated Sun, 15 Feb 2009 17:31:56 -0500
with message-id <20090215173156.7382a...@ephemeral>
and subject line Re: initramfs-tools: include framebuffer modules when 'most' is
has caused the Debian Bug report #504553,
regarding initramfs-tools: include framebuffer modules when 'most' is selected
to be marked as done.
This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.
(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [email protected]
immediately.)
--
504553: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=504553
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: initramfs-tools
Version: 0.92l
Severity: wishlist
Hi,
There is currently support for modular framebuffers in initramfs-tools
(modules are loaded when the kernel is passed "video=$mod"), but those
framebuffer modules aren't normally included. Please consider the
following patch which includes framebuffer modules.
>From c52b4d1346055c0c33c2474162585be7dde7c9dd Mon Sep 17 00:00:00 2001
From: Andres Salomon <[email protected]>
Date: Tue, 14 Oct 2008 15:31:24 -0400
Subject: [PATCH] include video (framebuffer, fbcon) modules
This adds support for video/fbcon when 'most' is selected.
Note that this doesn't fix 'dep'.
Signed-off-by: Andres Salomon <[email protected]>
---
debian/changelog | 1 +
hook-functions | 4 ++++
2 files changed, 5 insertions(+), 0 deletions(-)
diff --git a/debian/changelog b/debian/changelog
index babb190..833dcfa 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -3,6 +3,7 @@ initramfs-tools (0.92l.1) unstable; urgency=high
* NMU
* include mtd/jffs2/ubifs modules when 'most' is selected.
* add support for linux-2.6's deb-pkg (via /etc/kernel).
+ * include video (framebuffer, fbcon) modules when 'most' is selected.
-- Andres Salomon <[email protected]> Tue, 14 Oct 2008 14:16:50 -0400
diff --git a/hook-functions b/hook-functions
index 1c9f303..7d0ad15 100644
--- a/hook-functions
+++ b/hook-functions
@@ -353,6 +353,9 @@ auto_add_modules()
manual_add_modules "${x}"
done
;;
+ video)
+ copy_modules_dir kernel/drivers/video
+ ;;
scsi)
copy_modules_dir kernel/drivers/scsi
for x in mptfc mptsas mptscsih mptspi zfcp; do
@@ -399,6 +402,7 @@ auto_add_modules()
auto_add_modules firewire
auto_add_modules mmc
auto_add_modules mtd
+ auto_add_modules video
;;
esac
}
--
1.5.6.5
--- End Message ---
--- Begin Message ---
Hi,
At least for OLPC machines, we can include the requisite framebuffer modules
via hook. Thus, there's not much need for this patch. Thanks!
--- End Message ---