diff options
author | Antoine Ginies <aginies@mandriva.com> | 2008-09-17 14:49:22 +0000 |
---|---|---|
committer | Antoine Ginies <aginies@mandriva.com> | 2008-09-17 14:49:22 +0000 |
commit | fd51f8c57d6be0811989700421bec7d273610912 (patch) | |
tree | aeebdeed4ebccf3a56ab858e77033486b8bbee87 /drakpxelinux.pl | |
parent | 3a53d7dc9f1a8fddf077810743448afe6854dee3 (diff) | |
download | drakpxelinux-fd51f8c57d6be0811989700421bec7d273610912.tar drakpxelinux-fd51f8c57d6be0811989700421bec7d273610912.tar.gz drakpxelinux-fd51f8c57d6be0811989700421bec7d273610912.tar.bz2 drakpxelinux-fd51f8c57d6be0811989700421bec7d273610912.tar.xz drakpxelinux-fd51f8c57d6be0811989700421bec7d273610912.zip |
improve add entry wizard
Diffstat (limited to 'drakpxelinux.pl')
-rw-r--r-- | drakpxelinux.pl | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/drakpxelinux.pl b/drakpxelinux.pl index 9e32697..16a4973 100644 --- a/drakpxelinux.pl +++ b/drakpxelinux.pl @@ -22,7 +22,6 @@ # thx R1 for test and some debug # cvs.mandrakesoft.com module: /soft/drakpxelinux -my $version = "1.2.0"; # i18n: IMPORTANT: to get correct namespace (drakpxelinux instead of libDrakX) BEGIN { unshift @::textdomains, 'drakpxelinux' } @@ -316,9 +315,9 @@ sub wizard_add_entry { help => N("name displayed in PXE menu (please provide an ASCII word or a number, without spaces)") }, { label => N("PXE information:"), val => \$WINFO, help => N("The PXE information is used to explain the role of the boot image,\ne.g.:\nMandriva Linux 10 rescue disk\nMandriva Linux cooker install via http") }, - { label => N("Full path to all.rdz image source:"), val => \$WALLRDZ, + { label => N("Full path to all.rdz image source:"), type => 'file', val => \$WALLRDZ, help => N("Provide the full path to all.rdz image location") }, - { label => N("Full path to vmlinuz source:"), val => \$WVMLINUZ, + { label => N("Full path to vmlinuz source:"), type => 'file', val => \$WVMLINUZ, help => N("Provide the full path to vmlinuz kernel location") }, ], complete => sub { |