├── .github ├── CODEOWNERS └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── .gitmodules ├── CHANGELOG.md ├── FAQ.md ├── LICENSE ├── README.md ├── doc └── hero_sw_overview.png ├── hero-z-7045-builder └── scripts └── hero-z-7045-env.sh /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/hero-sdk/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/hero-sdk/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/hero-sdk/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /linux-workspace/ 2 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/hero-sdk/HEAD/.gitmodules -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/hero-sdk/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/hero-sdk/HEAD/FAQ.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/hero-sdk/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/hero-sdk/HEAD/README.md -------------------------------------------------------------------------------- /doc/hero_sw_overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/hero-sdk/HEAD/doc/hero_sw_overview.png -------------------------------------------------------------------------------- /hero-z-7045-builder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/hero-sdk/HEAD/hero-z-7045-builder -------------------------------------------------------------------------------- /scripts/hero-z-7045-env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/hero-sdk/HEAD/scripts/hero-z-7045-env.sh --------------------------------------------------------------------------------