summaryrefslogtreecommitdiffstats
path: root/perl-install/network/ethernet.pm
Commit message (Collapse)AuthorAgeFilesLines
* (mapIntfToDevice) backport 9box detection fix:Thierry Vignaud2004-11-101-0/+1
| | | | | do not try to match usb devices since ldetect doesn't return enough data
* (get_eth_cards) workaround more buggy drivers that returns a bogus driver ↵Thierry Vignaud2004-10-121-0/+5
| | | | name for the GDRVINFO command of the ETHTOOL ioctl
* (get_eth_cards) fix another lying moduleThierry Vignaud2004-10-111-1/+5
|
* (configure_eth_aliases) don't write aliases for pcmcia cards butOlivier Blin2004-09-171-1/+7
| | | | | | | remove them, or else the pcmcia service won't be started correctly (the ethernet module being loaded, pcmcia_core would be loaded too, and the pcmcia service would think it is already started ...)
* (configure_eth_aliases) kill code that can't do anything goodOlivier Blin2004-09-171-1/+0
| | | | | (remove_alias isn't intended to be used with the module name)
* (get_eth_cards) document it somewhatThierry Vignaud2004-09-141-0/+13
|
* (get_eth_cards_names) let detect_devices->firewire_probe() set theThierry Vignaud2004-09-141-6/+1
| | | | | device description
* (get_eth_cards) workaround buggy eth1394 that returs a bogus driverThierry Vignaud2004-09-141-0/+1
| | | | | name for the GDRVINFO command of the ETHTOOL ioctl returns
* (get_eth_cards_names) set a sensible name for firewire networkThierry Vignaud2004-09-141-1/+6
| | | | | adapters in order to make GUIes look more user friendly
* (get_eth_cards_names) remove unused parameterOlivier Blin2004-09-141-1/+1
|
* (configureNetwork2) configure eth aliases, needs modules_confOlivier Blin2004-09-141-1/+1
|
* (configure_eth_aliases) errm, use modules_confOlivier Blin2004-09-141-1/+1
|
* do not configure eth aliases in various places, move aliasesOlivier Blin2004-09-141-10/+3
| | | | | configuration code from get_eth_cards_names to configure_eth_aliases
* remove update_eth_card_iftab(), add update_iftab()Olivier Blin2004-09-081-12/+10
|
* update mac address in network::ethernet::get_eth_cards to be sure iftab is ↵Olivier Blin2004-08-201-0/+20
| | | | always up-to-date
* use network::ethernet::get_eth_categories() when neededOlivier Blin2004-08-171-0/+1
|
* add network::ethernet::get_eth_categoriesOlivier Blin2004-08-171-0/+4
|
* drop network::ethernet::conf_network_card_backendOlivier Blin2004-08-171-37/+0
|
* (conf_network_card_backend) set NET_INTERFACE tooOlivier Blin2004-08-171-1/+1
|
* kill set_cnx_script usage, replace cnx_scripts with ifup/ifdownOlivier Blin2004-08-041-8/+0
|
* - %modules::conf is no more a global, so many functions need passing ↵Pascal Rigaux2004-07-211-13/+14
| | | | | | | | | | | | | | | $modules_conf - $modules_conf is a class choosing modules.conf or modprobe.conf (esp. useful after install) (but not working yet!) - modules::load() doesn't use $modules_conf, use modules::load_and_configure() - modules::load() doesn't allow options, use either modules::load_raw() or modules::load_and_configure() - some functions used to want an array ref for modules options and some a string, now every functions use a string - many functions (like modules::get_alias()) are now methods on $modules_conf - some functions in mouse.pm needed a $in where a $do_pkgs is enough - some perl_checker compliance - small fixes
* - rename add_alias() into set_alias()Pascal Rigaux2004-07-081-2/+2
| | | | | - create set_sound_slot() and use it
* modules::mergein_conf() doesn't need to be given /etc/modules.confPascal Rigaux2004-07-071-1/+1
| | | | | => prepare for reading either modprobe.conf or modules.conf based on the running kernel version
* (get_eth_cards) fallback on sysfs in order to get driver and cardThierry Vignaud2004-05-281-0/+11
| | | | | | description when ethtool is not supported (eg: ipw2100 driver for intel centrino)
* (mapIntfToDevice) only try to lookup pci or usb device by bus locationThierry Vignaud2004-05-251-1/+2
| | | | | | if its location is defined (some driver are returning bogus data on ETHTOOL_GDRVINFO command)
* (get_eth_cards) brown paper bug: fix card name lookup when driver doesThierry Vignaud2004-05-251-1/+1
| | | | | | not support GDRVINFO command from ETHTOOL ioctl and there's only one card managed by this driver
* use @cards instead of $#cards as told by master pipiDamien Chaumette2004-05-041-1/+1
|
* perl_checker fixesDamien Chaumette2004-05-041-3/+3
|
* (get_eth_cards) if SIOCETHTOOL ioctl is not supported by driver, tryThierry Vignaud2004-03-171-0/+4
| | | | | | to lookup card by driver in devices list (if there's only one physical card managed by this driver)
* (mapIntfToDevice) do not try to match a physical device when SIOCETHTOOL ↵Thierry Vignaud2004-03-151-2/+3
| | | | ioctl is not supported
* write ethX aliases and ifup/ifdown scripts when configuring a LAN connectionThierry Vignaud2004-02-231-1/+0
|
* (conf_network_card_backend) update its doc now that it has been splited inThierry Vignaud2004-02-231-5/+6
| | | | | get_eth_cards() and conf_network_card_backend()
* (mapIntfToDevice) match pci function too (not that important since weThierry Vignaud2004-02-101-2/+2
| | | | | | | | | do not know of any ethernet pci card that export two functions on the pci bug but anyway it's saner) note that we do not match for pci domain since ldetect does not report it
* (ether_conf) rename it as write_ether_conf()Thierry Vignaud2004-02-091-1/+1
|
* (mapIntfToDevice) fix pci/usb ethernet devices matchingThierry Vignaud2004-02-091-1/+1
|
* (get_eth_cards) try first to match a pcmcia device before trying toThierry Vignaud2004-02-051-4/+9
| | | | | match pci/usb ones when looking for real device's name (#7401)
* - add network::ethernet::get_eth_cards_namesDamien Chaumette2004-02-041-0/+10
| | | | | - kill duplicated code
* this module does not need anymore pseudo global variablesThierry Vignaud2004-02-021-2/+0
|
* (get_eth_cards) handle not loaded driversThierry Vignaud2004-02-021-1/+2
|
* (conf_network_card_backend) make type and interface arguments mandatoryThierry Vignaud2004-01-301-6/+6
|
* convert some write_cnx_script() callers into set_cnx_script() onesThierry Vignaud2004-01-291-1/+1
|
* (conf_network_card_backend) insert a bug noticeThierry Vignaud2004-01-291-0/+1
|
* (conf_network_card_backend) remove compat stuff since callers wereThierry Vignaud2004-01-291-2/+0
| | | | | cleaned up
* (mapIntfToDevice) actually use given interface rather than hardcoded "eth0"Thierry Vignaud2004-01-261-1/+1
|
* cleanupsThierry Vignaud2004-01-261-7/+4
|
* (get_eth_cards)Thierry Vignaud2004-01-261-15/+21
| | | | | | | | | - split it out of conf_network_card_backend() (which still call it for compatibility for now but sincefunctions whose behavior is totally altered by arguments are insane should just be splited, caller will be fixed then this compatibily call removed) - add a third string in returned tuples (physical net device description)
* (mapIntfToDevice) introduce it in order to map a network interface to aThierry Vignaud2004-01-261-1/+8
| | | | | pci/usb/... device
* get rid of pseudo global $prefix, just reuse global $::prefix :-)Thierry Vignaud2004-01-261-4/+4
|
* do not export dead functionsThierry Vignaud2004-01-161-1/+1
|
* write_conf() doesn't need $prefix anymorePascal Rigaux2004-01-051-1/+1
|