You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
398 B
Python
16 lines
398 B
Python
4 years ago
|
#!/usr/bin/env python
|
||
|
#
|
||
|
# Simple wrapper around make_version.sh that fusesoc needs
|
||
|
# Just pulls out the files_root from yaml so we know where to run.
|
||
|
#
|
||
|
|
||
|
import yaml
|
||
|
import sys
|
||
|
import os
|
||
|
|
||
|
with open(sys.argv[1], 'r') as stream:
|
||
|
data = yaml.safe_load(stream)
|
||
|
|
||
|
# Run make version in source dir so we can get the git version
|
||
|
os.system("cd %s; scripts/make_version.sh git.vhdl" % data["files_root"])
|