mirror of
https://github.com/litex-hub/litex-boards.git
synced 2025-01-03 03:43:36 -05:00
Merge pull request #41 from lromor/fix-wrong-import
Changed wrong imports for fomu board.
This commit is contained in:
commit
f72e7bd314
1 changed files with 3 additions and 3 deletions
|
@ -177,11 +177,11 @@ class BaseSoC(SoCCore):
|
||||||
Newly-constructed SoC
|
Newly-constructed SoC
|
||||||
"""
|
"""
|
||||||
if board == "pvt":
|
if board == "pvt":
|
||||||
from litex_boards.partner.platforms.fomu_pvt import Platform
|
from litex_boards.platforms.fomu_pvt import Platform
|
||||||
elif board == "hacker":
|
elif board == "hacker":
|
||||||
from litex_boards.partner.platforms.fomu_hacker import Platform
|
from litex_boards.platforms.fomu_hacker import Platform
|
||||||
elif board == "evt":
|
elif board == "evt":
|
||||||
from litex_boards.partner.platforms.fomu_evt import Platform
|
from litex_boards.platforms.fomu_evt import Platform
|
||||||
else:
|
else:
|
||||||
raise ValueError("unrecognized fomu board: {}".format(board))
|
raise ValueError("unrecognized fomu board: {}".format(board))
|
||||||
platform = Platform()
|
platform = Platform()
|
||||||
|
|
Loading…
Reference in a new issue