From d5a7d6655f2fa653c8bc0f316613f37f58a9c2cc Mon Sep 17 00:00:00 2001 From: Alexandre Ghiti Date: Mon, 5 Sep 2022 11:16:26 +0200 Subject: [PATCH] riscv: Install Wifi driver by default for the LicheeRV Signed-off-by: Alexandre Ghiti --- live-build/auto/config | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/live-build/auto/config b/live-build/auto/config index e3593824..b494f169 100755 --- a/live-build/auto/config +++ b/live-build/auto/config @@ -1116,6 +1116,11 @@ case "$ARCH${SUBARCH:++$SUBARCH}" in BINARY_REMOVE_LINUX=false ;; riscv*+*) + if [ "${SUBARCH:-}" = "licheerv" ]; then + # The wifi driver of the licheerv is an out-of-tree driver so install + # the corresponding dkms driver. + add_package install licheerv-rtl8723ds-dkms + fi # We'll add wpasupplicant to the seeds when we work on RISC-V seeds. add_package install wpasupplicant ;;