From 214e3e09b3381e44bf5d9c1dcd19c4b1b923a796 Mon Sep 17 00:00:00 2001 From: "Bjoern A. Zeeb" Date: Tue, 15 Aug 2023 20:29:03 +0000 Subject: [PATCH] fwget: fix installing multiple firmware files Remove quotes around the list of packages to install. Otherwise pkg is only fed one argument which results in a non-working solution: pkg: No packages available to install matching 'wifi-firmware-ath10k-kmod wifi-firmware-mt76-kmod wifi-firmware-ath11k-kmod' have been found in the repositories MFC after: 10 days Reviewed by: manu Differential Revision: https://reviews.freebsd.org/D41474 --- usr.sbin/fwget/fwget.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/usr.sbin/fwget/fwget.sh b/usr.sbin/fwget/fwget.sh index 90bc23b07077..154fb7dc92e1 100644 --- a/usr.sbin/fwget/fwget.sh +++ b/usr.sbin/fwget/fwget.sh @@ -122,4 +122,4 @@ if [ "${DRY_RUN}" = "y" ]; then exit 0 fi -pkg install -qy "${packages}" +pkg install -qy ${packages}