-
Notifications
You must be signed in to change notification settings - Fork 79
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #509 from antmicro/dt_generation
Add dynamic DT generation for Linux
- Loading branch information
Showing
15 changed files
with
25 additions
and
53 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,6 +13,7 @@ addons: | |
- gnupg | ||
- realpath | ||
- util-linux | ||
- device-tree-compiler | ||
|
||
git: | ||
submodules: false | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule litedram
updated
63 files
Submodule liteeth
updated
68 files
Submodule liteiclink
updated
26 files
Submodule litepcie
updated
34 files
Submodule litesata
updated
40 files
Submodule litescope
updated
26 files
+6 −0 | .travis.yml | |
+2 −13 | README.md | |
+71 −0 | examples/arty.py | |
+0 −155 | examples/fast_scope_arty.py | |
+0 −178 | examples/make.py | |
+0 −0 | examples/targets/__init__.py | |
+0 −49 | examples/targets/core.py | |
+0 −76 | examples/targets/simple.py | |
+0 −26 | examples/test/test_analyzer_counter.py | |
+0 −27 | examples/test/test_analyzer_wishbone.py | |
+0 −30 | examples/test/test_fast_scope_arty.py | |
+0 −23 | examples/test/test_identifier.py | |
+0 −47 | examples/test/test_io.py | |
+10 −6 | litescope/core.py | |
+7 −4 | litescope/software/driver/analyzer.py | |
+5 −2 | litescope/software/driver/io.py | |
+6 −3 | litescope/software/dump/common.py | |
+5 −2 | litescope/software/dump/csv.py | |
+5 −2 | litescope/software/dump/python.py | |
+5 −2 | litescope/software/dump/sigrok.py | |
+5 −2 | litescope/software/dump/vcd.py | |
+124 −0 | litescope/software/litescope_cli.py | |
+5 −0 | setup.py | |
+5 −2 | test/test_analyzer.py | |
+5 −2 | test/test_dump.py | |
+9 −22 | test/test_examples.py |
Submodule litex-boards
updated
104 files
Submodule litex-renode
updated
2 files
+4 −0 | generate-renode-scripts.py | |
+21 −1 | generate-zephyr-dts.py |