mac: Disable sys_data_path by default since seems to introduce a regression.

netboot no longer works on Arty with sys_data_path set to True:
python3 -m litex_boards.targets.digilent_arty --with-ethernet --build
This commit is contained in:
Florent Kermarrec 2021-10-01 16:22:33 +02:00
parent f50f6d242c
commit aafb7081ff
1 changed files with 1 additions and 1 deletions

View File

@ -21,7 +21,7 @@ class LiteEthMAC(Module, AutoCSR):
hw_mac = None,
timestamp = None,
full_memory_we = False,
sys_data_path = True):
sys_data_path = False):
assert interface in ["crossbar", "wishbone", "hybrid"]
self.submodules.core = LiteEthMACCore(phy, dw, with_preamble_crc, sys_data_path)
self.csrs = []