mirror of
https://github.com/openwrt/luci.git
synced 2025-12-27 06:44:59 +04:00
luci-mod-interfaces: simplify configuring MAC address of 802.1q devices
Treat not explicitly configured, preexisting VLAN interfaces as simple network devices when adding configuration for them, since it is more likely that people want to set general device properties such as MAC address instead of reconfiguring ingress/egress QoS mapping, which is the only editable property of preexisting VLAN device config dialogs. Ref: https://github.com/openwrt/luci/issues/5102 Signed-off-by: Jo-Philipp Wich <jo@mein.io>
This commit is contained in:
@@ -1124,6 +1124,18 @@ return view.extend({
|
||||
if (m) {
|
||||
var devtype = getDevType(section_id);
|
||||
|
||||
/* Treat not explicitly configured, preexisting VLAN interfaces
|
||||
as simple network devices when adding configuration for them,
|
||||
since it is more likely that people want to set general device
|
||||
properties such as MAC address instead of reconfiguring ingress/
|
||||
egress QoS mapping, which is the only editable property of
|
||||
preexisting VLAN device config dialogs.
|
||||
|
||||
Ref: https://github.com/openwrt/luci/issues/5102
|
||||
*/
|
||||
if (devtype == '8021q')
|
||||
devtype = 'ethernet';
|
||||
|
||||
section_id = uci.add('network', 'device');
|
||||
|
||||
uci.set('network', section_id, 'name', m[1]);
|
||||
|
||||
Reference in New Issue
Block a user