summaryrefslogtreecommitdiffstats
path: root/loader
diff options
context:
space:
mode:
authorDavid Cantrell <dcantrell@redhat.com>2008-10-30 11:26:50 -1000
committerDavid Cantrell <dcantrell@redhat.com>2008-10-31 10:17:29 -1000
commit90b3dd722756333adf5a3f934bc3ffe26272ba41 (patch)
tree3e5536180e0681e8ce81ce59d78ecc3b521de451 /loader
parentda2aa9d9118a9939ec32edb5a534d48adbf16889 (diff)
downloadanaconda-90b3dd722756333adf5a3f934bc3ffe26272ba41.tar.gz
anaconda-90b3dd722756333adf5a3f934bc3ffe26272ba41.tar.xz
anaconda-90b3dd722756333adf5a3f934bc3ffe26272ba41.zip
Remove cio_ignore functionality for s390x
We've backed this out on RHEL 5.3 for now because it was far more complex than IBM had told us, so it's back to the drawing board for this one. Keeping rawhide in sync with what's happening on the RHEL side with this feature.
Diffstat (limited to 'loader')
-rw-r--r--loader/linuxrc.s39024
1 files changed, 0 insertions, 24 deletions
diff --git a/loader/linuxrc.s390 b/loader/linuxrc.s390
index 90c739f5a..08d575512 100644
--- a/loader/linuxrc.s390
+++ b/loader/linuxrc.s390
@@ -157,15 +157,6 @@ setupdevice()
echo $"SUBCHANNELS or NETTYPE empty, cannot continue."
exit 1
fi
-
- if [ -r /proc/cio_ignore ]; then
- # enable subchannels
- for subchannel in ${SUBCHANNELS//,/ } ; do
- echo free $subchannel > /proc/cio_ignore
- /sbin/chccwdev -e $subchannel
- done
- fi
-
SYSDIR=${SUBCHANNELS//,*/} # get first subchannel. This is where the device can be brought online
sysecho /sys/bus/ccwgroup/drivers/${NETTYPE}/group "$SUBCHANNELS"
if [ -n "$PORTNAME" ]; then
@@ -575,25 +566,10 @@ if [ -z "$DASD" ]; then
read DASD
fi
if [ -n "$DASD" ]; then
- # enable DASD devices
- if [ -r /proc/cio_ignore ]; then
- for dev in ${DASD//,/ } ; do
- echo free $dev > /proc/cio_ignore
- /sbin/chccwdev -e $dev
- done
- fi
-
echo "DASD=$DASD" > /tmp/dasd_ports
fi
for i in ${!FCP_*}; do
- # enable FCP devices
- if [ -r /proc/cio_ignore ]; then
- dev="$(echo ${!i} | cut -d ' ' -f 1)"
- echo free $dev > /proc/cio_ignore
- /sbin/chccwdev -e $dev
- fi
-
echo "${!i}" >> /tmp/fcpconfig
done