diff options
author | Jeremy Katz <katzj@redhat.com> | 2003-09-20 03:31:26 +0000 |
---|---|---|
committer | Jeremy Katz <katzj@redhat.com> | 2003-09-20 03:31:26 +0000 |
commit | 31f1add4879da48efb7af21fc5c575692cc3709d (patch) | |
tree | 7a541b8f54f91ed8309da17752e205b40db2cf30 /loader2/linuxrc.s390 | |
parent | 8307d33391423f13c1deed409b80d8e381582a93 (diff) | |
download | anaconda-31f1add4879da48efb7af21fc5c575692cc3709d.tar.gz anaconda-31f1add4879da48efb7af21fc5c575692cc3709d.tar.xz anaconda-31f1add4879da48efb7af21fc5c575692cc3709d.zip |
merge from taroon
fairly large merge, but all fairly obvious stuff. will test in a tree tomorrow
Diffstat (limited to 'loader2/linuxrc.s390')
-rw-r--r-- | loader2/linuxrc.s390 | 18 |
1 files changed, 13 insertions, 5 deletions
diff --git a/loader2/linuxrc.s390 b/loader2/linuxrc.s390 index 65f0d38e7..413f87c87 100644 --- a/loader2/linuxrc.s390 +++ b/loader2/linuxrc.s390 @@ -201,11 +201,8 @@ else # ctc0, escon0, iucv0 read GATEWAY done - if [ "$NETTYPE" = "ctc" ]; then - if [ -z "$MTU" ]; then - MTU="1500" - fi - MMTU="mtu 1500" # always use mtu 1500 for the installer + if [ "$NETTYPE" = "ctc" -a -z "$MTU" ]; then + MTU="1500" fi if [ ":$NETTYPE" = ":iucv" ]; then while [ -z "$IUCV" ]; do @@ -291,6 +288,17 @@ if [ -n "$DNS" ]; then for i in "$DNS"; do echo "nameserver $i"; done >> /etc/resolv.conf fi +if [ -z "$DASD" ]; then + echo + echo $"Enter DASD range (e.g. 200-203 or 200,201,202,203)" + echo $"Press <Enter> for autoprobing (not recommended):" + echo + read DASD +fi +if [ -n "$DASD" ]; then + echo "DASD=$DASD" > /tmp/dasd_ports +fi + grep -q ext3 /proc/filesystems if [ "$?" != "0" ]; then insmod jbd$LO |