]> git.ipfire.org Git - ipfire-2.x.git/blobdiff - lfs/linux-firmware
Revert "linux-firmware: Compress firmware on disk"
[ipfire-2.x.git] / lfs / linux-firmware
index 33a53810e8629ea596285b84a7cc2bc835c440ff..f08dffb628529b3a1de0dbd17593b98b27f6f2c1 100644 (file)
@@ -1,7 +1,7 @@
 ###############################################################################
 #                                                                             #
 # IPFire.org - A linux based firewall                                         #
-# Copyright (C) 2007-2011  IPFire Team  <info@ipfire.org>                     #
+# Copyright (C) 2007-2022  IPFire Team  <info@ipfire.org>                     #
 #                                                                             #
 # This program is free software: you can redistribute it and/or modify        #
 # it under the terms of the GNU General Public License as published by        #
@@ -24,7 +24,7 @@
 
 include Config
 
-VER        = 236367d
+VER        = 20211216
 
 THISAPP    = linux-firmware-$(VER)
 DL_FILE    = $(THISAPP).tar.gz
@@ -40,7 +40,7 @@ objects = $(DL_FILE)
 
 $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
 
-$(DL_FILE)_MD5 = 35d2ecf9b7d0b4d339fa0d4cc0736f6f
+$(DL_FILE)_MD5 = eadc09197f2e22b527cbd0b5f4a59ebd
 
 install : $(TARGET)
 
@@ -69,8 +69,17 @@ $(subst %,%_MD5,$(objects)) :
 
 $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
        @$(PREBUILD)
-       @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
+       @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar axf $(DIR_DL)/$(DL_FILE)
        mkdir -p /lib/firmware
-       cd $(DIR_APP) && cp -vr * /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
+
        @rm -rf $(DIR_APP)
        @$(POSTBUILD)