diff --git a/CompileHowto.md b/CompileHowto.md index 9aadfcec..9133e3e8 100644 --- a/CompileHowto.md +++ b/CompileHowto.md @@ -6,8 +6,13 @@ Note: call the script with `./docker-compile.sh -h` for more options ## Native compiling on Raspberry Pi +**Raspbian Stretch** ``` -wget -qN https://raw.github.com/hyperion-project/hyperion.ng/master/bin/scripts/docker-compile.sh && chmod +x *.sh && ./docker-compile.sh -t rpi-raspbian +wget -qN https://raw.github.com/hyperion-project/hyperion.ng/master/bin/scripts/docker-compile.sh && chmod +x *.sh && ./docker-compile.sh -t rpi-raspbian-stretch +``` +**Raspbian Buster** +``` +wget -qN https://raw.github.com/hyperion-project/hyperion.ng/master/bin/scripts/docker-compile.sh && chmod +x *.sh && ./docker-compile.sh -t rpi-raspbian-buster ``` ## Cross compiling on X64_86 for: diff --git a/bin/scripts/docker-compile.sh b/bin/scripts/docker-compile.sh index a804d6ad..96211580 100644 --- a/bin/scripts/docker-compile.sh +++ b/bin/scripts/docker-compile.sh @@ -43,7 +43,7 @@ echo "######################################################## ## A script to compile Hyperion inside a docker container ## Requires installed Docker: https://www.docker.com/ ## Without arguments it will compile Hyperion for Debain Stretch (x64) or higher. -## Supports Raspberry Pi (armv6hf, armv7hf) cross compilation (Debian Stretch) +## Supports Raspberry Pi (armv6hf, armv7hf) cross compilation (Debian Stretch) and native compilation (Raspbian Stretch/Buster) ## ## Homepage: https://www.hyperion-project.org ## Forum: https://forum.hyperion-project.org @@ -51,7 +51,7 @@ echo "######################################################## # These are possible arguments to modify the script behaviour with their default values # # docker-compile.sh -h # Show this help message -# docker-compile.sh -t amd64 # The docker tag, one of amd64 | i386 | armv6hf | armv7hf +# docker-compile.sh -t amd64 # The docker tag, one of amd64 | i386 | armv6hf | armv7hf | rpi-raspbian-stretch | rpi-raspbian-buster # docker-compile.sh -b Release # cmake Release or Debug build # docker-compile.sh -p true # If true build packages with CPack # More informations to docker tags at: https://hub.docker.com/r/hyperionproject/hyperion-ci/"