linux-firmware: update to 20191022

Signed-off-by: Arne Fitzenreiter <arne_f@ipfire.org>
This commit is contained in:
Arne Fitzenreiter
2019-12-05 12:44:45 +01:00
parent 7ff42686ec
commit 0894092e2c
4 changed files with 715 additions and 51 deletions

View File

@@ -1,7 +1,7 @@
###############################################################################
# #
# IPFire.org - A linux based firewall #
# Copyright (C) 2007-2018 IPFire Team <info@ipfire.org> #
# Copyright (C) 2007-2019 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 #
@@ -77,9 +77,9 @@ else
endif
# /boot: 128MB - OFFSET
# / : 1200 MB
# / : 1300 MB
S_BOOT := $(shell echo $$(( 262144 - $(S_OFFSET) )))
S_ROOT := 2476032
S_ROOT := 2672640
ifeq "$(EFI)" "1"
S_EFI = 65536 # 32 MB

View File

@@ -1,7 +1,7 @@
###############################################################################
# #
# IPFire.org - A linux based firewall #
# Copyright (C) 2007-2018 IPFire Team <info@ipfire.org> #
# Copyright (C) 2007-2019 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 = 7b5835fd37630d18ac0c755329172f6a17c1af29
VER = 20191022
THISAPP = linux-firmware-$(VER)
DL_FILE = $(THISAPP).tar.xz
@@ -40,7 +40,7 @@ objects = $(DL_FILE)
$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
$(DL_FILE)_MD5 = 09fc172e36a431c44ecb8171c4c07a3c
$(DL_FILE)_MD5 = a9fa049840931f37469a8035b9c06318
install : $(TARGET)
@@ -72,5 +72,10 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
@rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar axf $(DIR_DL)/$(DL_FILE)
mkdir -p /lib/firmware
cd $(DIR_APP) && cp -vr * /lib/firmware
# 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)