mirror of
https://github.com/Ysurac/openmptcprouter.git
synced 2025-02-12 11:21:55 +00:00
Added support for ip-bridge in DSA mode
This commit is contained in:
parent
792286e405
commit
6a6941c379
2 changed files with 8 additions and 0 deletions
7
build.sh
7
build.sh
|
@ -248,6 +248,13 @@ if [ "$OMR_TARGET" = "bpi-r1" ]; then
|
|||
done
|
||||
echo "done"
|
||||
else
|
||||
# Remove ip-bridge
|
||||
echo -n "Removing ip-bridge support from openwrt config..."
|
||||
for i in PACKAGE_ip-bridge; do
|
||||
sed -i "s/CONFIG_${i}/# CONFIG_${i} is not set/" "$OMR_TARGET/source/.config"
|
||||
done
|
||||
echo "done"
|
||||
|
||||
# Remove swconfig parts
|
||||
echo -n "Removing unneeded B53 swconfig parts from kernel 5.4..."
|
||||
for i in SWCONFIG_B53_PHY_FIXUP SWCONFIG_B53_SPI_DRIVER SWCONFIG_B53_MMAP_DRIVER SWCONFIG_B53_SRAB_DRIVER; do
|
||||
|
|
|
@ -20,6 +20,7 @@ CONFIG_PACKAGE_rtl8192cu-firmware=y
|
|||
CONFIG_PACKAGE_rtl8192su-firmware=y
|
||||
CONFIG_PACKAGE_kmod-switch-bcm53xx=y
|
||||
CONFIG_PACKAGE_kmod-switch-bcm53xx-mdio=y
|
||||
CONFIG_PACKAGE_ip-bridge=y
|
||||
CONFIG_PACKAGE_swconfig=y
|
||||
CONFIG_PACKAGE_kmod-swconfig=y
|
||||
CONFIG_PACKAGE_kmod-ste10xp=y
|
||||
|
|
Loading…
Reference in a new issue