Quite a regular
Joined: 2006/12/2 0:35 Last Login
: 1/19 10:37
From Sydney
Group:
Registered Users
|
@Lio
The device driver (sii3112ide.device.kmod) looks for a specific configuration, and, if not found, polls all ports (in your case, both ports) looking for attached devices.
The polling takes about 20 seconds to time out if no device is there - hence the delay you are experiencing.
You can prevent the delay by connecting devices to both ports, or alternatively, by adding an SDRAM variable which says "no ports":
Go into U-Boot command and type: setenv sii3112_conf 00 <Enter> saveenv <Enter>
That will tell the driver that there are no devices connected to the ports and to not poll it. When you add devices, change the "0" to a "1" for an SSD/HD or "2" for an ATAPI CD/DVD drive.
|