diff options
author | Olivier Blin <oblin@mandriva.org> | 2005-09-13 09:14:22 +0000 |
---|---|---|
committer | Olivier Blin <oblin@mandriva.org> | 2005-09-13 09:14:22 +0000 |
commit | d47495ee469072eda953ac70b211f11b47922aac (patch) | |
tree | 7fb76f44a63187c4b750eb4500cb9520b158055c /drakpxelinux.pl | |
parent | 708d3228fecbca9b535f59fe790b6d8cfd5fbc24 (diff) | |
download | drakpxelinux-d47495ee469072eda953ac70b211f11b47922aac.tar drakpxelinux-d47495ee469072eda953ac70b211f11b47922aac.tar.gz drakpxelinux-d47495ee469072eda953ac70b211f11b47922aac.tar.bz2 drakpxelinux-d47495ee469072eda953ac70b211f11b47922aac.tar.xz drakpxelinux-d47495ee469072eda953ac70b211f11b47922aac.zip |
allow to automatically select the network interface (#18513)
Diffstat (limited to 'drakpxelinux.pl')
-rw-r--r-- | drakpxelinux.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drakpxelinux.pl b/drakpxelinux.pl index a9943cf..437e2a1 100644 --- a/drakpxelinux.pl +++ b/drakpxelinux.pl @@ -150,7 +150,7 @@ save_config($network::pxe::pxelinux_config_file); my @list_method = qw(nfs http ka); push @list_method, ""; my @list_ram = qw(32000 48000 64000 96000 128000); -my @list_eth = qw(eth0 eth1 eth2); push @list_eth, ""; +my @list_eth = qw(auto eth0 eth1 eth2); push @list_eth, ""; use constant COLUMN_LABEL => 0; use constant COLUMN_INFO => 1; |