├── .travis.yml ├── Dockerfile ├── Makefile ├── README.md ├── debianize.sh └── root └── opt ├── apk └── libgnat-8.3.0-r0.apk └── patches ├── Makefile.conf ├── ghdl.patch ├── nextpnr-CMakeLists.txt.patch └── yosys.diff /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpin3/ulx3s/HEAD/.travis.yml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpin3/ulx3s/HEAD/Dockerfile -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpin3/ulx3s/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpin3/ulx3s/HEAD/README.md -------------------------------------------------------------------------------- /debianize.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpin3/ulx3s/HEAD/debianize.sh -------------------------------------------------------------------------------- /root/opt/apk/libgnat-8.3.0-r0.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpin3/ulx3s/HEAD/root/opt/apk/libgnat-8.3.0-r0.apk -------------------------------------------------------------------------------- /root/opt/patches/Makefile.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpin3/ulx3s/HEAD/root/opt/patches/Makefile.conf -------------------------------------------------------------------------------- /root/opt/patches/ghdl.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpin3/ulx3s/HEAD/root/opt/patches/ghdl.patch -------------------------------------------------------------------------------- /root/opt/patches/nextpnr-CMakeLists.txt.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpin3/ulx3s/HEAD/root/opt/patches/nextpnr-CMakeLists.txt.patch -------------------------------------------------------------------------------- /root/opt/patches/yosys.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpin3/ulx3s/HEAD/root/opt/patches/yosys.diff --------------------------------------------------------------------------------