diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2018-06-21 06:11:28 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2018-06-21 06:11:28 +0000 |
commit | 3342db32fa783c69188057ac182538fd4277979b (patch) | |
tree | 2d712d2008c506c5a8dd2f428adc4c36ffeb63fa /update-kernel.in | |
parent | 96b29f5dd64111b9d063a327e24247ced02c1427 (diff) | |
download | alpine-conf-3342db32fa783c69188057ac182538fd4277979b.zip |
update-kernel: fix install of firware
prevent to exit with error due to set -e, if last firmware does not have
a *.txt file.
Diffstat (limited to 'update-kernel.in')
-rw-r--r-- | update-kernel.in | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/update-kernel.in b/update-kernel.in index aaf1cff..4267042 100644 --- a/update-kernel.in +++ b/update-kernel.in @@ -252,8 +252,9 @@ find $ROOT/lib/modules -type f -name "*.ko" | xargs modinfo -F firmware | sort - if [ -e "$ROOT/lib/firmware/$FW" ]; then install -pD $ROOT/lib/firmware/$FW $MODLOOP/modules/firmware/$FW # include nvram files if firmware is needed. - [ -e "$ROOT/lib/firmware/${FW%.*}.txt" ] && install -pD \ - $ROOT/lib/firmware/${FW%.*}.txt $MODLOOP/modules/firmware/${FW%.*}.txt + if [ -e "$ROOT/lib/firmware/${FW%.*}.txt" ]; then + install -pD $ROOT/lib/firmware/${FW%.*}.txt $MODLOOP/modules/firmware/${FW%.*}.txt + fi fi done |