-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
- new package generation hash algorithm - changed Buildroot U-Boot configuration keys - WiringPi fix for GCC 10
- Loading branch information
There are no files selected for viewing
This file was deleted.
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
none xxx yio-integration-bangolufsen-v0.2.5.tar.gz | ||
none xxx yio-integration-bangolufsen-v0.2.5-br1.tar.gz | ||
sha256 3972dc9744f6499f0f9b2dbf76696f2ae7ad8af9b23dde66d6af86c9dfb36986 LICENSE |
This file was deleted.
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
none xxx yio-integration-dock-v0.6.4.tar.gz | ||
none xxx yio-integration-dock-v0.6.4-br1.tar.gz | ||
sha256 3972dc9744f6499f0f9b2dbf76696f2ae7ad8af9b23dde66d6af86c9dfb36986 LICENSE |
This file was deleted.
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
none xxx yio-integration-homeassistant-v0.5.7.tar.gz | ||
none xxx yio-integration-homeassistant-v0.5.7-br1.tar.gz | ||
sha256 3972dc9744f6499f0f9b2dbf76696f2ae7ad8af9b23dde66d6af86c9dfb36986 LICENSE |
This file was deleted.
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
none xxx yio-integration-homey-v0.5.4.tar.gz | ||
none xxx yio-integration-homey-v0.5.4-br1.tar.gz | ||
sha256 3972dc9744f6499f0f9b2dbf76696f2ae7ad8af9b23dde66d6af86c9dfb36986 LICENSE |
This file was deleted.
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
none xxx yio-integration-openhab-v0.5.4.tar.gz | ||
none xxx yio-integration-openhab-v0.5.4-br1.tar.gz | ||
sha256 3972dc9744f6499f0f9b2dbf76696f2ae7ad8af9b23dde66d6af86c9dfb36986 LICENSE |
This file was deleted.
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
none xxx yio-integration-openweather-v0.5.4.tar.gz | ||
none xxx yio-integration-openweather-v0.5.4-br1.tar.gz | ||
sha256 3972dc9744f6499f0f9b2dbf76696f2ae7ad8af9b23dde66d6af86c9dfb36986 LICENSE |
This file was deleted.
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
none xxx yio-integration-roon-v0.4.4.tar.gz | ||
none xxx yio-integration-roon-v0.4.4-br1.tar.gz | ||
sha256 3972dc9744f6499f0f9b2dbf76696f2ae7ad8af9b23dde66d6af86c9dfb36986 LICENSE |
This file was deleted.
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
none xxx yio-integration-spotify-v0.5.4.tar.gz | ||
none xxx yio-integration-spotify-v0.5.4-br1.tar.gz | ||
sha256 3972dc9744f6499f0f9b2dbf76696f2ae7ad8af9b23dde66d6af86c9dfb36986 LICENSE |
This file was deleted.
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
none xxx yio-remote-software-v0.7.0.tar.gz | ||
none xxx yio-remote-software-v0.7.0-br1.tar.gz | ||
sha256 3972dc9744f6499f0f9b2dbf76696f2ae7ad8af9b23dde66d6af86c9dfb36986 LICENSE |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
none xxx yio-web-configurator-v0.2.1.tar.gz | ||
none xxx yio-web-configurator-v0.2.1-br1.tar.gz | ||
sha256 3972dc9744f6499f0f9b2dbf76696f2ae7ad8af9b23dde66d6af86c9dfb36986 LICENSE |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
From c69c7d60058e04f1e170723c2a9562ea095d1c79 Mon Sep 17 00:00:00 2001 | ||
From: akvavit01 <[email protected]> | ||
Date: Fri, 5 Jun 2020 18:00:20 +0700 | ||
Subject: [PATCH 1/2] Fix for multiple definition of comDat | ||
|
||
--- | ||
wiringPiD/drcNetCmd.h | 10 +++++++++- | ||
1 file changed, 9 insertions(+), 1 deletion(-) | ||
|
||
diff --git a/wiringPiD/drcNetCmd.h b/wiringPiD/drcNetCmd.h | ||
index 23f7dc1..9754ad0 100644 | ||
--- a/wiringPiD/drcNetCmd.h | ||
+++ b/wiringPiD/drcNetCmd.h | ||
@@ -34,11 +34,19 @@ | ||
#define DRCN_DIGITAL_READ8 8 | ||
#define DRCN_ANALOG_READ 9 | ||
|
||
- | ||
+// Multiple definition for comDat fix | ||
+/* | ||
struct drcNetComStruct | ||
{ | ||
uint32_t pin ; | ||
uint32_t cmd ; | ||
uint32_t data ; | ||
} comDat ; | ||
+*/ | ||
|
||
+struct drcNetComStruct | ||
+{ | ||
+ uint32_t pin ; | ||
+ uint32_t cmd ; | ||
+ uint32_t data ; | ||
+}; | ||
|
||
From 7bace61ddba6be9a5ae1b75e1480c3f7f94606cc Mon Sep 17 00:00:00 2001 | ||
From: Mark Liffiton <[email protected]> | ||
Date: Thu, 26 Nov 2020 12:52:22 -0600 | ||
Subject: [PATCH 2/2] Remove unneeded definition. | ||
|
||
--- | ||
wiringPiD/drcNetCmd.h | 9 --------- | ||
1 file changed, 9 deletions(-) | ||
|
||
diff --git a/wiringPiD/drcNetCmd.h b/wiringPiD/drcNetCmd.h | ||
index 9754ad0..c59e0b3 100644 | ||
--- a/wiringPiD/drcNetCmd.h | ||
+++ b/wiringPiD/drcNetCmd.h | ||
@@ -34,15 +34,6 @@ | ||
#define DRCN_DIGITAL_READ8 8 | ||
#define DRCN_ANALOG_READ 9 | ||
|
||
-// Multiple definition for comDat fix | ||
-/* | ||
-struct drcNetComStruct | ||
-{ | ||
- uint32_t pin ; | ||
- uint32_t cmd ; | ||
- uint32_t data ; | ||
-} comDat ; | ||
-*/ | ||
|
||
struct drcNetComStruct | ||
{ |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# Locally calculated | ||
sha256 2455fc97d2b60ed169675dccbaabf55e1958c3c2499b246c96edfc8b036e9073 wiringpi-2.46.tar.gz | ||
sha256 ece3c25282de7b9d79bff913637018ca820400d6998e813d88b1918c9ec01da0 yio-wiringpi-final_official_2.50.tar.gz | ||
sha256 1e27b58a573097a06f22c9c2b1ba51c01c1ece156c4673bb4a0a1339085fd71c yio-wiringpi-final_official_2.50-br1.tar.gz | ||
sha256 da7eabb7bafdf7d3ae5e9f223aa5bdc1eece45ac569dc21b3b037520b4464768 COPYING.LESSER |
This file was deleted.