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:
parent
f50f6d242c
commit
aafb7081ff
|
@ -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 = []
|
||||
|
|
Loading…
Reference in New Issue