summaryrefslogtreecommitdiffstats
path: root/make_boot_img
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2004-05-03 10:53:45 +0000
committerPascal Rigaux <pixel@mandriva.com>2004-05-03 10:53:45 +0000
commit2c4835721ce19f9b9d0b60c259ef551f14c5daf2 (patch)
treedabdba5fc59d3aab8e977c7b41aeee372e18975d /make_boot_img
parentf7a25ddb6e64e724ba585ce1a7dc649475355d65 (diff)
downloaddrakx-backup-do-not-use-2c4835721ce19f9b9d0b60c259ef551f14c5daf2.tar
drakx-backup-do-not-use-2c4835721ce19f9b9d0b60c259ef551f14c5daf2.tar.gz
drakx-backup-do-not-use-2c4835721ce19f9b9d0b60c259ef551f14c5daf2.tar.bz2
drakx-backup-do-not-use-2c4835721ce19f9b9d0b60c259ef551f14c5daf2.tar.xz
drakx-backup-do-not-use-2c4835721ce19f9b9d0b60c259ef551f14c5daf2.zip
simplify: isolinux always use boot.msg
Diffstat (limited to 'make_boot_img')
-rwxr-xr-xmake_boot_img18
1 files changed, 8 insertions, 10 deletions
diff --git a/make_boot_img b/make_boot_img
index 31a5e2c41..0e0aa51c8 100755
--- a/make_boot_img
+++ b/make_boot_img
@@ -643,10 +643,10 @@ sub isolinux {
default linux
prompt 1
timeout 150
-" . (-e "isolinux/boot.msg" ? "display boot.msg" : "display help.msg") . "
+display boot.msg
F1 help.msg
F2 advanced.msg
-" . (-e "isolinux/boot.msg" && "F3 boot.msg") . "
+F3 boot.msg
" . join('', map {
"label $_->[0]
kernel alt0/vmlinuz
@@ -661,7 +661,7 @@ F2 advanced.msg
kernel test/memtest.bin
";
- output "isolinux/help.msg", (-e "isolinux/boot.msg" && pack "C*", 0x0E, 0x80, 0x03, 0x00) .
+ output "isolinux/help.msg", pack("C*", 0x0E, 0x80, 0x03, 0x00) .
"
0aWelcome to 09Mandrake Linux0a install help07
@@ -684,11 +684,10 @@ kernel ($main) does not detect it correctly.
0cNOTE07: You cannot pass options to modules (SCSI, ethernet card) or devices
such as CD-ROM drives in this way. If you need to do so, use expert mode.
-" . (-e "isolinux/boot.msg" ?
- "0c[F1-Help] [F2-Advanced Help] [F3-Main]07" :
- "0c[F1-Help] [F2-Advanced Help]07") . "\n";
+0c[F1-Help] [F2-Advanced Help] [F3-Main]07
+";
- output "isolinux/advanced.msg", (-e "isolinux/boot.msg" && pack "C*", 0x0E, 0x80, 0x03, 0x00) .
+ output "isolinux/advanced.msg", pack("C*", 0x0E, 0x80, 0x03, 0x00) .
"
The following install types may be used instead of previously notified :
o 0fvgahi07 for high resolution graphical installation.
@@ -708,9 +707,8 @@ The following options may be added on the command line :
You can choose the following kernels :
" . join('', map_index { " o 0falt$::i07 is kernel $_\n" } @kernels) . "
-" . (-e "isolinux/boot.msg" ?
- "0c[F1-Help] [F2-Advanced Help] [F3-Main]07" :
- "0c[F1-Help] [F2-Advanced Help]07") . "\n";
+0c[F1-Help] [F2-Advanced Help] [F3-Main]07
+";
}
sub isolinux_move {