-
Notifications
You must be signed in to change notification settings - Fork 190
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
labs/buildroot: update to Buildroot 2024.02
And also update to newer Linux (6.6) and newer U-Boot (2024.02) Signed-off-by: Thomas Petazzoni <[email protected]>
- Loading branch information
1 parent
9b677cc
commit 8a63dd3
Showing
11 changed files
with
151 additions
and
191 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
From 71c7e58915a31ac44ffbef033911c27b7437cb76 Mon Sep 17 00:00:00 2001 | ||
From a0208d1b92ad6c044de972db3f6eb5e217395e5f Mon Sep 17 00:00:00 2001 | ||
From: =?UTF-8?q?Antoine=20T=C3=A9nart?= <[email protected]> | ||
Date: Mon, 7 Apr 2014 11:55:31 +0200 | ||
Subject: [PATCH 1/2] Add nunchuk driver | ||
|
@@ -11,15 +11,15 @@ Signed-off-by: Thomas Petazzoni <[email protected]> | |
--- | ||
drivers/input/joystick/Kconfig | 13 + | ||
drivers/input/joystick/Makefile | 1 + | ||
drivers/input/joystick/wiichuck.c | 404 ++++++++++++++++++++++++++++++ | ||
3 files changed, 418 insertions(+) | ||
drivers/input/joystick/wiichuck.c | 403 ++++++++++++++++++++++++++++++ | ||
3 files changed, 417 insertions(+) | ||
create mode 100644 drivers/input/joystick/wiichuck.c | ||
|
||
diff --git a/drivers/input/joystick/Kconfig b/drivers/input/joystick/Kconfig | ||
index 3b23078bc7b5..5b6a2d219a12 100644 | ||
index ac6925ce8366..e155f724b789 100644 | ||
--- a/drivers/input/joystick/Kconfig | ||
+++ b/drivers/input/joystick/Kconfig | ||
@@ -206,6 +206,19 @@ config JOYSTICK_TWIDJOY | ||
@@ -207,6 +207,19 @@ config JOYSTICK_TWIDJOY | ||
To compile this driver as a module, choose M here: the | ||
module will be called twidjoy. | ||
|
||
|
@@ -40,10 +40,10 @@ index 3b23078bc7b5..5b6a2d219a12 100644 | |
tristate "5-byte Zhenhua RC transmitter" | ||
select SERIO | ||
diff --git a/drivers/input/joystick/Makefile b/drivers/input/joystick/Makefile | ||
index 5174b8aba2dd..2ab4167afbd7 100644 | ||
index 3937535f0098..7dee2e46303d 100644 | ||
--- a/drivers/input/joystick/Makefile | ||
+++ b/drivers/input/joystick/Makefile | ||
@@ -37,5 +37,6 @@ obj-$(CONFIG_JOYSTICK_TURBOGRAFX) += turbografx.o | ||
@@ -38,5 +38,6 @@ obj-$(CONFIG_JOYSTICK_TURBOGRAFX) += turbografx.o | ||
obj-$(CONFIG_JOYSTICK_TWIDJOY) += twidjoy.o | ||
obj-$(CONFIG_JOYSTICK_WARRIOR) += warrior.o | ||
obj-$(CONFIG_JOYSTICK_WALKERA0701) += walkera0701.o | ||
|
@@ -52,10 +52,10 @@ index 5174b8aba2dd..2ab4167afbd7 100644 | |
obj-$(CONFIG_JOYSTICK_ZHENHUA) += zhenhua.o | ||
diff --git a/drivers/input/joystick/wiichuck.c b/drivers/input/joystick/wiichuck.c | ||
new file mode 100644 | ||
index 000000000000..ba3797396c8a | ||
index 000000000000..1037e7a29b69 | ||
--- /dev/null | ||
+++ b/drivers/input/joystick/wiichuck.c | ||
@@ -0,0 +1,404 @@ | ||
@@ -0,0 +1,403 @@ | ||
+/* | ||
+ * i2c Wiichuck driver (Nintendo Wiimote accessory connector) | ||
+ * | ||
|
@@ -339,8 +339,7 @@ index 000000000000..ba3797396c8a | |
+ return 0; | ||
+} | ||
+ | ||
+static int wiichuck_probe(struct i2c_client *client, | ||
+ const struct i2c_device_id *id) | ||
+static int wiichuck_probe(struct i2c_client *client) | ||
+{ | ||
+ struct wiichuck_device *wiichuck; | ||
+ struct input_dev *input_dev; | ||
|
@@ -461,5 +460,5 @@ index 000000000000..ba3797396c8a | |
+}; | ||
+module_i2c_driver(wiichuck_driver); | ||
-- | ||
2.35.1 | ||
2.45.1 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,19 @@ | ||
From 56056c350200053dd21a66638a9b41856f5c3195 Mon Sep 17 00:00:00 2001 | ||
From 02a0ef4fdfce1bcb301c386edf6968ad13b802c4 Mon Sep 17 00:00:00 2001 | ||
From: Thomas Petazzoni <[email protected]> | ||
Date: Fri, 3 Dec 2021 10:45:26 +0100 | ||
Subject: [PATCH 2/2] ARM: dts: stm32mp157a-dk1: add description of Nunchuk on | ||
I2C5 | ||
|
||
Signed-off-by: Thomas Petazzoni <[email protected]> | ||
--- | ||
arch/arm/boot/dts/stm32mp157a-dk1.dts | 13 +++++++++++++ | ||
arch/arm/boot/dts/st/stm32mp157a-dk1.dts | 13 +++++++++++++ | ||
1 file changed, 13 insertions(+) | ||
|
||
diff --git a/arch/arm/boot/dts/stm32mp157a-dk1.dts b/arch/arm/boot/dts/stm32mp157a-dk1.dts | ||
index 4c8be9c8eb20..996e3bee89c9 100644 | ||
--- a/arch/arm/boot/dts/stm32mp157a-dk1.dts | ||
+++ b/arch/arm/boot/dts/stm32mp157a-dk1.dts | ||
@@ -26,3 +26,16 @@ chosen { | ||
diff --git a/arch/arm/boot/dts/st/stm32mp157a-dk1.dts b/arch/arm/boot/dts/st/stm32mp157a-dk1.dts | ||
index 0da3667ab1e0..1f1d07f5a4e2 100644 | ||
--- a/arch/arm/boot/dts/st/stm32mp157a-dk1.dts | ||
+++ b/arch/arm/boot/dts/st/stm32mp157a-dk1.dts | ||
@@ -23,3 +23,16 @@ chosen { | ||
stdout-path = "serial0:115200n8"; | ||
}; | ||
}; | ||
|
@@ -31,5 +31,5 @@ index 4c8be9c8eb20..996e3bee89c9 100644 | |
+ }; | ||
+}; | ||
-- | ||
2.35.1 | ||
2.45.1 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
From 71c7e58915a31ac44ffbef033911c27b7437cb76 Mon Sep 17 00:00:00 2001 | ||
From 7c37fae9e0075955966e1b10132d8482477cc097 Mon Sep 17 00:00:00 2001 | ||
From: =?UTF-8?q?Antoine=20T=C3=A9nart?= <[email protected]> | ||
Date: Mon, 7 Apr 2014 11:55:31 +0200 | ||
Subject: [PATCH 1/2] Add nunchuk driver | ||
|
@@ -11,15 +11,15 @@ Signed-off-by: Thomas Petazzoni <[email protected]> | |
--- | ||
drivers/input/joystick/Kconfig | 13 + | ||
drivers/input/joystick/Makefile | 1 + | ||
drivers/input/joystick/wiichuck.c | 404 ++++++++++++++++++++++++++++++ | ||
3 files changed, 418 insertions(+) | ||
drivers/input/joystick/wiichuck.c | 403 ++++++++++++++++++++++++++++++ | ||
3 files changed, 417 insertions(+) | ||
create mode 100644 drivers/input/joystick/wiichuck.c | ||
|
||
diff --git a/drivers/input/joystick/Kconfig b/drivers/input/joystick/Kconfig | ||
index 3b23078bc7b5..5b6a2d219a12 100644 | ||
index ac6925ce8366..e155f724b789 100644 | ||
--- a/drivers/input/joystick/Kconfig | ||
+++ b/drivers/input/joystick/Kconfig | ||
@@ -206,6 +206,19 @@ config JOYSTICK_TWIDJOY | ||
@@ -207,6 +207,19 @@ config JOYSTICK_TWIDJOY | ||
To compile this driver as a module, choose M here: the | ||
module will be called twidjoy. | ||
|
||
|
@@ -40,10 +40,10 @@ index 3b23078bc7b5..5b6a2d219a12 100644 | |
tristate "5-byte Zhenhua RC transmitter" | ||
select SERIO | ||
diff --git a/drivers/input/joystick/Makefile b/drivers/input/joystick/Makefile | ||
index 5174b8aba2dd..2ab4167afbd7 100644 | ||
index 3937535f0098..7dee2e46303d 100644 | ||
--- a/drivers/input/joystick/Makefile | ||
+++ b/drivers/input/joystick/Makefile | ||
@@ -37,5 +37,6 @@ obj-$(CONFIG_JOYSTICK_TURBOGRAFX) += turbografx.o | ||
@@ -38,5 +38,6 @@ obj-$(CONFIG_JOYSTICK_TURBOGRAFX) += turbografx.o | ||
obj-$(CONFIG_JOYSTICK_TWIDJOY) += twidjoy.o | ||
obj-$(CONFIG_JOYSTICK_WARRIOR) += warrior.o | ||
obj-$(CONFIG_JOYSTICK_WALKERA0701) += walkera0701.o | ||
|
@@ -52,10 +52,10 @@ index 5174b8aba2dd..2ab4167afbd7 100644 | |
obj-$(CONFIG_JOYSTICK_ZHENHUA) += zhenhua.o | ||
diff --git a/drivers/input/joystick/wiichuck.c b/drivers/input/joystick/wiichuck.c | ||
new file mode 100644 | ||
index 000000000000..ba3797396c8a | ||
index 000000000000..1037e7a29b69 | ||
--- /dev/null | ||
+++ b/drivers/input/joystick/wiichuck.c | ||
@@ -0,0 +1,404 @@ | ||
@@ -0,0 +1,403 @@ | ||
+/* | ||
+ * i2c Wiichuck driver (Nintendo Wiimote accessory connector) | ||
+ * | ||
|
@@ -339,8 +339,7 @@ index 000000000000..ba3797396c8a | |
+ return 0; | ||
+} | ||
+ | ||
+static int wiichuck_probe(struct i2c_client *client, | ||
+ const struct i2c_device_id *id) | ||
+static int wiichuck_probe(struct i2c_client *client) | ||
+{ | ||
+ struct wiichuck_device *wiichuck; | ||
+ struct input_dev *input_dev; | ||
|
@@ -461,5 +460,5 @@ index 000000000000..ba3797396c8a | |
+}; | ||
+module_i2c_driver(wiichuck_driver); | ||
-- | ||
2.35.1 | ||
2.45.1 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
From 55278c2906191461e34b6851c41ac5ac023d3024 Mon Sep 17 00:00:00 2001 | ||
From 557566140c3118c758fac7297b4bf209e9018bf6 Mon Sep 17 00:00:00 2001 | ||
From: =?UTF-8?q?Antoine=20T=C3=A9nart?= <[email protected]> | ||
Date: Mon, 7 Apr 2014 11:55:56 +0200 | ||
Subject: [PATCH 2/2] Add i2c1 and nunchuk nodes in dts | ||
|
@@ -9,15 +9,15 @@ Content-Transfer-Encoding: 8bit | |
Signed-off-by: Antoine Ténart <[email protected]> | ||
Signed-off-by: Thomas Petazzoni <[email protected]> | ||
--- | ||
arch/arm/boot/dts/am335x-bone-common.dtsi | 7 +++++++ | ||
arch/arm/boot/dts/am335x-boneblack-common.dtsi | 13 +++++++++++++ | ||
arch/arm/boot/dts/ti/omap/am335x-bone-common.dtsi | 7 +++++++ | ||
.../boot/dts/ti/omap/am335x-boneblack-common.dtsi | 13 +++++++++++++ | ||
2 files changed, 20 insertions(+) | ||
|
||
diff --git a/arch/arm/boot/dts/am335x-bone-common.dtsi b/arch/arm/boot/dts/am335x-bone-common.dtsi | ||
index 0ccdc7cd463b..c5ce2c6748ba 100644 | ||
--- a/arch/arm/boot/dts/am335x-bone-common.dtsi | ||
+++ b/arch/arm/boot/dts/am335x-bone-common.dtsi | ||
@@ -89,6 +89,13 @@ AM33XX_PADCONF(AM335X_PIN_UART1_RTSN, PIN_INPUT_PULLUP, MUX_MODE3) /* uart1_rtsn | ||
diff --git a/arch/arm/boot/dts/ti/omap/am335x-bone-common.dtsi b/arch/arm/boot/dts/ti/omap/am335x-bone-common.dtsi | ||
index 96451c8a815c..5b855be8c481 100644 | ||
--- a/arch/arm/boot/dts/ti/omap/am335x-bone-common.dtsi | ||
+++ b/arch/arm/boot/dts/ti/omap/am335x-bone-common.dtsi | ||
@@ -82,6 +82,13 @@ AM33XX_PADCONF(AM335X_PIN_I2C0_SCL, PIN_INPUT_PULLUP, MUX_MODE0) /* i2c0_scl.i2c | ||
>; | ||
}; | ||
|
||
|
@@ -28,14 +28,14 @@ index 0ccdc7cd463b..c5ce2c6748ba 100644 | |
+ >; | ||
+ }; | ||
+ | ||
uart0_pins: pinmux_uart0_pins { | ||
i2c2_pins: i2c2-pins { | ||
pinctrl-single,pins = < | ||
AM33XX_PADCONF(AM335X_PIN_UART0_RXD, PIN_INPUT_PULLUP, MUX_MODE0) | ||
diff --git a/arch/arm/boot/dts/am335x-boneblack-common.dtsi b/arch/arm/boot/dts/am335x-boneblack-common.dtsi | ||
index 10494c4431b9..5d26fc404490 100644 | ||
--- a/arch/arm/boot/dts/am335x-boneblack-common.dtsi | ||
+++ b/arch/arm/boot/dts/am335x-boneblack-common.dtsi | ||
@@ -32,3 +32,16 @@ memory@80000000 { | ||
AM33XX_PADCONF(AM335X_PIN_UART1_CTSN, PIN_INPUT_PULLUP, MUX_MODE3) /* uart1_ctsn.i2c2_sda */ | ||
diff --git a/arch/arm/boot/dts/ti/omap/am335x-boneblack-common.dtsi b/arch/arm/boot/dts/ti/omap/am335x-boneblack-common.dtsi | ||
index a7a8c61ef9b2..02ca3f7ee87d 100644 | ||
--- a/arch/arm/boot/dts/ti/omap/am335x-boneblack-common.dtsi | ||
+++ b/arch/arm/boot/dts/ti/omap/am335x-boneblack-common.dtsi | ||
@@ -28,3 +28,16 @@ memory@80000000 { | ||
reg = <0x80000000 0x20000000>; /* 512 MB */ | ||
}; | ||
}; | ||
|
@@ -53,5 +53,5 @@ index 10494c4431b9..5d26fc404490 100644 | |
+ }; | ||
+}; | ||
-- | ||
2.35.1 | ||
2.45.1 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.