All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 0/3] package/rtl8189s: fixes for autobuilder failures
@ 2022-05-09  6:07 Sergey Matyukevich
  2022-05-09  6:07 ` [Buildroot] [PATCH 1/3] package/rtl8189fs: enable required kernel options Sergey Matyukevich
                   ` (2 more replies)
  0 siblings, 3 replies; 8+ messages in thread
From: Sergey Matyukevich @ 2022-05-09  6:07 UTC (permalink / raw)
  To: buildroot; +Cc: Sergey Matyukevich

Hi all,

This patch series includes several patches that are supposed to fix
recent rtl8189fs build failures. Fixes include:
- fix rtl8189fs builds for big-endian platforms
- enable kernel options required for rtl8189fs driver

Besides, bump driver version to pull the latest fixes
for 5.1 - 5.17 kernels.

Regards,
Sergey

Sergey Matyukevich (3):
  package/rtl8189fs: enable required kernel options
  package/rtl8189fs: bump revision
  package/rtl8189fs: fix big-endian builds

 ...1-Makefile-remove-default-endianness.patch | 30 +++++++++++++++++++
 .../0001-include-disable-debug-messages.patch | 28 -----------------
 package/rtl8189fs/rtl8189fs.hash              |  2 +-
 package/rtl8189fs/rtl8189fs.mk                | 12 ++++++--
 4 files changed, 41 insertions(+), 31 deletions(-)
 create mode 100644 package/rtl8189fs/0001-Makefile-remove-default-endianness.patch
 delete mode 100644 package/rtl8189fs/0001-include-disable-debug-messages.patch

-- 
2.35.1

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply	[flat|nested] 8+ messages in thread

* [Buildroot] [PATCH 1/3] package/rtl8189fs: enable required kernel options
  2022-05-09  6:07 [Buildroot] [PATCH 0/3] package/rtl8189s: fixes for autobuilder failures Sergey Matyukevich
@ 2022-05-09  6:07 ` Sergey Matyukevich
  2022-05-28 19:17   ` Peter Korsgaard
  2022-05-09  6:07 ` [Buildroot] [PATCH 2/3] package/rtl8189fs: bump revision Sergey Matyukevich
  2022-05-09  6:07 ` [Buildroot] [PATCH 3/3] package/rtl8189fs: fix big-endian builds Sergey Matyukevich
  2 siblings, 1 reply; 8+ messages in thread
From: Sergey Matyukevich @ 2022-05-09  6:07 UTC (permalink / raw)
  To: buildroot; +Cc: Sergey Matyukevich

Enable Linux kernel configuration options required by the driver.
Those are wireless networking and sdio support.

Fixes:
- http://autobuild.buildroot.net/results/ed6e29e44333ccae2728ca3321ff876c3056eada/

Signed-off-by: Sergey Matyukevich <geomatsi@gmail.com>
---
 package/rtl8189fs/rtl8189fs.mk | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/package/rtl8189fs/rtl8189fs.mk b/package/rtl8189fs/rtl8189fs.mk
index 40b735c21b..0cca0b751d 100644
--- a/package/rtl8189fs/rtl8189fs.mk
+++ b/package/rtl8189fs/rtl8189fs.mk
@@ -13,5 +13,12 @@ RTL8189FS_MODULE_MAKE_OPTS = \
 	KVER=$(LINUX_VERSION_PROBED) \
 	KSRC=$(LINUX_DIR)
 
+define RTL8189FS_LINUX_CONFIG_FIXUPS
+	$(call KCONFIG_ENABLE_OPT,CONFIG_WIRELESS)
+	$(call KCONFIG_ENABLE_OPT,CONFIG_CFG80211)
+	$(call KCONFIG_ENABLE_OPT,CONFIG_MAC80211)
+	$(call KCONFIG_ENABLE_OPT,CONFIG_MMC)
+endef
+
 $(eval $(kernel-module))
 $(eval $(generic-package))
-- 
2.35.1

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply related	[flat|nested] 8+ messages in thread

* [Buildroot] [PATCH 2/3] package/rtl8189fs: bump revision
  2022-05-09  6:07 [Buildroot] [PATCH 0/3] package/rtl8189s: fixes for autobuilder failures Sergey Matyukevich
  2022-05-09  6:07 ` [Buildroot] [PATCH 1/3] package/rtl8189fs: enable required kernel options Sergey Matyukevich
@ 2022-05-09  6:07 ` Sergey Matyukevich
  2022-05-28 19:17   ` Peter Korsgaard
  2022-05-09  6:07 ` [Buildroot] [PATCH 3/3] package/rtl8189fs: fix big-endian builds Sergey Matyukevich
  2 siblings, 1 reply; 8+ messages in thread
From: Sergey Matyukevich @ 2022-05-09  6:07 UTC (permalink / raw)
  To: buildroot; +Cc: Sergey Matyukevich

Bump package revision to pull various fixes for v5.1 - v5.17 kernels.
Patch that disables verbose debug is no more compatible with updated
driver since build flags in Makefile has been changed. Drop it.

Signed-off-by: Sergey Matyukevich <geomatsi@gmail.com>
---
 .../0001-include-disable-debug-messages.patch | 28 -------------------
 package/rtl8189fs/rtl8189fs.hash              |  2 +-
 package/rtl8189fs/rtl8189fs.mk                |  2 +-
 3 files changed, 2 insertions(+), 30 deletions(-)
 delete mode 100644 package/rtl8189fs/0001-include-disable-debug-messages.patch

diff --git a/package/rtl8189fs/0001-include-disable-debug-messages.patch b/package/rtl8189fs/0001-include-disable-debug-messages.patch
deleted file mode 100644
index 532982b1d3..0000000000
--- a/package/rtl8189fs/0001-include-disable-debug-messages.patch
+++ /dev/null
@@ -1,28 +0,0 @@
-From 5d3a44ff1aeb8ace6e08df3cad16102aaac1ef09 Mon Sep 17 00:00:00 2001
-From: Sergey Matyukevich <geomatsi@gmail.com>
-Date: Sun, 13 Jun 2021 15:51:51 +0300
-Subject: [PATCH] include: disable debug messages
-
-Disable debug messages to make rtl8189fs driver less noisy.
-
-Signed-off-by: Sergey Matyukevich <geomatsi@gmail.com>
----
- include/autoconf.h | 2 --
- 1 file changed, 2 deletions(-)
-
-diff --git a/include/autoconf.h b/include/autoconf.h
-index 44efe42..b5df57b 100644
---- a/include/autoconf.h
-+++ b/include/autoconf.h
-@@ -224,8 +224,6 @@
- /*
-  * Debug Related Config
-  */
--#define CONFIG_DEBUG /* DBG_871X, etc... */
--
- #ifdef CONFIG_DEBUG
- #define DBG	1	// for ODM & BTCOEX debug
- //#define CONFIG_DEBUG_RTL871X /* RT_TRACE, RT_PRINT_DATA, _func_enter_, _func_exit_ */
--- 
-2.32.0
-
diff --git a/package/rtl8189fs/rtl8189fs.hash b/package/rtl8189fs/rtl8189fs.hash
index f9772f2a89..d5d18a8ba8 100644
--- a/package/rtl8189fs/rtl8189fs.hash
+++ b/package/rtl8189fs/rtl8189fs.hash
@@ -1,2 +1,2 @@
 # Locally calculated
-sha256  fd74248b8cc62e54a954502228be221ace6051832a972b8b3005cc05e9c87761  rtl8189fs-73f826f0fa74b2fc1ad67eaf92bf9787947ae673.tar.gz
+sha256  41eee18d8a4289c2eac07af3224c62214a9b694a717bf497cd34a95b955f3d49  rtl8189fs-94a61cbf46ce87b7c9b8aa53123aeb142133a3c9.tar.gz
diff --git a/package/rtl8189fs/rtl8189fs.mk b/package/rtl8189fs/rtl8189fs.mk
index 0cca0b751d..6031a3072c 100644
--- a/package/rtl8189fs/rtl8189fs.mk
+++ b/package/rtl8189fs/rtl8189fs.mk
@@ -4,7 +4,7 @@
 #
 ################################################################################
 
-RTL8189FS_VERSION = 73f826f0fa74b2fc1ad67eaf92bf9787947ae673
+RTL8189FS_VERSION = 94a61cbf46ce87b7c9b8aa53123aeb142133a3c9
 RTL8189FS_SITE = $(call github,jwrdegoede,rtl8189ES_linux,$(RTL8189FS_VERSION))
 RTL8189FS_LICENSE = GPL-2.0
 
-- 
2.35.1

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply related	[flat|nested] 8+ messages in thread

* [Buildroot] [PATCH 3/3] package/rtl8189fs: fix big-endian builds
  2022-05-09  6:07 [Buildroot] [PATCH 0/3] package/rtl8189s: fixes for autobuilder failures Sergey Matyukevich
  2022-05-09  6:07 ` [Buildroot] [PATCH 1/3] package/rtl8189fs: enable required kernel options Sergey Matyukevich
  2022-05-09  6:07 ` [Buildroot] [PATCH 2/3] package/rtl8189fs: bump revision Sergey Matyukevich
@ 2022-05-09  6:07 ` Sergey Matyukevich
  2022-05-13 21:08   ` Arnout Vandecappelle
  2022-05-28 19:19   ` Peter Korsgaard
  2 siblings, 2 replies; 8+ messages in thread
From: Sergey Matyukevich @ 2022-05-09  6:07 UTC (permalink / raw)
  To: buildroot; +Cc: Sergey Matyukevich

Fix rtl8189fs builds for big-endian platforms. For this purpose remove
default little-endian configuration option from rtl8189fs Makefile.
Configure proper endianness using USER_EXTRA_CFLAGS instead.

Fixes:
- http://autobuild.buildroot.net/results/51e95561103e40ae94f38b9bb944bdfcd4ab50ed/
- http://autobuild.buildroot.net/results/8ac7921926ab48aeb95dc4ea20f3c9970094c71d/
- http://autobuild.buildroot.net/results/7f0bdd03c41bcc9e567fe722ed271e5dcf210f44/

Signed-off-by: Sergey Matyukevich <geomatsi@gmail.com>
---
 ...1-Makefile-remove-default-endianness.patch | 30 +++++++++++++++++++
 package/rtl8189fs/rtl8189fs.mk                |  3 +-
 2 files changed, 32 insertions(+), 1 deletion(-)
 create mode 100644 package/rtl8189fs/0001-Makefile-remove-default-endianness.patch

diff --git a/package/rtl8189fs/0001-Makefile-remove-default-endianness.patch b/package/rtl8189fs/0001-Makefile-remove-default-endianness.patch
new file mode 100644
index 0000000000..47e42415eb
--- /dev/null
+++ b/package/rtl8189fs/0001-Makefile-remove-default-endianness.patch
@@ -0,0 +1,30 @@
+From 480d9da302885d9e8b3d1f9c68def569e3c8a8c0 Mon Sep 17 00:00:00 2001
+From: Sergey Matyukevich <geomatsi@gmail.com>
+Date: Mon, 9 May 2022 00:17:21 +0300
+Subject: [PATCH] Makefile: remove default endianness
+
+There is no way to remove configuration options from EXTRA_CFLAGS
+without editing Makefile. So default LE configuration can not be
+conveniently replaced by BE. Remove default endianness from the
+Makefile to enable its configuration via USER_EXTRA_CFLAGS.
+
+Signed-off-by: Sergey Matyukevich <geomatsi@gmail.com>
+---
+ Makefile | 1 -
+ 1 file changed, 1 deletion(-)
+
+diff --git a/Makefile b/Makefile
+index dfca305..fde4e6b 100644
+--- a/Makefile
++++ b/Makefile
+@@ -22,7 +22,6 @@ endif
+ 
+ EXTRA_CFLAGS += -I$(src)/include
+ 
+-EXTRA_CFLAGS += -DCONFIG_LITTLE_ENDIAN
+ EXTRA_CFLAGS += -DCONFIG_IOCTL_CFG80211 -DRTW_USE_CFG80211_STA_EVENT
+ 
+ EXTRA_LDFLAGS += --strip-debug
+-- 
+2.35.1
+
diff --git a/package/rtl8189fs/rtl8189fs.mk b/package/rtl8189fs/rtl8189fs.mk
index 6031a3072c..1c398919ba 100644
--- a/package/rtl8189fs/rtl8189fs.mk
+++ b/package/rtl8189fs/rtl8189fs.mk
@@ -11,7 +11,8 @@ RTL8189FS_LICENSE = GPL-2.0
 RTL8189FS_MODULE_MAKE_OPTS = \
 	CONFIG_RTL8189FS=m \
 	KVER=$(LINUX_VERSION_PROBED) \
-	KSRC=$(LINUX_DIR)
+	KSRC=$(LINUX_DIR) \
+	USER_EXTRA_CFLAGS="-DCONFIG_$(call qstrip,$(BR2_ENDIAN))_ENDIAN"
 
 define RTL8189FS_LINUX_CONFIG_FIXUPS
 	$(call KCONFIG_ENABLE_OPT,CONFIG_WIRELESS)
-- 
2.35.1

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply related	[flat|nested] 8+ messages in thread

* Re: [Buildroot] [PATCH 3/3] package/rtl8189fs: fix big-endian builds
  2022-05-09  6:07 ` [Buildroot] [PATCH 3/3] package/rtl8189fs: fix big-endian builds Sergey Matyukevich
@ 2022-05-13 21:08   ` Arnout Vandecappelle
  2022-05-28 19:19   ` Peter Korsgaard
  1 sibling, 0 replies; 8+ messages in thread
From: Arnout Vandecappelle @ 2022-05-13 21:08 UTC (permalink / raw)
  To: Sergey Matyukevich, buildroot



On 09/05/2022 08:07, Sergey Matyukevich wrote:
> Fix rtl8189fs builds for big-endian platforms. For this purpose remove
> default little-endian configuration option from rtl8189fs Makefile.
> Configure proper endianness using USER_EXTRA_CFLAGS instead.
> 
> Fixes:
> - http://autobuild.buildroot.net/results/51e95561103e40ae94f38b9bb944bdfcd4ab50ed/
> - http://autobuild.buildroot.net/results/8ac7921926ab48aeb95dc4ea20f3c9970094c71d/
> - http://autobuild.buildroot.net/results/7f0bdd03c41bcc9e567fe722ed271e5dcf210f44/
> 
> Signed-off-by: Sergey Matyukevich <geomatsi@gmail.com>

  Series applied to master. However...

> ---
>   ...1-Makefile-remove-default-endianness.patch | 30 +++++++++++++++++++
>   package/rtl8189fs/rtl8189fs.mk                |  3 +-
>   2 files changed, 32 insertions(+), 1 deletion(-)
>   create mode 100644 package/rtl8189fs/0001-Makefile-remove-default-endianness.patch
> 
> diff --git a/package/rtl8189fs/0001-Makefile-remove-default-endianness.patch b/package/rtl8189fs/0001-Makefile-remove-default-endianness.patch
> new file mode 100644
> index 0000000000..47e42415eb
> --- /dev/null
> +++ b/package/rtl8189fs/0001-Makefile-remove-default-endianness.patch
> @@ -0,0 +1,30 @@
> +From 480d9da302885d9e8b3d1f9c68def569e3c8a8c0 Mon Sep 17 00:00:00 2001
> +From: Sergey Matyukevich <geomatsi@gmail.com>
> +Date: Mon, 9 May 2022 00:17:21 +0300
> +Subject: [PATCH] Makefile: remove default endianness
> +
> +There is no way to remove configuration options from EXTRA_CFLAGS
> +without editing Makefile. So default LE configuration can not be
> +conveniently replaced by BE. Remove default endianness from the
> +Makefile to enable its configuration via USER_EXTRA_CFLAGS.

  I don't know if it works, but if USER_EXTRA_CFLAGS is added _after_ 
EXTRA_CFLAGS, you can still override it with:

USER_EXTRA_CFLAGS="-UCONFIG_LITTLE_ENDIAN -DCONFIG_$(call 
qstrip,$(BR2_ENDIAN))_ENDIAN"

or, simpler:

ifeq ($(BR2_ENDIAN),"BIG")
USER_EXTRA_CFLAGS="-UCONFIG_LITTLE_ENDIAN -DCONFIG_BIG_ENDIAN"
endif

If USER_EXTRA_CFLAGS comes before, then there's indeed nothing you can do. In 
that case, please send the patch upstream.

  Regards,
  Arnout

> +
> +Signed-off-by: Sergey Matyukevich <geomatsi@gmail.com>
> +---
> + Makefile | 1 -
> + 1 file changed, 1 deletion(-)
> +
> +diff --git a/Makefile b/Makefile
> +index dfca305..fde4e6b 100644
> +--- a/Makefile
> ++++ b/Makefile
> +@@ -22,7 +22,6 @@ endif
> +
> + EXTRA_CFLAGS += -I$(src)/include
> +
> +-EXTRA_CFLAGS += -DCONFIG_LITTLE_ENDIAN
> + EXTRA_CFLAGS += -DCONFIG_IOCTL_CFG80211 -DRTW_USE_CFG80211_STA_EVENT
> +
> + EXTRA_LDFLAGS += --strip-debug
> +--
> +2.35.1
> +
> diff --git a/package/rtl8189fs/rtl8189fs.mk b/package/rtl8189fs/rtl8189fs.mk
> index 6031a3072c..1c398919ba 100644
> --- a/package/rtl8189fs/rtl8189fs.mk
> +++ b/package/rtl8189fs/rtl8189fs.mk
> @@ -11,7 +11,8 @@ RTL8189FS_LICENSE = GPL-2.0
>   RTL8189FS_MODULE_MAKE_OPTS = \
>   	CONFIG_RTL8189FS=m \
>   	KVER=$(LINUX_VERSION_PROBED) \
> -	KSRC=$(LINUX_DIR)
> +	KSRC=$(LINUX_DIR) \
> +	USER_EXTRA_CFLAGS="-DCONFIG_$(call qstrip,$(BR2_ENDIAN))_ENDIAN"
>   
>   define RTL8189FS_LINUX_CONFIG_FIXUPS
>   	$(call KCONFIG_ENABLE_OPT,CONFIG_WIRELESS)
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [Buildroot] [PATCH 1/3] package/rtl8189fs: enable required kernel options
  2022-05-09  6:07 ` [Buildroot] [PATCH 1/3] package/rtl8189fs: enable required kernel options Sergey Matyukevich
@ 2022-05-28 19:17   ` Peter Korsgaard
  0 siblings, 0 replies; 8+ messages in thread
From: Peter Korsgaard @ 2022-05-28 19:17 UTC (permalink / raw)
  To: Sergey Matyukevich; +Cc: buildroot

>>>>> "Sergey" == Sergey Matyukevich <geomatsi@gmail.com> writes:

 > Enable Linux kernel configuration options required by the driver.
 > Those are wireless networking and sdio support.

 > Fixes:
 > - http://autobuild.buildroot.net/results/ed6e29e44333ccae2728ca3321ff876c3056eada/

 > Signed-off-by: Sergey Matyukevich <geomatsi@gmail.com>

Committed to 2022.02.x, thanks.

-- 
Bye, Peter Korsgaard
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [Buildroot] [PATCH 2/3] package/rtl8189fs: bump revision
  2022-05-09  6:07 ` [Buildroot] [PATCH 2/3] package/rtl8189fs: bump revision Sergey Matyukevich
@ 2022-05-28 19:17   ` Peter Korsgaard
  0 siblings, 0 replies; 8+ messages in thread
From: Peter Korsgaard @ 2022-05-28 19:17 UTC (permalink / raw)
  To: Sergey Matyukevich; +Cc: buildroot

>>>>> "Sergey" == Sergey Matyukevich <geomatsi@gmail.com> writes:

 > Bump package revision to pull various fixes for v5.1 - v5.17 kernels.
 > Patch that disables verbose debug is no more compatible with updated
 > driver since build flags in Makefile has been changed. Drop it.

 > Signed-off-by: Sergey Matyukevich <geomatsi@gmail.com>

Committed to 2022.02.x, thanks.

> ---
 >  .../0001-include-disable-debug-messages.patch | 28 -------------------
 >  package/rtl8189fs/rtl8189fs.hash              |  2 +-
 >  package/rtl8189fs/rtl8189fs.mk                |  2 +-
 >  3 files changed, 2 insertions(+), 30 deletions(-)
 >  delete mode 100644 package/rtl8189fs/0001-include-disable-debug-messages.patch

 > diff --git a/package/rtl8189fs/0001-include-disable-debug-messages.patch b/package/rtl8189fs/0001-include-disable-debug-messages.patch
 > deleted file mode 100644
 > index 532982b1d3..0000000000
 > --- a/package/rtl8189fs/0001-include-disable-debug-messages.patch
 > +++ /dev/null
 > @@ -1,28 +0,0 @@
 > -From 5d3a44ff1aeb8ace6e08df3cad16102aaac1ef09 Mon Sep 17 00:00:00 2001
 > -From: Sergey Matyukevich <geomatsi@gmail.com>
 > -Date: Sun, 13 Jun 2021 15:51:51 +0300
 > -Subject: [PATCH] include: disable debug messages
 > -
 > -Disable debug messages to make rtl8189fs driver less noisy.
 > -
 > -Signed-off-by: Sergey Matyukevich <geomatsi@gmail.com>
 > ----
 > - include/autoconf.h | 2 --
 > - 1 file changed, 2 deletions(-)
 > -
 > -diff --git a/include/autoconf.h b/include/autoconf.h
 > -index 44efe42..b5df57b 100644
 > ---- a/include/autoconf.h
 > -+++ b/include/autoconf.h
 > -@@ -224,8 +224,6 @@
 > - /*
 > -  * Debug Related Config
 > -  */
 > --#define CONFIG_DEBUG /* DBG_871X, etc... */
 > --
 > - #ifdef CONFIG_DEBUG
 > - #define DBG	1	// for ODM & BTCOEX debug
 > - //#define CONFIG_DEBUG_RTL871X /* RT_TRACE, RT_PRINT_DATA, _func_enter_, _func_exit_ */
 > --- 
 > -2.32.0
 > -
 > diff --git a/package/rtl8189fs/rtl8189fs.hash b/package/rtl8189fs/rtl8189fs.hash
 > index f9772f2a89..d5d18a8ba8 100644
 > --- a/package/rtl8189fs/rtl8189fs.hash
 > +++ b/package/rtl8189fs/rtl8189fs.hash
 > @@ -1,2 +1,2 @@
 >  # Locally calculated
 > -sha256  fd74248b8cc62e54a954502228be221ace6051832a972b8b3005cc05e9c87761  rtl8189fs-73f826f0fa74b2fc1ad67eaf92bf9787947ae673.tar.gz
 > +sha256  41eee18d8a4289c2eac07af3224c62214a9b694a717bf497cd34a95b955f3d49  rtl8189fs-94a61cbf46ce87b7c9b8aa53123aeb142133a3c9.tar.gz
 > diff --git a/package/rtl8189fs/rtl8189fs.mk b/package/rtl8189fs/rtl8189fs.mk
 > index 0cca0b751d..6031a3072c 100644
 > --- a/package/rtl8189fs/rtl8189fs.mk
 > +++ b/package/rtl8189fs/rtl8189fs.mk
 > @@ -4,7 +4,7 @@
 >  #
 >  ################################################################################
 
 > -RTL8189FS_VERSION = 73f826f0fa74b2fc1ad67eaf92bf9787947ae673
 > +RTL8189FS_VERSION = 94a61cbf46ce87b7c9b8aa53123aeb142133a3c9
 >  RTL8189FS_SITE = $(call github,jwrdegoede,rtl8189ES_linux,$(RTL8189FS_VERSION))
 >  RTL8189FS_LICENSE = GPL-2.0
 
 > -- 

 > 2.35.1

 > _______________________________________________
 > buildroot mailing list
 > buildroot@buildroot.org
 > https://lists.buildroot.org/mailman/listinfo/buildroot


-- 
Bye, Peter Korsgaard
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [Buildroot] [PATCH 3/3] package/rtl8189fs: fix big-endian builds
  2022-05-09  6:07 ` [Buildroot] [PATCH 3/3] package/rtl8189fs: fix big-endian builds Sergey Matyukevich
  2022-05-13 21:08   ` Arnout Vandecappelle
@ 2022-05-28 19:19   ` Peter Korsgaard
  1 sibling, 0 replies; 8+ messages in thread
From: Peter Korsgaard @ 2022-05-28 19:19 UTC (permalink / raw)
  To: Sergey Matyukevich; +Cc: buildroot

>>>>> "Sergey" == Sergey Matyukevich <geomatsi@gmail.com> writes:

 > Fix rtl8189fs builds for big-endian platforms. For this purpose remove
 > default little-endian configuration option from rtl8189fs Makefile.
 > Configure proper endianness using USER_EXTRA_CFLAGS instead.

 > Fixes:
 > - http://autobuild.buildroot.net/results/51e95561103e40ae94f38b9bb944bdfcd4ab50ed/
 > - http://autobuild.buildroot.net/results/8ac7921926ab48aeb95dc4ea20f3c9970094c71d/
 > - http://autobuild.buildroot.net/results/7f0bdd03c41bcc9e567fe722ed271e5dcf210f44/

 > Signed-off-by: Sergey Matyukevich <geomatsi@gmail.com>

Committed to 2022.02.x, thanks.

-- 
Bye, Peter Korsgaard
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2022-05-28 19:19 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-05-09  6:07 [Buildroot] [PATCH 0/3] package/rtl8189s: fixes for autobuilder failures Sergey Matyukevich
2022-05-09  6:07 ` [Buildroot] [PATCH 1/3] package/rtl8189fs: enable required kernel options Sergey Matyukevich
2022-05-28 19:17   ` Peter Korsgaard
2022-05-09  6:07 ` [Buildroot] [PATCH 2/3] package/rtl8189fs: bump revision Sergey Matyukevich
2022-05-28 19:17   ` Peter Korsgaard
2022-05-09  6:07 ` [Buildroot] [PATCH 3/3] package/rtl8189fs: fix big-endian builds Sergey Matyukevich
2022-05-13 21:08   ` Arnout Vandecappelle
2022-05-28 19:19   ` Peter Korsgaard

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.