diff options
author | Karsten Hopp <karsten@redhat.de> | 2004-09-01 14:02:17 +0000 |
---|---|---|
committer | Karsten Hopp <karsten@redhat.de> | 2004-09-01 14:02:17 +0000 |
commit | c17faeb0d622047ea6265abfa448428b6455d3af (patch) | |
tree | ea41d9d74c3fcf94fa6dbac75b1229feaec23a9f /loader2/net.h | |
parent | f2bffa25e02bbd0ed2262c12ed47a050fbeabec0 (diff) | |
download | anaconda-c17faeb0d622047ea6265abfa448428b6455d3af.tar.gz anaconda-c17faeb0d622047ea6265abfa448428b6455d3af.tar.xz anaconda-c17faeb0d622047ea6265abfa448428b6455d3af.zip |
- Things are getting complicated.
qeth can hav eth, hsi and tr interfaces, lcs can have eth and tr interfaces,
too. We can't tell apart if p.e. eth0 is qeth or lcs, but need to know it for
sysfs configuration. Remove TYPE=QETH hack and use a more generic NETTYPE
instead
Diffstat (limited to 'loader2/net.h')
-rw-r--r-- | loader2/net.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/loader2/net.h b/loader2/net.h index d1b0098e6..f0c1f877a 100644 --- a/loader2/net.h +++ b/loader2/net.h @@ -19,8 +19,7 @@ struct networkDeviceConfig { /* s390 settings */ int mtu; - int is_qeth; - char *subchannels, *portname, *peerid; + char *subchannels, *portname, *peerid, *nettype; }; int readNetConfig(char * device, struct networkDeviceConfig * dev, |