forked from dan/liminix
1
0
Fork 0

move bridge-related kernel config to the module

This commit is contained in:
Daniel Barlow 2023-08-30 17:29:42 +01:00
parent aecbe08f08
commit de77635490
3 changed files with 5 additions and 9 deletions

View File

@ -131,10 +131,6 @@
SWCONFIG = "y"; SWCONFIG = "y";
SWPHY = "y"; SWPHY = "y";
BRIDGE = "y";
BRIDGE_VLAN_FILTERING = "y";
BRIDGE_IGMP_SNOOPING = "y";
MTD = "y"; MTD = "y";
MTD_CMDLINE_PARTS = "y"; MTD_CMDLINE_PARTS = "y";
MTD_BLOCK = "y"; # fix undefined ref to register_mtd_blktrans_devs MTD_BLOCK = "y"; # fix undefined ref to register_mtd_blktrans_devs

View File

@ -157,10 +157,6 @@
SWCONFIG = "y"; SWCONFIG = "y";
SWPHY = "y"; SWPHY = "y";
BRIDGE = "y";
BRIDGE_VLAN_FILTERING = "y";
BRIDGE_IGMP_SNOOPING = "y";
WATCHDOG = "y"; WATCHDOG = "y";
RALINK_WDT = "y"; # watchdog RALINK_WDT = "y"; # watchdog
MT7621_WDT = "y"; # or it might be this one MT7621_WDT = "y"; # or it might be this one

View File

@ -39,5 +39,9 @@ in
}; };
}; };
}; };
config.kernel.config.BRIDGE = "y"; config.kernel.config = {
BRIDGE = "y";
BRIDGE_VLAN_FILTERING = "y";
BRIDGE_IGMP_SNOOPING = "y";
};
} }