HCL for Oracle Solaris OS

Submit Hardware | Return to Previous Page
Send Feedback to the HCL team
 
Detail
Type: Laptop
Manufacturer: Hewlett-Packard
Model: OmniBook 6000
Support: Not available
Runs on OS Versions: Oracle Solaris 10 03/05    Reported to Work
CPU Type: Pentium III
Num CPUs: 1
64-bit: false
General Notes: [Modified: 2006-10-09]

In a terminal window, execute the following commands:

[1] update_drv -a -i '"pci10b7,6055"' elxl

[2] reboot -- -r

After rebooting, execute the following:

bash-3.00# cat /etc/init.d/3c556
#!/sbin/sh
# I can't find the url thread now, but there was a post on
# Solaris forum about the onboard 10/100 3c556 ethernet interface
# can be enable with elxl driver except the MAC address will not
# configured correctly. Followings are to correct the problem manually.
CONFIG=/etc/hostname.elxl
case "$1" in
'start')
[ -f $CONFIG ] && {
ifconfig elxl0 down
ifconfig elxl0 unplumb
ifconfig elxl0 plumb
# put your own MAC address here
ifconfig elxl0 ether 00:00:86:43:EF:A6
# and your own ip address here
ifconfig elxl0 192.168.1.133 up
route add net default 192.168.1.1
}
;;
'stop')
ifconfig elxl0 down
route delete default 192.168.1.1
;;
*)
echo "Usage: $0 { start | stop }"
exit 1
;;
esac
exit 0
bash-3.00#
Last Updated: 2005-04-01