From dcc91315765071b10dbf18ad6c8dfb96c103c947 Mon Sep 17 00:00:00 2001 From: Ricardo Martincoski Date: Sun, 14 Jan 2018 21:41:20 -0200 Subject: [PATCH] linux-firmware: fix install for Chelsio T[45] It's broken for the last 3 version bumps, since 1c9846ecc9 "linux-firmware: Bump to the latest version" Fix it by updating the name of the file to install. Do not use * since it would install also old versions that would take 1MB extra space in the target. A comment to remember to update the file name when bumping the package is not needed because a previous patch in the series makes the build to fail for missing file. Signed-off-by: Ricardo Martincoski Cc: Fabio Estevam Cc: Peter Korsgaard Cc: Peter Seiderer Cc: Yann E. MORIN Cc: Yegor Yefremov Reviewed-by: "Yann E. MORIN" Signed-off-by: Peter Korsgaard --- package/linux-firmware/linux-firmware.mk | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/package/linux-firmware/linux-firmware.mk b/package/linux-firmware/linux-firmware.mk index 03704d80b2..45483a31b8 100644 --- a/package/linux-firmware/linux-firmware.mk +++ b/package/linux-firmware/linux-firmware.mk @@ -337,14 +337,14 @@ LINUX_FIRMWARE_FILES += bnx2x/* endif ifeq ($(BR2_PACKAGE_LINUX_FIRMWARE_CXGB4_T4),y) -# cxgb4/t4fw.bin is a symlink to cxgb4/t4fw-1.16.26.0.bin -LINUX_FIRMWARE_FILES += cxgb4/t4fw-1.16.26.0.bin cxgb4/t4fw.bin +# cxgb4/t4fw.bin is a symlink to cxgb4/t4fw-1.16.63.0.bin +LINUX_FIRMWARE_FILES += cxgb4/t4fw-1.16.63.0.bin cxgb4/t4fw.bin LINUX_FIRMWARE_ALL_LICENSE_FILES += LICENCE.chelsio_firmware endif ifeq ($(BR2_PACKAGE_LINUX_FIRMWARE_CXGB4_T5),y) -# cxgb4/t5fw.bin is a symlink to cxgb4/t5fw-1.16.26.0.bin -LINUX_FIRMWARE_FILES += cxgb4/t5fw-1.16.26.0.bin cxgb4/t5fw.bin +# cxgb4/t5fw.bin is a symlink to cxgb4/t5fw-1.16.63.0.bin +LINUX_FIRMWARE_FILES += cxgb4/t5fw-1.16.63.0.bin cxgb4/t5fw.bin LINUX_FIRMWARE_ALL_LICENSE_FILES += LICENCE.chelsio_firmware endif -- 2.30.2