Dear all,
I´m just a hobbyist, not a pro. The HP Stream 11 is what I need for
my purpose, apart from not working internal WLAN: REALTEK 8822CE...
I found out that the FreeBSD folks have a driver for REALTEKs
devices, see below, rtw88 as of FreeBSD 13.2, rtw89 nowadays.
Now may I ask you:
Is it possible to use that driver for my OpenBSD 7.4. install?
Is there a chance to see support for REALTEKs 88xx series in a
future OpenBSD-version?
Thank you so much for your advice, yours,
Bernd
dmesg: "REALTEK 8822CE" rev 0X00 at pci1 dev 0 function 0 not configured
====================================
>From FreeBSD 13.2.:
====================================
path: root/sys/modules/rtw88/Makefile
blob: 67564332fa7ac42b472fbf1e708742656288828f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
DEVRTW88DIR= ${SRCTOP}/sys/contrib/dev/rtw88
.PATH: ${DEVRTW88DIR}
WITH_CONFIG_PM= 0
KMOD= if_rtw88
SRCS= main.c
SRCS+= bf.c coex.c debug.c efuse.c fw.c mac.c mac80211.c
SRCS+= pci.c phy.c ps.c regd.c
SRCS+= rtw8723d.c rtw8723d_table.c rtw8723de.c # 11n
SRCS+= rtw8821c.c rtw8821c_table.c rtw8821ce.c # 11ac
SRCS+= rtw8822b.c rtw8822b_table.c rtw8822be.c # 11ac
SRCS+= rtw8822c.c rtw8822c_table.c rtw8822ce.c # 11ac
SRCS+= rx.c sar.c sec.c tx.c util.c
.if defined(WITH_CONFIG_PM) && ${WITH_CONFIG_PM} > 0
SRCS+= wow.c
CFLAGS+= -DCONFIG_PM=${WITH_CONFIG_PM}
.endif
# Other
SRCS+= ${LINUXKPI_GENSRCS}
SRCS+= opt_wlan.h opt_inet6.h opt_inet.h
CFLAGS+= -DKBUILD_MODNAME='"rtw88"'
CFLAGS+= -I${DEVRTW88DIR}
CFLAGS+= ${LINUXKPI_INCLUDES}
CFLAGS+= -DCONFIG_RTW88_DEBUG
#CFLAGS+= -DCONFIG_RTW88_DEBUGFS
.include <bsd.kmod.mk>
===================================