linux-firmware: Drop hack to remove spaces in filenames

Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
Reviewed-by: Peter Müller <peter.mueller@ipfire.org>
This commit is contained in:
Michael Tremer
2023-01-18 11:36:27 +00:00
committed by Peter Müller
parent 761d036622
commit f5c45515b5
2 changed files with 7 additions and 12 deletions

View File

@@ -73,11 +73,6 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
mkdir -p /lib/firmware
cd $(DIR_APP) && make install
# Remove any spaces in filenames
while read -r file; do \
mv "$${file}" "$${file// /_}" || exit 1; \
done < <(find /lib/firmware -name "* *")
# Hardlink any identical files
hardlink -c -vv /lib/firmware