From 6bf5b4b67266c77f3c7cae0124a7b79ad3f8a0e2 Mon Sep 17 00:00:00 2001 From: wisc Date: Wed, 10 Feb 2016 16:25:08 +0100 Subject: [PATCH 1/3] corrected rpi binary filename Former-commit-id: 6e476fa8252dde2495f2808f7c76f22f09ed1e4e --- bin/install_hyperion.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/install_hyperion.sh b/bin/install_hyperion.sh index 4d3e9a2c..4c06e696 100755 --- a/bin/install_hyperion.sh +++ b/bin/install_hyperion.sh @@ -40,7 +40,7 @@ if [ $IS_OPENELEC -eq 1 ]; then if [ $IS_IMX6 -eq 1 ]; then curl -L --get https://raw.githubusercontent.com/tvdzwan/hyperion/master/deploy/hyperion_imx6.tar.gz | tar -C /storage -xz else - curl -L --get https://raw.githubusercontent.com/tvdzwan/hyperion/master/deploy/hyperion.tar.gz | tar -C /storage -xz + curl -L --get https://raw.githubusercontent.com/tvdzwan/hyperion/master/deploy/hyperion_rpi.tar.gz | tar -C /storage -xz fi curl -L --get https://raw.githubusercontent.com/tvdzwan/hyperion/master/deploy/hyperion.deps.openelec-rpi.tar.gz | tar -C /storage/hyperion/bin -xz # modify the default config to have a correct effect path @@ -49,7 +49,7 @@ else if [ $IS_IMX6 -eq 1 ]; then wget https://raw.githubusercontent.com/tvdzwan/hyperion/master/deploy/hyperion_imx6.tar.gz -O - | tar -C /opt -xz else - wget https://raw.githubusercontent.com/tvdzwan/hyperion/master/deploy/hyperion.tar.gz -O - | tar -C /opt -xz + wget https://raw.githubusercontent.com/tvdzwan/hyperion/master/deploy/hyperion_rpi.tar.gz -O - | tar -C /opt -xz fi fi From 27557f7848b0bcb235ccaedba49521cbb83a9fb1 Mon Sep 17 00:00:00 2001 From: wisc Date: Wed, 10 Feb 2016 18:07:47 +0100 Subject: [PATCH 2/3] added missing gpio2spi Former-commit-id: 7882635b25d9568fc13ce98c136c97772e6ada03 --- deploy/hyperion_rpi.tar.gz.REMOVED.git-id | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deploy/hyperion_rpi.tar.gz.REMOVED.git-id b/deploy/hyperion_rpi.tar.gz.REMOVED.git-id index 44bbdc58..9c96bfd2 100644 --- a/deploy/hyperion_rpi.tar.gz.REMOVED.git-id +++ b/deploy/hyperion_rpi.tar.gz.REMOVED.git-id @@ -1 +1 @@ -5c164e4ff52076a530461cdf6966943d52cd39df \ No newline at end of file +d079238ea69f0fb1422e9d7181016d4e290c12d5 \ No newline at end of file From e10392b0c85e9b601376f4b2f37ab01a410ca1a8 Mon Sep 17 00:00:00 2001 From: wisc Date: Wed, 10 Feb 2016 18:36:04 +0100 Subject: [PATCH 3/3] added gpio2spi Former-commit-id: c04a47d0ac351a8840f3b00d7a2ab866c22c5008 --- bin/create_release.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/bin/create_release.sh b/bin/create_release.sh index 625ff0e1..d6b9bf66 100644 --- a/bin/create_release.sh +++ b/bin/create_release.sh @@ -28,6 +28,7 @@ tar --create --verbose --gzip --absolute-names --show-transformed-names --ignore "$builddir/bin/hyperiond" \ "$builddir/bin/hyperion-remote" \ "$builddir/bin/hyperion-v4l2" \ + "$builddir/bin/gpio2spi" \ "$builddir/bin/dispmanx2png" \ "$repodir/effects/"* \ "$repodir/bin/hyperion.init.sh" \