summaryrefslogtreecommitdiffstats
path: root/boot-env/OpenSLX
diff options
context:
space:
mode:
authorSebastian Schmelzer2009-05-22 22:17:27 +0200
committerSebastian Schmelzer2009-05-22 22:17:27 +0200
commitd8c9b228163b6e06b01e79dff76a7364a2ba8c7f (patch)
tree6a61c013cd77a863c8ec96962adb115b01db1fae /boot-env/OpenSLX
parentadd fbcon, vesa to default module list (diff)
downloadcore-d8c9b228163b6e06b01e79dff76a7364a2ba8c7f.tar.gz
core-d8c9b228163b6e06b01e79dff76a7364a2ba8c7f.tar.xz
core-d8c9b228163b6e06b01e79dff76a7364a2ba8c7f.zip
minor changes
git-svn-id: http://svn.openslx.org/svn/openslx/openslx/trunk@2874 95ad53e4-c205-0410-b2fa-d234c58c8868
Diffstat (limited to 'boot-env/OpenSLX')
-rw-r--r--boot-env/OpenSLX/BootEnvironment/PrebootCD.pm2
-rw-r--r--boot-env/OpenSLX/MakeInitRamFS/Distro/Scilin.pm2
-rw-r--r--boot-env/OpenSLX/MakeInitRamFS/Distro/Suse.pm2
3 files changed, 3 insertions, 3 deletions
diff --git a/boot-env/OpenSLX/BootEnvironment/PrebootCD.pm b/boot-env/OpenSLX/BootEnvironment/PrebootCD.pm
index 60d0b2ba..f6afbcba 100644
--- a/boot-env/OpenSLX/BootEnvironment/PrebootCD.pm
+++ b/boot-env/OpenSLX/BootEnvironment/PrebootCD.pm
@@ -59,7 +59,7 @@ sub _createImage
# write trivial isolinux config
my $isolinuxConfig = unshiftHereDoc(<<" End-of-Here");
- PROMPT 0
+ PROMPT 1
TIMEOUT 100
DEFAULT OpenSLX
diff --git a/boot-env/OpenSLX/MakeInitRamFS/Distro/Scilin.pm b/boot-env/OpenSLX/MakeInitRamFS/Distro/Scilin.pm
index 14049224..942aab66 100644
--- a/boot-env/OpenSLX/MakeInitRamFS/Distro/Scilin.pm
+++ b/boot-env/OpenSLX/MakeInitRamFS/Distro/Scilin.pm
@@ -38,7 +38,7 @@ sub applyChanges
my $self = shift;
my $engine = shift;
# filter modules which are part of the main kernel already
- $engine->_addFilteredKernelModules( qw( af_packet hid usbhid unix ));
+ $engine->_addFilteredKernelModules( qw( af_packet hid usbhid unix vesafb fbcon));
return;
}
diff --git a/boot-env/OpenSLX/MakeInitRamFS/Distro/Suse.pm b/boot-env/OpenSLX/MakeInitRamFS/Distro/Suse.pm
index a7eca483..b553516a 100644
--- a/boot-env/OpenSLX/MakeInitRamFS/Distro/Suse.pm
+++ b/boot-env/OpenSLX/MakeInitRamFS/Distro/Suse.pm
@@ -37,7 +37,7 @@ sub applyChanges
my $self = shift;
my $engine = shift;
- $engine->_addFilteredKernelModules( qw( hid unix ));
+ $engine->_addFilteredKernelModules( qw( hid unix vesafb fbcon));
return;
}