openwrt/package
Rafał Miłecki 43fc720657 base-files: generate "device" UCI type section for bridge
This switches from the old way of defining bridges in an "interface" UCI
section type (that should be used for layer 3 only). From now a defualt
board switch will have its own "device" UCI section type. It's a new &
preferred way of defining L2 devices.

Before:

config interface 'lan'
        option type 'bridge'
        option ifname 'lan1 lan2 lan3 lan4'
        option proto 'static'
        option ipaddr '192.168.1.1'
        option netmask '255.255.255.0'

After:

config device
        option name 'lan'
        option type 'bridge'
        list ports 'lan1'
        list ports 'lan2'
        list ports 'lan3'
        list ports 'lan4'

config interface 'lan'
        option ifname 'lan'
        option proto 'static'
        option ipaddr '192.168.1.1'
        option netmask '255.255.255.0'

Signed-off-by: Rafał Miłecki <rafal@milecki.pl>
2021-05-18 20:07:51 +02:00
..
base-files base-files: generate "device" UCI type section for bridge 2021-05-18 20:07:51 +02:00
boot ath79: add support for ZiKing CPE46B 2021-05-17 01:01:32 +02:00
devel valgrind: Fix compile problem with MIPS soft float 2021-04-11 23:01:28 +02:00
firmware ipq40xx: add support for MikroTik SXTsq 5 ac 2021-04-29 10:55:07 +02:00
kernel mt76: update to the latest version 2021-05-15 09:18:28 +02:00
libs libubox: update to the latest version 2021-05-18 12:52:52 +02:00
network netifd: update to the latest version 2021-05-18 12:56:32 +02:00
system rpcd: fix PKG_MIRROR_HASH 2021-05-18 19:31:44 +02:00
utils busybox: use $(AUTORELEASE) and SPDX 2021-05-18 19:20:23 +02:00
Makefile build: fix opkg install step for large package selection 2021-05-12 11:13:53 +02:00