package/rtl8821cu: fix build failure due to mixed endianness

Commit cde69c668d bumped version where
Makefile changed CONFIG_PLATFORM_GENERIC to CONFIG_PLATFORM_AUTODETECT.
This way overriding the default platform doesn't work anymore resulting in
wrong CFLAGS including endianness macro and leading to a build failure.
So let's rename CONFIG_PLATFORM_GENERIC to CONFIG_PLATFORM_AUTODETECT to
fix.

Fixes:
http://autobuild.buildroot.net/results/2a8432646926b3b69383d204673c4113aae9de12

Signed-off-by: Giulio Benetti <giulio.benetti@benettiengineering.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
This commit is contained in:
Giulio Benetti 2023-03-11 19:43:46 +01:00 committed by Peter Korsgaard
parent 243c76cfa6
commit 5ca0250eb9

View File

@ -24,7 +24,7 @@ RTL8821CU_USER_EXTRA_CFLAGS = \
-Wno-error
RTL8821CU_MODULE_MAKE_OPTS = \
CONFIG_PLATFORM_GENERIC=n \
CONFIG_PLATFORM_AUTODETECT=n \
CONFIG_RTL8821CU=m \
KVER=$(LINUX_VERSION_PROBED) \
USER_EXTRA_CFLAGS="$(RTL8821CU_USER_EXTRA_CFLAGS)"