Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master'
Browse files Browse the repository at this point in the history
  • Loading branch information
mithro committed Jan 20, 2018
2 parents 03ffade + 2000531 commit 96d8586
Show file tree
Hide file tree
Showing 4 changed files with 1 addition and 4 deletions.
2 changes: 1 addition & 1 deletion make.py
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ def main():
platform = get_platform(args)

exec("from targets.{}.{} import SoC".format(args.platform, args.target.lower(), args.target), globals())
soc = SoC(platform, **soc_sdram_argdict(args), **dict(args.target_option))
soc = SoC(platform, ident=SoC.__name__, **soc_sdram_argdict(args), **dict(args.target_option))
if hasattr(soc, 'configure_iprange'):
soc.configure_iprange(args.iprange)

Expand Down
1 change: 0 additions & 1 deletion targets/netv2/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,6 @@ def __init__(self, platform, **kwargs):
SoCSDRAM.__init__(self, platform, clk_freq,
integrated_rom_size=0x8000,
integrated_sram_size=0x8000,
ident="NeTV2 LiteX Base SoC",
**kwargs)

self.submodules.crg = _CRG(platform)
Expand Down
1 change: 0 additions & 1 deletion targets/netv2/bridge_pcie.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,6 @@ def __init__(self, platform, with_uart_bridge=True, **kwargs):
shadow_base=0x00000000,
csr_data_width=32,
with_uart=False,
ident="NeTV2 LiteX PCIe SoC",
with_timer=False,
**kwargs)
self.submodules.crg = _CRG(platform)
Expand Down
1 change: 0 additions & 1 deletion targets/netv2/bridge_uart.py
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,6 @@ def __init__(self, platform, **kwargs):
SoCSDRAM.__init__(self, platform, clk_freq,
integrated_rom_size=0x8000,
integrated_sram_size=0x8000,
ident="NeTV2 LiteX Base SoC",
with_uart=False,
**kwargs)

Expand Down

0 comments on commit 96d8586

Please sign in to comment.