windvn/mods/firmware-proprietary/modscript

13 lines
467 B
Plaintext
Raw Normal View History

2022-08-04 20:56:02 +00:00
#!/bin/bash
2022-05-20 04:57:08 +00:00
function sfp {
packages=""
while read p; do
IFS=" " read -ra packageinfo <<< "$p"
if [[ "${packageinfo[0]}" == *firmware* ]]; then
packages="$packages ${packageinfo[0]}"
fi
done <<<$(apt-cache search "$1")
2022-08-04 20:56:02 +00:00
echo "${packages//"firmware-ipw2x00"/""}"
2022-05-20 04:57:08 +00:00
}
2022-08-04 20:56:02 +00:00
export OPUS_PACKAGES="$OPUS_PACKAGES firmware-linux firmware-misc-nonfree $(sfp wireless) $(sfp wifi) $(sfp net)"
export OPUS_PACKAGES_INTERACTIVE="$OPUS_PACKAGES_INTERACTIVE firmware-ipw2x00"