From 68380608605067edb53d0a1aba413c38948a965d Mon Sep 17 00:00:00 2001 From: Alexandre Ghiti Date: Wed, 12 Oct 2022 14:14:29 +0200 Subject: [PATCH] riscv: Install dkms by default on the LicheeRV board So that people without network access can download the package and install it using a usb drive for example. Signed-off-by: Alexandre Ghiti --- live-build/auto/config | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/live-build/auto/config b/live-build/auto/config index 350f9fd2..1d4432e7 100755 --- a/live-build/auto/config +++ b/live-build/auto/config @@ -1108,6 +1108,12 @@ 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 packaged + # in universe for now, so to ease its installation for those without + # network, install its dependencies. + add_package install dkms + fi # We'll add wpasupplicant to the seeds when we work on RISC-V seeds. add_package install wpasupplicant ;;