summaryrefslogtreecommitdiffstats
path: root/loader2/hardware.c
Commit message (Collapse)AuthorAgeFilesLines
* Renamed loader2 subdirectory to loader (hooray for git)David Cantrell2008-08-251-201/+0
|
* Use %m rather than strerror() where appropriate.Peter Jones2008-07-081-2/+1
|
* Check return value of asprintf() consistentlyDavid Cantrell2008-06-271-1/+5
| | | | | | | | | For instances where the asprintf() was ignored, wrap it in a test to check if it failed. If it failed, log a message and abort. There may be some instances where abort may not be what we want to do, however, we were ignoring the return value completely so if we did get a failure, it would just SIGSEGV. Now it will SIGABRT instead.
* Fix a simple build error.Chris Lumens2008-06-181-1/+1
|
* Deal with udev losing udevcontrol/udevtriggerJeremy Katz2008-06-171-1/+1
| | | | | udev is stopping supporting udevcontrol/udevtrigger as symlinks, so we should change what we call
* Inline spufs loading for ppc.Bill Nottingham2008-01-221-24/+0
|
* inline ipv6 module loadingBill Nottingham2008-01-221-6/+0
|
* Add some output so the startup delay doesn't seem quite so long.Chris Lumens2008-01-151-0/+2
|
* remove unneeded argumentsBill Nottingham2008-01-141-2/+2
|
* Adjust loader to new hardware code.Bill Nottingham2007-12-201-1/+0
|
* Use udev to coldplug modules.Bill Nottingham2007-12-191-95/+40
| | | | | Run udevtrigger to start coldplug, and udevsettle to wait for it to finish.
* Adjust to removal of moduleDeps and moduleList.Bill Nottingham2007-12-191-64/+14
|
* Clean up typos and other things for GPLv2+ changes.David Cantrell2007-12-171-4/+4
| | | | | | | Shorten 'Red Hat Author(s)' to just 'Author(s)'. Perhaps eventually we'll get an AUTHORS file and will just remove author names from the individual files. Also fixed a type in scripts/dumphdrlist.py where Author was listed twice.
* GPLv2+ boilerplates for loader2/ source files.David Cantrell2007-12-171-9/+16
|
* canProbeDevices always returns 1, so remove it.Chris Lumens2007-11-151-41/+20
|
* 2007-10-12 Jeremy Katz <katzj@redhat.com>Jeremy Katz2007-10-121-4/+0
| | | | | * loader2/hardware.c (detectHardware): Revert ssb hack as kudzu has one now
* Fix typo.Chris Lumens2007-10-051-1/+1
|
* 2007-10-04 Jeremy Katz <katzj@redhat.com>Jeremy Katz2007-10-041-0/+4
| | | | | * loader2/hardware.c (detectHardware): Hack to ignore ssb driver (#311421)
* 2007-09-11 Jeremy Katz <katzj@redhat.com>Jeremy Katz2007-09-111-1/+1
| | | | | * loader2/hardware.c (detectHardware): Probe usb so that usb network installs work (H.J. Lu, #285491)
* Same change you just saw on rhel5-branch ported to the HEAD branch.David Cantrell2007-08-061-1/+1
|
* * loader2/hardware.c: Comment out BUS_EBUS for now since we are waitingDavid Cantrell2007-06-121-1/+3
| | | | on a new kudzu that supports it.
* * loader2/hardware.c (detectHardware): Probe BUS_EBUS to supportDavid Cantrell2007-06-061-1/+1
| | | | | HEA devices on IBM systems (#228578). * loader2/module-info: ehea_mod -> ehea (#228578).
* 2007-04-30 Jeremy Katz <katzj@redhat.com>Jeremy Katz2007-05-011-1/+1
| | | | | | * anaconda.spec: Bump version. * loader2/hardware.c (spufsSetup): Fix build
* Load spufs module on cell (#237725) and remove spufs hack as we should do thePaul Nasrat2007-04-271-0/+24
| | | | right thing now.
* Reapply dwmw2's PS3 probing patches and update to require appropriate kudzu.Paul Nasrat2007-04-181-1/+1
|
* Back out PS3 patch for now since support's not yet present in kudzu.Chris Lumens2007-04-171-1/+1
|
* Remove historical artifacts.Chris Lumens2007-04-161-40/+0
|
* Probe PS3 bus for hardware (#236480, dwmw2 AT redhat.com).Chris Lumens2007-04-161-4/+4
|
* - add support for CLASS_ATA and CLASS_SATAPeter Jones2006-08-091-1/+3
|
* 2006-07-13 Jeremy Katz <katzj@redhat.com>Jeremy Katz2006-07-131-3/+1
| | | | * loader2/hardware.c (scsiSetup): Always load iSCSI modules.
* Make the boot flags variable global. We don't need to pass it (or a pointer ↵David Cantrell2006-06-121-27/+27
| | | | to it) all over the place.
* Make sure we pull in the ipv6.ko module and load that. I thought a noipv6David Cantrell2006-06-081-0/+7
| | | | | option would be good for people who fear change, so I'll get that implemented throughout the loader.
* 2006-02-06 Patrick Mansfield <patmans@us.ibm.com>Jeremy Katz2006-02-061-0/+3
| | | | | | | * loader2/hardware.c: Load iscsi modules if requested. * loader2/loader.c: Add iscsi flag parsing. Ask for network if iscsi is being used. * loader2/loader.h: Add iscsi flag.
* 2005-11-10 Jeremy Katz <katzj@redhat.com>Jeremy Katz2005-11-101-1/+1
| | | | * loader2/hardware.c: Look for xen devices.
* 2005-11-09 Jeremy Katz <katzj@redhat.com>Jeremy Katz2005-11-091-9/+9
| | | | | | | | | | | | | | | | | | | * loader2/driverdisk.c: Clean up log levels. * loader2/firewire.c: Likewise. * loader2/hardware.c: Likewise. * loader2/hdinstall.c: Likewise. * loader2/lang.c: Likewise. * loader2/loader.c: Likewise. * loader2/log.h: Likewise. * loader2/mediacheck.c: Likewise. * loader2/method.c: Likewise. * loader2/modstubs.c: Likewise. * loader2/modules.c: Likewise. * loader2/net.c: Likewise. * loader2/nfsinstall.c: Likewise. * loader2/pcmcia.c: Likewise. * loader2/urls.c: Likewise. * loader2/usb.c: Likewise.
* 2005-10-20 Jeremy Katz <katzj@redhat.com>Jeremy Katz2005-10-201-6/+1
| | | | * anaconda.spec: Bump version.
* * loader2/loader.c: Don't load parallel port module. (#169135)Jeremy Katz2005-09-231-19/+0
| | | | | * loader2/loader.h (LOADER_FLAGS_NOPARPORT): Remove unused flag. * loader2/hardware.c (initializeParallelPort): Remove unused code.
* * loader2/firewire.c: Handle 'NULL' in device->driver.Bill Nottingham2005-09-151-8/+9
| | | | | | * loader2/hardware.c: Likewise. * loader2/pcmcia.c: Likewise. * loader2/usb.c: Likewise.
* * loader2/pcmcia.c (getPcicController): Handle multipleBill Nottingham2005-09-131-3/+1
| | | | | | | | | | | | | | PCIC types in one box. * loader2/pcmcia.c (startupPcmciaControllers): Add code to set resources for PCMCIA controllers, and enable them. (initializePcmciaController): Call it. (has_pcmcia, startPcmciaDevices, activate_device): Remove obsolete and ugly cruft. * loader2/pcmciatest.c: Remove obsolete file * loader2/hardware.c: Adjust for changes. * scripts/mk-images: Remove obsolete PCMCIA options * scripts/upd-instroot: Ship pcmciautils socket startup program. (mainly for debugging. It's tiny.)
* * loader2/hardware.c: Remove agpgartInitialize - agpgart isBill Nottingham2005-09-131-43/+0
| | | | | | | built statically in 2.6 (and the probe code here won't work now in any case...) * loader2/hardware.h: Likewise. * loader2/loader.c: Adjust accordingly.
* Support logging levels in the loader just like in the python parts of theChris Lumens2005-08-131-29/+30
| | | | | | installer. Also make the output look the same. This isn't going to be nearly as sophisticated as the python logging module, but it will at least behave similarly with command line options.
* 2005-04-27 Jeremy Katz <katzj@redhat.com>Jeremy Katz2005-04-271-1/+1
| | | | * loader2/hardware.c (detectHardware): Probe macio (pnasrat, #154846)
* 2004-09-27 Jeremy Katz <katzj@redhat.com>Jeremy Katz2004-09-271-2/+0
| | | | | | | * loader2/hardware.c: we need to always do our busprobe (fixes nonet, etc) * loader2/loader.c: noprobe ==> nousb and nofirewire
* 2004-09-23 Jeremy Katz <katzj@redhat.com>Jeremy Katz2004-09-231-0/+4
| | | | | * loader2/hardware.c: We can always probe devices with current supported hardware. (#132592)
* add nonet and nostorage to not automatically load network and storageJeremy Katz2004-09-161-0/+9
| | | | | drivers. useful if you're kickstarting and need to do an alternate driver as you can then do a device line in your ks.cfg
* probe vio bus also for modules to load (for power5)Jeremy Katz2004-09-081-1/+1
|
* #ifdef __s390__ zfcp module loadingKarsten Hopp2004-07-151-1/+4
|
* Jeremy:Karsten Hopp2004-07-151-9/+7
| | | | | | | | Not sure about adding zfcp to the list of scsi modules, even though it just prints a warning on non-mainframe. Should this be #ifdef'd ? The rest fixes one of your FIXME's, I run into this bug without knowing that you already had a patch in -HEAD, maybe I should update more often.
* don't free line or else we lose our parm. this will leak a little butJeremy Katz2004-06-291-1/+2
| | | | will work temporarily
* veth is now iseries_vethJeremy Katz2004-05-051-1/+1
|