Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/1] package/rtl8192eu: new package
@ 2022-10-14 15:06 James Hilliard
  0 siblings, 0 replies; 3+ messages in thread
From: James Hilliard @ 2022-10-14 15:06 UTC (permalink / raw)
  To: buildroot; +Cc: James Hilliard, Thomas Petazzoni

Signed-off-by: James Hilliard <james.hilliard1@gmail.com>
---
 DEVELOPERS                       |  1 +
 package/Config.in                |  1 +
 package/rtl8192eu/Config.in      | 13 +++++++++++++
 package/rtl8192eu/rtl8192eu.hash |  2 ++
 package/rtl8192eu/rtl8192eu.mk   | 23 +++++++++++++++++++++++
 5 files changed, 40 insertions(+)
 create mode 100644 package/rtl8192eu/Config.in
 create mode 100644 package/rtl8192eu/rtl8192eu.hash
 create mode 100644 package/rtl8192eu/rtl8192eu.mk

diff --git a/DEVELOPERS b/DEVELOPERS
index bfde353c8a..0a3ecee2eb 100644
--- a/DEVELOPERS
+++ b/DEVELOPERS
@@ -1404,6 +1404,7 @@ F:	package/python-typing-inspect/
 F:	package/python-weasyprint/
 F:	package/python-yarl/
 F:	package/python-zopfli/
+F:	package/rtl8192eu/
 F:	package/serd/
 F:	package/sord/
 F:	package/sratom/
diff --git a/package/Config.in b/package/Config.in
index e3a34d6e97..e2ea999d60 100644
--- a/package/Config.in
+++ b/package/Config.in
@@ -576,6 +576,7 @@ endmenu
 	source "package/rtl8188eu/Config.in"
 	source "package/rtl8189es/Config.in"
 	source "package/rtl8189fs/Config.in"
+	source "package/rtl8192eu/Config.in"
 	source "package/rtl8723bu/Config.in"
 	source "package/rtl8723ds/Config.in"
 	source "package/rtl8812au-aircrack-ng/Config.in"
diff --git a/package/rtl8192eu/Config.in b/package/rtl8192eu/Config.in
new file mode 100644
index 0000000000..4d71b711c3
--- /dev/null
+++ b/package/rtl8192eu/Config.in
@@ -0,0 +1,13 @@
+config BR2_PACKAGE_RTL8192EU
+	bool "rtl8192eu"
+	depends on BR2_LINUX_KERNEL
+	help
+	  A standalone driver for the RTL8192EU USB Wi-Fi adapter.
+
+	  Make sure your target kernel has the CONFIG_WIRELESS_EXT
+	  config option enabled.
+
+	  https://github.com/clnhub/rtl8192eu-linux
+
+comment "rtl8192eu needs a Linux kernel to be built"
+	depends on !BR2_LINUX_KERNEL
diff --git a/package/rtl8192eu/rtl8192eu.hash b/package/rtl8192eu/rtl8192eu.hash
new file mode 100644
index 0000000000..167864c35d
--- /dev/null
+++ b/package/rtl8192eu/rtl8192eu.hash
@@ -0,0 +1,2 @@
+# Locally computed
+sha256  b2b363b8dc27c658cbfd5be32a65d0876cfd7c723ac6f72fdefeb6e44a9b1c9e  rtl8192eu-7b17d51543859e23d845d473806347db3415e8e4.tar.gz
diff --git a/package/rtl8192eu/rtl8192eu.mk b/package/rtl8192eu/rtl8192eu.mk
new file mode 100644
index 0000000000..cb612a4c15
--- /dev/null
+++ b/package/rtl8192eu/rtl8192eu.mk
@@ -0,0 +1,23 @@
+################################################################################
+#
+# rtl8192eu
+#
+################################################################################
+
+RTL8192EU_VERSION = 7b17d51543859e23d845d473806347db3415e8e4
+RTL8192EU_SITE = $(call github,clnhub,rtl8192eu-linux,$(RTL8192EU_VERSION))
+RTL8192EU_LICENSE = GPL-2.0
+RTL8192EU_MODULE_MAKE_OPTS = \
+	CONFIG_RTL8192EU=m \
+	USER_EXTRA_CFLAGS="-Wno-error"
+
+define RTL8192EU_LINUX_CONFIG_FIXUPS
+	$(call KCONFIG_ENABLE_OPT,CONFIG_NET)
+	$(call KCONFIG_ENABLE_OPT,CONFIG_WIRELESS)
+	$(call KCONFIG_ENABLE_OPT,CONFIG_CFG80211)
+	$(call KCONFIG_ENABLE_OPT,CONFIG_USB_SUPPORT)
+	$(call KCONFIG_ENABLE_OPT,CONFIG_USB)
+endef
+
+$(eval $(kernel-module))
+$(eval $(generic-package))
-- 
2.34.1

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

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

* [Buildroot] [PATCH 1/1] package/rtl8192eu: new package
@ 2022-10-14 20:09 James Hilliard
  2022-10-30 20:35 ` Thomas Petazzoni via buildroot
  0 siblings, 1 reply; 3+ messages in thread
From: James Hilliard @ 2022-10-14 20:09 UTC (permalink / raw)
  To: buildroot; +Cc: James Hilliard, Thomas Petazzoni

Signed-off-by: James Hilliard <james.hilliard1@gmail.com>
---
Changes v1 -> v2:
  - update to latest 5.11.2.1 version fixing issues on latest kernel
---
 DEVELOPERS                       |  1 +
 package/Config.in                |  1 +
 package/rtl8192eu/Config.in      | 13 +++++++++++++
 package/rtl8192eu/rtl8192eu.hash |  2 ++
 package/rtl8192eu/rtl8192eu.mk   | 23 +++++++++++++++++++++++
 5 files changed, 40 insertions(+)
 create mode 100644 package/rtl8192eu/Config.in
 create mode 100644 package/rtl8192eu/rtl8192eu.hash
 create mode 100644 package/rtl8192eu/rtl8192eu.mk

diff --git a/DEVELOPERS b/DEVELOPERS
index bfde353c8a..0a3ecee2eb 100644
--- a/DEVELOPERS
+++ b/DEVELOPERS
@@ -1404,6 +1404,7 @@ F:	package/python-typing-inspect/
 F:	package/python-weasyprint/
 F:	package/python-yarl/
 F:	package/python-zopfli/
+F:	package/rtl8192eu/
 F:	package/serd/
 F:	package/sord/
 F:	package/sratom/
diff --git a/package/Config.in b/package/Config.in
index e3a34d6e97..e2ea999d60 100644
--- a/package/Config.in
+++ b/package/Config.in
@@ -576,6 +576,7 @@ endmenu
 	source "package/rtl8188eu/Config.in"
 	source "package/rtl8189es/Config.in"
 	source "package/rtl8189fs/Config.in"
+	source "package/rtl8192eu/Config.in"
 	source "package/rtl8723bu/Config.in"
 	source "package/rtl8723ds/Config.in"
 	source "package/rtl8812au-aircrack-ng/Config.in"
diff --git a/package/rtl8192eu/Config.in b/package/rtl8192eu/Config.in
new file mode 100644
index 0000000000..4d71b711c3
--- /dev/null
+++ b/package/rtl8192eu/Config.in
@@ -0,0 +1,13 @@
+config BR2_PACKAGE_RTL8192EU
+	bool "rtl8192eu"
+	depends on BR2_LINUX_KERNEL
+	help
+	  A standalone driver for the RTL8192EU USB Wi-Fi adapter.
+
+	  Make sure your target kernel has the CONFIG_WIRELESS_EXT
+	  config option enabled.
+
+	  https://github.com/clnhub/rtl8192eu-linux
+
+comment "rtl8192eu needs a Linux kernel to be built"
+	depends on !BR2_LINUX_KERNEL
diff --git a/package/rtl8192eu/rtl8192eu.hash b/package/rtl8192eu/rtl8192eu.hash
new file mode 100644
index 0000000000..f616def194
--- /dev/null
+++ b/package/rtl8192eu/rtl8192eu.hash
@@ -0,0 +1,2 @@
+# Locally computed
+sha256  75b523ff1cda54d7cd8734a043b2d145231ab81fcc13d3edcd80e00d59201409  rtl8192eu-1e15b6d451731bc4d3ffd587194dc4bd0f286ac0.tar.gz
diff --git a/package/rtl8192eu/rtl8192eu.mk b/package/rtl8192eu/rtl8192eu.mk
new file mode 100644
index 0000000000..0e8ffea5cb
--- /dev/null
+++ b/package/rtl8192eu/rtl8192eu.mk
@@ -0,0 +1,23 @@
+################################################################################
+#
+# rtl8192eu
+#
+################################################################################
+
+RTL8192EU_VERSION = 1e15b6d451731bc4d3ffd587194dc4bd0f286ac0
+RTL8192EU_SITE = $(call github,clnhub,rtl8192eu-linux,$(RTL8192EU_VERSION))
+RTL8192EU_LICENSE = GPL-2.0
+RTL8192EU_MODULE_MAKE_OPTS = \
+	CONFIG_RTL8192EU=m \
+	USER_EXTRA_CFLAGS="-Wno-error"
+
+define RTL8192EU_LINUX_CONFIG_FIXUPS
+	$(call KCONFIG_ENABLE_OPT,CONFIG_NET)
+	$(call KCONFIG_ENABLE_OPT,CONFIG_WIRELESS)
+	$(call KCONFIG_ENABLE_OPT,CONFIG_CFG80211)
+	$(call KCONFIG_ENABLE_OPT,CONFIG_USB_SUPPORT)
+	$(call KCONFIG_ENABLE_OPT,CONFIG_USB)
+endef
+
+$(eval $(kernel-module))
+$(eval $(generic-package))
-- 
2.34.1

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

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

* Re: [Buildroot] [PATCH 1/1] package/rtl8192eu: new package
  2022-10-14 20:09 [Buildroot] [PATCH 1/1] package/rtl8192eu: new package James Hilliard
@ 2022-10-30 20:35 ` Thomas Petazzoni via buildroot
  0 siblings, 0 replies; 3+ messages in thread
From: Thomas Petazzoni via buildroot @ 2022-10-30 20:35 UTC (permalink / raw)
  To: James Hilliard; +Cc: buildroot

On Fri, 14 Oct 2022 14:09:18 -0600
James Hilliard <james.hilliard1@gmail.com> wrote:

> Signed-off-by: James Hilliard <james.hilliard1@gmail.com>
> ---
> Changes v1 -> v2:
>   - update to latest 5.11.2.1 version fixing issues on latest kernel
> ---
>  DEVELOPERS                       |  1 +
>  package/Config.in                |  1 +
>  package/rtl8192eu/Config.in      | 13 +++++++++++++
>  package/rtl8192eu/rtl8192eu.hash |  2 ++
>  package/rtl8192eu/rtl8192eu.mk   | 23 +++++++++++++++++++++++
>  5 files changed, 40 insertions(+)
>  create mode 100644 package/rtl8192eu/Config.in
>  create mode 100644 package/rtl8192eu/rtl8192eu.hash
>  create mode 100644 package/rtl8192eu/rtl8192eu.mk

Applied to master, thanks.

Thomas
-- 
Thomas Petazzoni, CTO, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

end of thread, other threads:[~2022-10-30 20:35 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-10-14 20:09 [Buildroot] [PATCH 1/1] package/rtl8192eu: new package James Hilliard
2022-10-30 20:35 ` Thomas Petazzoni via buildroot
  -- strict thread matches above, loose matches on Subject: below --
2022-10-14 15:06 James Hilliard

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox