diff options
author | Jeremy Katz <katzj@redhat.com> | 2004-05-25 20:13:10 +0000 |
---|---|---|
committer | Jeremy Katz <katzj@redhat.com> | 2004-05-25 20:13:10 +0000 |
commit | a28ec999463b21d7c99baa988158b31256670a39 (patch) | |
tree | 7638216c193b5b6ae3cd81a77993ee2d0c72b43d /loader2/net.h | |
parent | 3b7cbcd63a23a6c35ece5987766ed73192fea7a2 (diff) | |
download | anaconda-a28ec999463b21d7c99baa988158b31256670a39.tar.gz anaconda-a28ec999463b21d7c99baa988158b31256670a39.tar.xz anaconda-a28ec999463b21d7c99baa988158b31256670a39.zip |
this might get to where I can install over wireless (untested). still needs
a little bit of work so that back/next will work properly through the wireless
config. also things don't get preserved for the actual boot
Diffstat (limited to 'loader2/net.h')
-rw-r--r-- | loader2/net.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/loader2/net.h b/loader2/net.h index f79fec223..4baf2e258 100644 --- a/loader2/net.h +++ b/loader2/net.h @@ -6,6 +6,12 @@ struct networkDeviceConfig { struct pumpNetIntf dev; + + /* wireless settings */ + char * essid; /* side effect: if this is non-NULL, then assume wireless */ + char * wepkey; + + /* misc settings */ int isDynamic; int noDns; int preset; @@ -33,4 +39,7 @@ int kickstartNetworkUp(struct loaderData_s * loaderData, struct networkDeviceConfig *netCfgPtr, int flags); +char * setupInterface(struct networkDeviceConfig *dev); +char * doDhcp(struct networkDeviceConfig *dev, char * dhcpclass); + #endif |