X-Git-Url: http://git.ipfire.org/?a=blobdiff_plain;f=lfs%2Flinux-firmware;h=9f7152573b52030cde99b46bc3a57766a3b7643d;hb=504e72e17317e9b153d5dc6c0198c6df7c5f750a;hp=6a7f956527ef330258aa94ece94bd75ca58b439d;hpb=e056ca737a5d9069df87665ac9486784d2bf07d5;p=ipfire-2.x.git diff --git a/lfs/linux-firmware b/lfs/linux-firmware index 6a7f956527..9f7152573b 100644 --- a/lfs/linux-firmware +++ b/lfs/linux-firmware @@ -1,7 +1,7 @@ ############################################################################### # # # IPFire.org - A linux based firewall # -# Copyright (C) 2007-2011 IPFire Team # +# Copyright (C) 2007-2019 IPFire Team # # # # 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,10 +24,10 @@ include Config -VER = 20110518 +VER = 20200519 THISAPP = linux-firmware-$(VER) -DL_FILE = $(THISAPP).tar.bz2 +DL_FILE = $(THISAPP).tar.xz DL_FROM = $(URL_IPFIRE) DIR_APP = $(DIR_SRC)/$(THISAPP) TARGET = $(DIR_INFO)/$(THISAPP) @@ -40,7 +40,7 @@ objects = $(DL_FILE) $(DL_FILE) = $(DL_FROM)/$(DL_FILE) -$(DL_FILE)_MD5 = 3b215b5ec9a5e8784dd971c039e9b948 +$(DL_FILE)_MD5 = 7ea1c59732569a01ec8b0e6a412a314c install : $(TARGET) @@ -69,8 +69,13 @@ $(subst %,%_MD5,$(objects)) : $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects)) @$(PREBUILD) - @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar jxf $(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 Space from Filenames + mv "/lib/firmware/brcm/brcmfmac43430a0-sdio.ONDA-V80 PLUS.txt" \ + "/lib/firmware/brcm/brcmfmac43430a0-sdio.ONDA-V80_PLUS.txt" + mv "/lib/firmware/brcm/brcmfmac43455-sdio.MINIX-NEO Z83-4.txt" \ + "/lib/firmware/brcm/brcmfmac43455-sdio.MINIX-NEO_Z83-4.txt" @rm -rf $(DIR_APP) @$(POSTBUILD)