├── .github ├── dependabot.yml └── workflows │ ├── push_pr_release.yml │ └── template.md ├── LICENSE ├── README.md ├── config ├── hyperbian.gif └── stage-hyperbian ├── 00-install-hyperion ├── 00-run.sh ├── 01-packages └── files │ ├── hyperion.sources │ └── motd-hyperbian └── prerun.sh /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/HyperBian/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/push_pr_release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/HyperBian/HEAD/.github/workflows/push_pr_release.yml -------------------------------------------------------------------------------- /.github/workflows/template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/HyperBian/HEAD/.github/workflows/template.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/HyperBian/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/HyperBian/HEAD/README.md -------------------------------------------------------------------------------- /config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/HyperBian/HEAD/config -------------------------------------------------------------------------------- /hyperbian.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/HyperBian/HEAD/hyperbian.gif -------------------------------------------------------------------------------- /stage-hyperbian/00-install-hyperion/00-run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/HyperBian/HEAD/stage-hyperbian/00-install-hyperion/00-run.sh -------------------------------------------------------------------------------- /stage-hyperbian/00-install-hyperion/01-packages: -------------------------------------------------------------------------------- 1 | hyperion -------------------------------------------------------------------------------- /stage-hyperbian/00-install-hyperion/files/hyperion.sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/HyperBian/HEAD/stage-hyperbian/00-install-hyperion/files/hyperion.sources -------------------------------------------------------------------------------- /stage-hyperbian/00-install-hyperion/files/motd-hyperbian: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperion-project/HyperBian/HEAD/stage-hyperbian/00-install-hyperion/files/motd-hyperbian -------------------------------------------------------------------------------- /stage-hyperbian/prerun.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash -e 2 | 3 | if [ ! -d "${ROOTFS_DIR}" ]; then 4 | copy_previous 5 | fi 6 | 7 | sleep 20 --------------------------------------------------------------------------------