1 |
vip-ire |
1.1 |
diff -Nur e-smith-base-5.6.0/root/usr/share/perl5/vendor_perl/esmith/console/configure.pm e-smith-base-5.6.0_bz8561/root/usr/share/perl5/vendor_perl/esmith/console/configure.pm |
2 |
|
|
--- e-smith-base-5.6.0/root/usr/share/perl5/vendor_perl/esmith/console/configure.pm 2014-09-21 10:22:49.029000000 +0200 |
3 |
|
|
+++ e-smith-base-5.6.0_bz8561/root/usr/share/perl5/vendor_perl/esmith/console/configure.pm 2014-09-21 10:26:08.482000000 +0200 |
4 |
|
|
@@ -56,8 +56,9 @@ |
5 |
|
|
return 'CHANGE'; |
6 |
|
|
} |
7 |
|
|
# Internal, and there's only one |
8 |
|
|
- my (undef, $driver, $hwaddr, undef) = split (/\s+/, $adapters[0], 4); |
9 |
|
|
+ my (undef, $driver, $hwaddr, undef, $device) = split (/\t/, $adapters[0], 5); |
10 |
|
|
$db->set_value("EthernetDriver1", $driver); |
11 |
|
|
+ $db->set_prop("InternalInterface", "Name", $device); |
12 |
|
|
return 'CHANGE'; |
13 |
|
|
} |
14 |
|
|
|