diff options
author | Jeremy Katz <katzj@redhat.com> | 2002-12-12 00:37:04 +0000 |
---|---|---|
committer | Jeremy Katz <katzj@redhat.com> | 2002-12-12 00:37:04 +0000 |
commit | f430a40fd9e86145cf2f15dd30b533a7710835aa (patch) | |
tree | c91031bb4b4af69fb5a111455a23681957a3f045 /loader2/loader.c | |
parent | cea62b482b5350d158dc7c5e377fe7d457964bf5 (diff) | |
download | anaconda-f430a40fd9e86145cf2f15dd30b533a7710835aa.tar.gz anaconda-f430a40fd9e86145cf2f15dd30b533a7710835aa.tar.xz anaconda-f430a40fd9e86145cf2f15dd30b533a7710835aa.zip |
amazing how much better it works if I look for /proc/bus/pci/devices instead of /proc/bus/devices
Diffstat (limited to 'loader2/loader.c')
-rw-r--r-- | loader2/loader.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/loader2/loader.c b/loader2/loader.c index a48d971e1..3a1d45593 100644 --- a/loader2/loader.c +++ b/loader2/loader.c @@ -981,11 +981,10 @@ int main(int argc, char ** argv) { checkForHardDrives(&kd, &flags); - if (((access("/proc/bus/devices", R_OK) && + if (((access("/proc/bus/pci/devices", R_OK) && access("/proc/openprom", R_OK) && access("/proc/iSeries", R_OK)) || - FL_ISA(flags) || FL_NOPROBE(flags)) && !FL_KICKSTART(flags)) { - + FL_ISA(flags) || FL_NOPROBE(flags)) && !loaderData.ksFile) { startNewt(flags); manualDeviceCheck(modInfo, modLoaded, &modDeps, &kd, flags); } |