├── .github └── workflows │ ├── Build-arm64.yml │ └── Build-armhf.yml ├── .gitignore ├── LICENSE ├── README.md ├── auto-script.sh ├── compile-etcher-on-arm.sh ├── compile-etcher_v1.7.9.sh ├── old-experiments └── compile-etcher.sh ├── screenshots ├── balena-etcher.png └── etcher.png ├── update-etcher-repo.sh └── version.txt /.github/workflows/Build-arm64.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Itai-Nelken/BalenaEtcher-arm/HEAD/.github/workflows/Build-arm64.yml -------------------------------------------------------------------------------- /.github/workflows/Build-armhf.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Itai-Nelken/BalenaEtcher-arm/HEAD/.github/workflows/Build-armhf.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Itai-Nelken/BalenaEtcher-arm/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Itai-Nelken/BalenaEtcher-arm/HEAD/README.md -------------------------------------------------------------------------------- /auto-script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Itai-Nelken/BalenaEtcher-arm/HEAD/auto-script.sh -------------------------------------------------------------------------------- /compile-etcher-on-arm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Itai-Nelken/BalenaEtcher-arm/HEAD/compile-etcher-on-arm.sh -------------------------------------------------------------------------------- /compile-etcher_v1.7.9.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Itai-Nelken/BalenaEtcher-arm/HEAD/compile-etcher_v1.7.9.sh -------------------------------------------------------------------------------- /old-experiments/compile-etcher.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Itai-Nelken/BalenaEtcher-arm/HEAD/old-experiments/compile-etcher.sh -------------------------------------------------------------------------------- /screenshots/balena-etcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Itai-Nelken/BalenaEtcher-arm/HEAD/screenshots/balena-etcher.png -------------------------------------------------------------------------------- /screenshots/etcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Itai-Nelken/BalenaEtcher-arm/HEAD/screenshots/etcher.png -------------------------------------------------------------------------------- /update-etcher-repo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Itai-Nelken/BalenaEtcher-arm/HEAD/update-etcher-repo.sh -------------------------------------------------------------------------------- /version.txt: -------------------------------------------------------------------------------- 1 | v1.5.120 2 | --------------------------------------------------------------------------------