[5/5] linux-firmware: Hardlink any identical firmware files
Commit Message
Some files are identical which is why we don't need to ship them mutiple
times. This will save about 13 MiB of disk space and presumably the same
on the compressed distro image.
Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
---
lfs/linux-firmware | 3 +++
1 file changed, 3 insertions(+)
@@ -78,5 +78,8 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
mv "$${file}" "$${file// /_}" || exit 1; \
done < <(find /lib/firmware -name "* *")
+ # Hardlink any identical files
+ hardlink -c -vv /lib/firmware
+
@rm -rf $(DIR_APP)
@$(POSTBUILD)