From: Antonin Godard Date: Thu, 24 Apr 2025 12:45:59 +0000 (+0200) Subject: linux-firmware: fix zst install suffix X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=cc9d972eba1f47fba206665260690ad8de99679f;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git linux-firmware: fix zst install suffix The linux-firmware Makefile defines an 'install-zst' rule, but currently fw_compr_suffix() return the '-zstd' suffix when FIRMWARE_COMPRESSION is set to 'zstd' which produces: make: *** No rule to make target 'install-zstd'. Return '-zst' instead to properly run 'make install-zst'. Signed-off-by: Antonin Godard Signed-off-by: Richard Purdie --- diff --git a/meta/recipes-kernel/linux-firmware/linux-firmware_20250410.bb b/meta/recipes-kernel/linux-firmware/linux-firmware_20250410.bb index f12bb2c6d37..5dd178c03e3 100644 --- a/meta/recipes-kernel/linux-firmware/linux-firmware_20250410.bb +++ b/meta/recipes-kernel/linux-firmware/linux-firmware_20250410.bb @@ -269,6 +269,8 @@ def fw_compr_suffix(d): compr = d.getVar('FIRMWARE_COMPRESSION') if compr == '': return '' + if compr == 'zstd': + compr = 'zst' return '-' + compr do_compile() {