You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
1022 B
29 lines
1022 B
#!/bin/bash
|
|
|
|
set -e # exit on error
|
|
set -o pipefail # exit on pipeline error
|
|
set -u # treat unset variable as error
|
|
|
|
SCRIPT_DIR="$(dirname "$(readlink -f "$0")")"
|
|
|
|
echo "firmware-ipw2x00 firmware-ipw2x00/license/accepted boolean true" | debconf-set-selections
|
|
echo "b43-fwcutter b43-fwcutter/install-unconditional boolean true" | debconf-set-selections
|
|
|
|
$APT_CMD update >>$OUTPUT 2>&1
|
|
|
|
# install packages
|
|
if [ $DISTRIBUTION_TYPE = "ubuntu" ]; then
|
|
if [ $DISTRIBUTION = "focal" ] || [ $DISTRIBUTION = "bionic" ]; then
|
|
$APT_CMD install $APT_OPTIONS \
|
|
linux-firmware firmware-b43-installer firmware-ath9k-htc >>$OUTPUT 2>&1
|
|
else
|
|
$APT_CMD install $APT_OPTIONS \
|
|
#linux-firmware >>$OUTPUT 2>&1 #firmware-b43-installer
|
|
linux-image-generic
|
|
fi
|
|
else
|
|
if [ -f $SCRIPT_DIR/$PACKAGE_VARIANT.list ]; then
|
|
$APT_CMD install $APT_OPTIONS \
|
|
$(grep -vE "^\s*#" $SCRIPT_DIR/$PACKAGE_VARIANT.list | tr "\n" " ") >>$OUTPUT 2>&1
|
|
fi
|
|
fi
|
|
|