I can't compile the patched rtl88xxau drivers on my orangepi board #206
Unanswered
1113870631
asked this question in
Questions
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
i git clone the Patched rtl88xxau driver on my orangepi board ,I can't compile it successfully .
there are the errors
/root/rtl8812au/core/rtw_xmit.c:4630:20: error: ��‘IEEE80211_RADIOTAP_MCS_HAVE_STBC��’ undeclared (first use in this function); did ? if (mcs_have & IEEE80211_RADIOTAP_MCS_HAVE_STBC) { ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ IEEE80211_RADIOTAP_MCS_HAVE_BW /root/rtl8812au/core/rtw_xmit.c:4630:20: note: each undeclared identifier is reported only once for each function it appears in /root/rtl8812au/core/rtw_xmit.c:4631:40: error: ��‘IEEE80211_RADIOTAP_MCS_STBC_MASK��’ undeclared (first use in this function); did ? u8 stbc = (iterator.this_arg[1] & IEEE80211_RADIOTAP_MCS_STBC_MASK) >> IEEE80211_RADIOTAP_MCS_STBC_SHIFT; ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ IEEE80211_RADIOTAP_MCS_BW_MASK /root/rtl8812au/core/rtw_xmit.c:4631:77: error: ��‘IEEE80211_RADIOTAP_MCS_STBC_SHIFT��’ undeclared (first use in this function); did? stbc = (iterator.this_arg[1] & IEEE80211_RADIOTAP_MCS_STBC_MASK) >> IEEE80211_RADIOTAP_MCS_STBC_SHIFT; ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ IEEE80211_RADIOTAP_MCS_STBC_MASK /root/rtl8812au/core/rtw_xmit.c:4638:9: error: ��‘IEEE80211_RADIOTAP_VHT��’ undeclared (first use in this function); did you mean ��? case IEEE80211_RADIOTAP_VHT: { ^~~~~~~~~~~~~~~~~~~~~~ IEEE80211_RADIOTAP_EXT /root/rtl8812au/core/rtw_xmit.c:4654:18: error: ��‘IEEE80211_RADIOTAP_VHT_KNOWN_STBC��’ undeclared (first use in this function); did? if ((known & IEEE80211_RADIOTAP_VHT_KNOWN_STBC) && (flags & IEEE80211_RADIOTAP_VHT_FLAG_STBC)) ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ IEEE80211_RADIOTAP_MCS_HAVE_STBC /root/rtl8812au/core/rtw_xmit.c:4654:65: error: ��‘IEEE80211_RADIOTAP_VHT_FLAG_STBC��’ undeclared (first use in this function); did ? if ((known & IEEE80211_RADIOTAP_VHT_KNOWN_STBC) && (flags & IEEE80211_RADIOTAP_VHT_FLAG_STBC)) ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ IEEE80211_RADIOTAP_VHT_KNOWN_STBC /root/rtl8812au/core/rtw_xmit.c:4657:18: error: ��‘IEEE80211_RADIOTAP_VHT_KNOWN_GI��’ undeclared (first use in this function); did y? if ((known & IEEE80211_RADIOTAP_VHT_KNOWN_GI) && (flags & IEEE80211_RADIOTAP_VHT_FLAG_SGI)) ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ IEEE80211_RADIOTAP_VHT_KNOWN_STBC CC [M] /root/rtl8812au/core/rtw_odm.o /root/rtl8812au/core/rtw_xmit.c:4657:63: error: ��‘IEEE80211_RADIOTAP_VHT_FLAG_SGI��’ undeclared (first use in this function); did y? if ((known & IEEE80211_RADIOTAP_VHT_KNOWN_GI) && (flags & IEEE80211_RADIOTAP_VHT_FLAG_SGI)) ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ IEEE80211_RADIOTAP_VHT_FLAG_STBC /root/rtl8812au/core/rtw_xmit.c:4660:17: error: ��‘IEEE80211_RADIOTAP_VHT_KNOWN_BANDWIDTH��’ undeclared (first use in this function)? if (known & IEEE80211_RADIOTAP_VHT_KNOWN_BANDWIDTH) { ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ IEEE80211_RADIOTAP_VHT_KNOWN_GI CC [M] /root/rtl8812au/core/rtw_rm.o /root/rtl8812au/core/rtw_xmit.c:4684:33: error: ��‘IEEE80211_RADIOTAP_CODING_LDPC_USER0��’ undeclared (first use in this function); ? if (iterator.this_arg[8] & IEEE80211_RADIOTAP_CODING_LDPC_USER0) ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ IEEE80211_RADIOTAP_MCS_FEC_LDPC scripts/Makefile.build:307: recipe for target '/root/rtl8812au/core/rtw_xmit.o' failed make[2]: *** [/root/rtl8812au/core/rtw_xmit.o] Error 1 make[2]: *** Waiting for unfinished jobs.... Makefile:1368: recipe for target '_module_/root/rtl8812au' failed make[1]: *** [_module_/root/rtl8812au] Error 2 make[1]: Leaving directory '/usr/src/linux-headers-3.4.113-sun8i' Makefile:2244: recipe for target 'modules' failed
it is seemed that Some variables are not defined,Is the wireless configuration in my kernel not enabled,or my kernel need some patchs
Beta Was this translation helpful? Give feedback.
All reactions