forked from YosysHQ/prjtrellis
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
infra: Adding 'Getting Started' scripts and updating README
Signed-off-by: David Shah <[email protected]>
- Loading branch information
Showing
4 changed files
with
28 additions
and
6 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,3 +6,4 @@ ispTcl.log.* | |
ispTcl.tcl | ||
ispTcl.tcl.* | ||
.ispTcl.lock | ||
work_*/ |
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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
#!/bin/bash | ||
rm -rf database | ||
mkdir -p database | ||
echo '*' > database/.gitignore | ||
cp devices.json database/ | ||
python3 tools/get_tilegrid_all.py | ||
python3 tools/create_empty_bitdbs.py |
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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
#!/bin/bash | ||
|
||
GITHUB_PROTO=${1:-https} | ||
GITHUB_URL=$GITHUB_PROTO://github.com/SymbiFlow/prjtrellis-db.git | ||
rm -rf database | ||
git clone $GITHUB_URL database | ||
echo '*' > database/.gitignore |