├── .gitattributes ├── .github ├── dependabot.yml └── workflows │ ├── release.yml │ └── update_urls.yml ├── .gitignore ├── README.md ├── porteus ├── boot │ └── syslinux │ │ └── porteus.cfg └── porteus │ └── rootcopy │ ├── etc │ ├── issue │ ├── profile │ └── rc.d │ │ └── rc.local │ └── usr │ └── local │ └── tools │ └── linpack │ └── linpack.sh ├── requirements.txt ├── updateURLs ├── .eslintrc.json ├── package-lock.json ├── package.json └── updateURLs.js └── urls.json /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valleyofdoom/StresKit/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valleyofdoom/StresKit/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valleyofdoom/StresKit/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/update_urls.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valleyofdoom/StresKit/HEAD/.github/workflows/update_urls.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valleyofdoom/StresKit/HEAD/README.md -------------------------------------------------------------------------------- /porteus/boot/syslinux/porteus.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valleyofdoom/StresKit/HEAD/porteus/boot/syslinux/porteus.cfg -------------------------------------------------------------------------------- /porteus/porteus/rootcopy/etc/issue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valleyofdoom/StresKit/HEAD/porteus/porteus/rootcopy/etc/issue -------------------------------------------------------------------------------- /porteus/porteus/rootcopy/etc/profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valleyofdoom/StresKit/HEAD/porteus/porteus/rootcopy/etc/profile -------------------------------------------------------------------------------- /porteus/porteus/rootcopy/etc/rc.d/rc.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valleyofdoom/StresKit/HEAD/porteus/porteus/rootcopy/etc/rc.d/rc.local -------------------------------------------------------------------------------- /porteus/porteus/rootcopy/usr/local/tools/linpack/linpack.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valleyofdoom/StresKit/HEAD/porteus/porteus/rootcopy/usr/local/tools/linpack/linpack.sh -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | requests==2.32.4 2 | pyinstaller==6.6.0 -------------------------------------------------------------------------------- /updateURLs/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valleyofdoom/StresKit/HEAD/updateURLs/.eslintrc.json -------------------------------------------------------------------------------- /updateURLs/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valleyofdoom/StresKit/HEAD/updateURLs/package-lock.json -------------------------------------------------------------------------------- /updateURLs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valleyofdoom/StresKit/HEAD/updateURLs/package.json -------------------------------------------------------------------------------- /updateURLs/updateURLs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valleyofdoom/StresKit/HEAD/updateURLs/updateURLs.js -------------------------------------------------------------------------------- /urls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valleyofdoom/StresKit/HEAD/urls.json --------------------------------------------------------------------------------