summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDirk von Suchodoletz2010-08-10 18:47:41 +0200
committerDirk von Suchodoletz2010-08-10 18:47:41 +0200
commit1b0714ed582e11e66124280d505983ab8885cf3e (patch)
tree1fe069249c7b8c10eeeca99fd5d162d875cd8f9f
parentChanges for Ubuntu ... (diff)
downloadcore-1b0714ed582e11e66124280d505983ab8885cf3e.tar.gz
core-1b0714ed582e11e66124280d505983ab8885cf3e.tar.xz
core-1b0714ed582e11e66124280d505983ab8885cf3e.zip
Trying on new bootsplash generation ... adding needed framebuffer
modules to initramfs.
-rwxr-xr-xinitramfs/stage3-stuff/bin/hwautocfg2
-rw-r--r--os-plugins/plugins/bootsplash/OpenSLX/OSPlugin/bootsplash.pm8
2 files changed, 5 insertions, 5 deletions
diff --git a/initramfs/stage3-stuff/bin/hwautocfg b/initramfs/stage3-stuff/bin/hwautocfg
index fee54a16..a9a711e3 100755
--- a/initramfs/stage3-stuff/bin/hwautocfg
+++ b/initramfs/stage3-stuff/bin/hwautocfg
@@ -1,6 +1,6 @@
#!/bin/ash
# Copyright (c) 2003..2006 - RZ Uni Freiburg
-# Copyright (c) 2006..2009 - OpenSLX GmbH
+# Copyright (c) 2006..2010 - OpenSLX GmbH
#
# This program is free software distributed under the GPL version 2.
# See http://openslx.org/COPYING
diff --git a/os-plugins/plugins/bootsplash/OpenSLX/OSPlugin/bootsplash.pm b/os-plugins/plugins/bootsplash/OpenSLX/OSPlugin/bootsplash.pm
index 697d4184..3a4f3743 100644
--- a/os-plugins/plugins/bootsplash/OpenSLX/OSPlugin/bootsplash.pm
+++ b/os-plugins/plugins/bootsplash/OpenSLX/OSPlugin/bootsplash.pm
@@ -1,4 +1,4 @@
-# Copyright (c) 2007 - OpenSLX GmbH
+# Copyright (c) 2007..2010 - OpenSLX GmbH
#
# This program is free software distributed under the GPL version 2.
# See http://openslx.org/COPYING
@@ -107,9 +107,9 @@ sub suggestAdditionalKernelModules
my @suggestedModules;
# Ubuntu needs vesafb and fbcon (which drags along some others)
- if ($makeInitRamFSEngine->{'distro-name'} =~ m{^ubuntu}i) {
- push @suggestedModules, qw( vesafb fbcon )
- }
+ #if ($makeInitRamFSEngine->{'distro-name'} =~ m{^ubuntu}i) {
+ push @suggestedModules, qw( i810 i830 i915 mga mga nouveau r128 radeon savage sis tdfx ttm via drm fbcon )
+ #}
return @suggestedModules;
}