Skip to content

Commit 7633417

Browse files
authored
Merge pull request #1261 from c-po/kernel-firmware-fix
Kernel: T9170: support compressed modules when searching module firmware
2 parents 0f03d0a + f7f5b17 commit 7633417

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

scripts/package-build/linux-kernel/build-linux-firmware.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ if [ ! -d ${LINUX_FIRMWARE} ]; then
2020
fi
2121

2222
# Retrieve firmware blobs from source files
23-
FW_FILES=$(find ${KERNEL_DIR}/debian/linux-image-${KERNEL_VERSION}${KERNEL_SUFFIX}/lib/modules/${KERNEL_VERSION}${KERNEL_SUFFIX}/kernel/drivers/net -name *.ko | xargs modinfo | grep "^firmware:" | awk '{print $2}')
23+
FW_FILES=$(find ${KERNEL_DIR}/debian/linux-image-${KERNEL_VERSION}${KERNEL_SUFFIX}/lib/modules/${KERNEL_VERSION}${KERNEL_SUFFIX}/kernel/drivers/net -name *.ko* | xargs modinfo | grep "^firmware:" | awk '{print $2}')
2424

2525
# Debian package will use the descriptive Git commit as version
2626
GIT_COMMIT=$(cd ${CWD}/${LINUX_FIRMWARE}; git describe --always)

0 commit comments

Comments
 (0)