provide armhf deb packages (#301)

* Enabled deb packaging for armhf architecture

closes #280.
This commit is contained in:
rachitchokshi 2018-09-11 12:03:53 -07:00 committed by David Peter
parent e1ecc17f69
commit f0d936763c
1 changed files with 4 additions and 0 deletions

View File

@ -66,6 +66,10 @@ make_deb() {
architecture=arm64
gcc_prefix="aarch64-linux-gnu-"
;;
arm*hf)
architecture=armhf
gcc_prefix="arm-linux-gnueabihf-"
;;
*)
echo "make_deb: skipping target '${TARGET}'" >&2
return 0