Installer: change load order to load ahci after the ext2 module

Removed udev & klibc from updater
This commit is contained in:
Arne Fitzenreiter
2008-07-19 16:24:41 +02:00
parent f08494d7af
commit b9a5bed1de
5 changed files with 6 additions and 1650 deletions

View File

@@ -116,12 +116,14 @@ int main(int argc, char *argv[])
mysystem("/sbin/modprobe usb-storage");
mysystem("/sbin/modprobe usbhid");
mysystem("/bin/sleep 3");
mysystem("/sbin/modprobe ahci"); // SATA AHCI Host controller
mysystem("/sbin/modprobe iso9660"); // CDROM
mysystem("/sbin/modprobe ext2"); // Boot patition
mysystem("/sbin/modprobe vfat"); // USB key
// AHCI must be loaded after the filesystems
// or it find no partitions
mysystem("/sbin/modprobe ahci"); // SATA AHCI Host controller
/* German is the default */
for (choice = 0; langnames[choice]; choice++)