Skip to content

Commit 75d0a7e

Browse files
committed
tools/create-image.sh: add linux-firmware package by default
Multiple usb drivers (among others) are missing firmware thus stopping short any probe() attempts. A couple examples are: 1) comedi usb drivers: usbdux, usbduxfast etc. 2) drivers/media/usb/{s2255,go7007} and a few others at the very least. Add the required module 'firmware-linux' (carries both free and nonfree batches of built firmware) to the list of default packages. This is not an ideal solution considering the goal of a *minimal* distribution. Still, this will increase code coverage.
1 parent b5ed9b2 commit 75d0a7e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/create-image.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
set -eux
88

99
# Create a minimal Debian distribution in a directory.
10-
PREINSTALL_PKGS=openssh-server,curl,tar,gcc,libc6-dev,time,strace,sudo,less,psmisc,selinux-utils,policycoreutils,checkpolicy,selinux-policy-default,firmware-atheros,debian-ports-archive-keyring
10+
PREINSTALL_PKGS=openssh-server,curl,tar,gcc,libc6-dev,time,strace,sudo,less,psmisc,selinux-utils,policycoreutils,checkpolicy,selinux-policy-default,firmware-atheros,firmware-linux,debian-ports-archive-keyring
1111

1212
# If ADD_PACKAGE is not defined as an external environment variable, use our default packages
1313
if [ -z ${ADD_PACKAGE+x} ]; then

0 commit comments

Comments
 (0)