Package Details: 8188eu-aircrack-dkms-git 5.3.9.r196.3fae723-3

Git Clone URL: https://aur.archlinux.org/8188eu-aircrack-dkms-git.git (read-only, click to copy)
Package Base: 8188eu-aircrack-dkms-git
Description: Realtek RTL8188EUS and RTL8188ETV Wi-Fi driver with monitor mode & frame injection support
Upstream URL: https://github.com/aircrack-ng/rtl8188eus
Keywords: 8188ETV 8188EU 8188EUS aircrack-ng dkms driver reaver wireless
Licenses: GPL
Conflicts: 8188eu-dkms, 8188eu-dkms-git
Provides: 8188eu-dkms
Submitter: drygdryg
Maintainer: drygdryg
Last Packager: drygdryg
Votes: 7
Popularity: 0.000001
First Submitted: 2020-10-20 16:08 (UTC)
Last Updated: 2024-04-05 12:02 (UTC)

Latest Comments

« First ‹ Previous 1 2

vova7890 commented on 2022-07-18 16:02 (UTC)

Might be better replace extern __inline to static, because only __inline doesn't work with 5.17 kernel

vova7890 commented on 2022-07-07 23:17 (UTC) (edited on 2022-07-07 23:18 (UTC) by vova7890)

Please add this patch:


diff --git a/include/ieee80211.h b/include/ieee80211.h
index 5ba92b5..a5f1235 100644
--- a/include/ieee80211.h
+++ b/include/ieee80211.h
@@ -1529,18 +1529,18 @@ enum ieee80211_state {
    (((Addr[2]) & 0xff) == 0xff) && (((Addr[3]) & 0xff) == 0xff) && (((Addr[4]) & 0xff) == 0xff) && \
                     (((Addr[5]) & 0xff) == 0xff))
 #else
-extern __inline int is_multicast_mac_addr(const u8 *addr)
+__inline int is_multicast_mac_addr(const u8 *addr)
 {
    return (addr[0] != 0xff) && (0x01 & addr[0]);
 }

-extern __inline int is_broadcast_mac_addr(const u8 *addr)
+__inline int is_broadcast_mac_addr(const u8 *addr)
 {
    return ((addr[0] == 0xff) && (addr[1] == 0xff) && (addr[2] == 0xff) &&   \
        (addr[3] == 0xff) && (addr[4] == 0xff) && (addr[5] == 0xff));
 }

-extern __inline int is_zero_mac_addr(const u8 *addr)
+__inline int is_zero_mac_addr(const u8 *addr)
 {
    return ((addr[0] == 0x00) && (addr[1] == 0x00) && (addr[2] == 0x00) &&   \
        (addr[3] == 0x00) && (addr[4] == 0x00) && (addr[5] == 0x00));

adityarnsamal commented on 2022-06-29 09:25 (UTC) (edited on 2022-06-29 09:34 (UTC) by adityarnsamal)

Does not Work on 5.18.7-arch1-1 kernel

LuciRose431 commented on 2022-04-01 15:56 (UTC) (edited on 2022-04-01 15:56 (UTC) by LuciRose431)

Please Add patch for 5.17 kernel source: https://patch-diff.githubusercontent.com/raw/aircrack-ng/rtl8188eus/pull/174.patch Apply patch:

prepare() {
        patch -p1 -d $srcdir/8188eu/ < 174.patch
}

LuciRose431 commented on 2022-04-01 15:19 (UTC)

@quicken2k I have manually load module modprobe r8188eu

quicken2k commented on 2022-03-30 23:53 (UTC)

Has anyone got this to work with 5.15 or 5.17 Kernel?

DeNatural commented on 2022-01-10 10:28 (UTC) (edited on 2022-01-10 10:29 (UTC) by DeNatural)

this is the only driver that that supports without any issues TP-Link TL-WN722N v2/v3 [Realtek RTL8188EUS]

the driver that comes with archlinux is very unstable and have huge packet loss when under strain like torrenting

drygdryg commented on 2021-11-16 06:21 (UTC)

Waiting for the pull request to be accepted https://github.com/aircrack-ng/rtl8188eus/pull/146 to support kernel 5.15

rockjock commented on 2021-11-15 17:13 (UTC)

Does not work with the latest 5.15.2 kernel