diff options
author | Tom Gundersen <teg@jklm.no> | 2013-10-26 18:54:16 +0200 |
---|---|---|
committer | Tom Gundersen <teg@jklm.no> | 2013-10-26 22:09:20 +0200 |
commit | a501033335ed402c8f7e86fe41a15531ba69abd7 (patch) | |
tree | b5e8a1a12adaaa3168a4c0cedc40c0f584190d69 /src/udev/net/link-config-gperf.gperf | |
parent | af6f0d422c521374ee6a2dd92df5935a5a476ae5 (diff) |
udev: link-config: add ethtool support
This adds support for setting the link speed, duplex and WakeOnLan
settings.
Example:
[Link]
SpeedMBytes=100
Duplex=half
WakeOnLan=magic
Diffstat (limited to 'src/udev/net/link-config-gperf.gperf')
-rw-r--r-- | src/udev/net/link-config-gperf.gperf | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/udev/net/link-config-gperf.gperf b/src/udev/net/link-config-gperf.gperf index c567e6dfaa..9e2f4d4f52 100644 --- a/src/udev/net/link-config-gperf.gperf +++ b/src/udev/net/link-config-gperf.gperf @@ -19,3 +19,6 @@ Match.Path, config_parse_string, 0, offsetof(link Match.Driver, config_parse_string, 0, offsetof(link_config, match_driver) Match.Type, config_parse_string, 0, offsetof(link_config, match_type) Link.Description, config_parse_string, 0, offsetof(link_config, description) +Link.SpeedMBytes, config_parse_unsigned, 0, offsetof(link_config, speed) +Link.Duplex, config_parse_string, 0, offsetof(link_config, duplex) +Link.WakeOnLan, config_parse_string, 0, offsetof(link_config, wol) |