├── .gitignore ├── .gitmodules ├── README.md ├── configs ├── board.sh ├── common.sh ├── fpgas │ └── pulpissimo │ │ └── genesys2.sh ├── pulp.sh ├── pulpissimo.sh ├── pulpissimo_ibex.sh └── rtl.sh ├── install └── rules │ └── pulp.mk └── scripts ├── build-runtime ├── clean └── deprecated ├── build-gvsoc └── update-gvsoc /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-builder/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-builder/HEAD/.gitmodules -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-builder/HEAD/README.md -------------------------------------------------------------------------------- /configs/board.sh: -------------------------------------------------------------------------------- 1 | export PULPRUN_PLATFORM=board 2 | -------------------------------------------------------------------------------- /configs/common.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-builder/HEAD/configs/common.sh -------------------------------------------------------------------------------- /configs/fpgas/pulpissimo/genesys2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-builder/HEAD/configs/fpgas/pulpissimo/genesys2.sh -------------------------------------------------------------------------------- /configs/pulp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-builder/HEAD/configs/pulp.sh -------------------------------------------------------------------------------- /configs/pulpissimo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-builder/HEAD/configs/pulpissimo.sh -------------------------------------------------------------------------------- /configs/pulpissimo_ibex.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-builder/HEAD/configs/pulpissimo_ibex.sh -------------------------------------------------------------------------------- /configs/rtl.sh: -------------------------------------------------------------------------------- 1 | export PULPRUN_PLATFORM=rtl 2 | -------------------------------------------------------------------------------- /install/rules/pulp.mk: -------------------------------------------------------------------------------- 1 | ../../pulp-runtime/rules/pulp.mk -------------------------------------------------------------------------------- /scripts/build-runtime: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-builder/HEAD/scripts/build-runtime -------------------------------------------------------------------------------- /scripts/clean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-builder/HEAD/scripts/clean -------------------------------------------------------------------------------- /scripts/deprecated/build-gvsoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-builder/HEAD/scripts/deprecated/build-gvsoc -------------------------------------------------------------------------------- /scripts/deprecated/update-gvsoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/pulp-builder/HEAD/scripts/deprecated/update-gvsoc --------------------------------------------------------------------------------