X-Git-Url: http://git.ipfire.org/?a=blobdiff_plain;f=lfs%2Flinux;h=7f44702d036e9b3fcd07788ce888d142470dca1b;hb=1773544d025591d4096ee91bcc598dac19fa0f24;hp=974c2a2f44330e85c0916d9ec240a0358727e0e3;hpb=e7a52c52d109e044bcce0ca52eb0b5a94c2ec03a;p=people%2Fpmueller%2Fipfire-2.x.git diff --git a/lfs/linux b/lfs/linux index 974c2a2f44..7f44702d03 100644 --- a/lfs/linux +++ b/lfs/linux @@ -1,7 +1,7 @@ ############################################################################### # # # IPFire.org - A linux based firewall # -# Copyright (C) 2007-2019 IPFire Team # +# Copyright (C) 2007-2020 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,8 +24,8 @@ include Config -VER = 4.14.113 -ARM_PATCHES = 4.14.113-ipfire0 +VER = 4.14.172 +ARM_PATCHES = 4.14.172-ipfire0 THISAPP = linux-$(VER) DL_FILE = linux-$(VER).tar.xz @@ -34,7 +34,7 @@ DIR_APP = $(DIR_SRC)/$(THISAPP) CFLAGS = CXXFLAGS = -PAK_VER = 82 +PAK_VER = 92 DEPS = "" HEADERS_ARCH = $(BUILD_PLATFORM) @@ -82,8 +82,8 @@ objects =$(DL_FILE) \ $(DL_FILE) = $(URL_IPFIRE)/$(DL_FILE) arm-multi-patches-$(ARM_PATCHES).patch.xz = $(URL_IPFIRE)/arm-multi-patches-$(ARM_PATCHES).patch.xz -$(DL_FILE)_MD5 = fd34a25839945f902f0c6d694d42ea7f -arm-multi-patches-$(ARM_PATCHES).patch.xz_MD5 = 51eab5175bf8f0ad986006c74e60b472 +$(DL_FILE)_MD5 = 782746859c7f365aeba49c08705c4c30 +arm-multi-patches-$(ARM_PATCHES).patch.xz_MD5 = 3072dd813363b20361f80ecc748a1084 install : $(TARGET) @@ -118,9 +118,6 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects)) ln -svf linux-$(VER) $(DIR_SRC)/linux - # Linux Intermediate Queueing Device - cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/linux/linux-4.14-imq.diff - # Layer7-patch cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/linux/linux-4.14-layer7.patch @@ -146,6 +143,9 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects)) # Fix uevent PHYSDEVDRIVER cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/linux/linux-2.6.32.27_mcs7830-fix-driver-name.patch + # Fix for netfilter nf_conntrack: resolve clash for matching conntracks + cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/linux/linux-5.0-netfilter-conntrack-resolve-clash.patch + ifeq "$(KCFG)" "-kirkwood" cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/linux/linux-4.14.40-kirkwood-dtb.patch endif @@ -153,13 +153,10 @@ endif ifeq "$(KCFG)" "-multi" # Apply Arm-multiarch kernel patches. cd $(DIR_APP) && xzcat $(DIR_DL)/arm-multi-patches-$(ARM_PATCHES).patch.xz | patch -Np1 - cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/linux/linux-4.14-Revert-usb-dwc2-Fix-DMA-alignment.patch - endif ifeq "$(BUILD_ARCH)" "aarch64" # Apply Arm-multiarch kernel patches. cd $(DIR_APP) && xzcat $(DIR_DL)/arm-multi-patches-$(ARM_PATCHES).patch.xz | patch -Np1 - cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/linux/linux-4.14-Revert-usb-dwc2-Fix-DMA-alignment.patch endif cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/linux/linux-3.14.79-amba-fix.patch @@ -181,6 +178,12 @@ else cd $(DIR_APP) && make clean cd $(DIR_APP) && sed -i -e 's/EXTRAVERSION\ =.*/EXTRAVERSION\ =\ -$(VERSUFIX)/' Makefile + # Copy Module signing key configuration + cp -f $(DIR_SRC)/config/kernel/x509.genkey $(DIR_APP)/certs/x509.genkey + + # Remove modules folder if exists + rm -rf /lib/modules/$(VER)-$(VERSUFIX) + # Build the kernel cd $(DIR_APP) && make $(MAKETUNING) $(KERNEL_TARGET) modules @@ -199,6 +202,49 @@ ifeq "$(BUILD_PLATFORM)" "arm" done endif + # Recreate source and build links + rm -rf /lib/modules/$(VER)-$(VERSUFIX)/{build,source} + mkdir -p /lib/modules/$(VER)-$(VERSUFIX)/build + ln -sf build /lib/modules/$(VER)-$(VERSUFIX)/source + + # Create dirs for extra modules + mkdir -p /lib/modules/$(VER)-$(VERSUFIX)/extra + + cd $(DIR_APP) && cp --parents $$(find -type f -name "Makefile*" -o -name "Kconfig*") \ + /lib/modules/$(VER)-$(VERSUFIX)/build + cd $(DIR_APP) && cp Module.symvers System.map /lib/modules/$(VER)-$(VERSUFIX)/build + rm -rf /lib/modules/$(VER)-$(VERSUFIX)/build/{Documentation,scripts,include} + + cd $(DIR_APP) && cp .config /lib/modules/$(VER)-$(VERSUFIX)/build + cd $(DIR_APP) && cp -a scripts /lib/modules/$(VER)-$(VERSUFIX)/build + find /lib/modules/$(VER)-$(VERSUFIX)/build/scripts -name "*.o" -exec rm -vf {} \; + + cd $(DIR_APP) && cp -a --parents arch/$(HEADERS_ARCH)/include /lib/modules/$(VER)-$(VERSUFIX)/build + cd $(DIR_APP) && cp -a include /lib/modules/$(VER)-$(VERSUFIX)/build/include + + # Copy module signing key for off tree modules + cd $(DIR_APP) && cp -f certs/signing_key.* /lib/modules/$(VER)-$(VERSUFIX)/build/certs/ + + # Install objtool + cd $(DIR_APP) && cp -a tools/objtool/objtool \ + /lib/modules/$(VER)-$(VERSUFIX)/build/tools/objtool/ || : + cd $(DIR_APP) && cp -a --parents tools/build/{Build,Build.include,fixdep.c} \ + tools/scripts/utilities.mak /lib/modules/$(VER)-$(VERSUFIX)/build + + # Make sure we can build external modules + touch -r /lib/modules/$(VER)-$(VERSUFIX)/build/Makefile \ + /lib/modules/$(VER)-$(VERSUFIX)/build/include/generated/uapi/linux/version.h + touch -r /lib/modules/$(VER)-$(VERSUFIX)/build/.config \ + /lib/modules/$(VER)-$(VERSUFIX)/build/autoconf.h + cp /lib/modules/$(VER)-$(VERSUFIX)/build/.config \ + /lib/modules/$(VER)-$(VERSUFIX)/build/include/config/auto.conf + + # Fix permissions + find /lib/modules/$(VER)-$(VERSUFIX) -name "modules.order" \ + -exec chmod 644 {} \; + + find /lib/modules/$(VER)-$(VERSUFIX) -name ".*.cmd" -exec rm -f {} \; + ifeq "$(LASTKERNEL)" "1" # Only do this once cd $(DIR_APP) && install -m 755 usr/gen_init_cpio /sbin/ @@ -225,5 +271,5 @@ endif -rm -f /usr/src/log/*-kmod-$(VER)-$(VERSUFIX) -rm -f /usr/src/log/linux-initrd-$(VER)-$(VERSUFIX) - @rm -rf $(DIR_SRC)/patch-o-matic* $(DIR_SRC)/iptables* $(DIR_SRC)/squashfs* $(DIR_SRC)/netfilter-layer7-* + @rm -rf $(DIR_APP) $(DIR_SRC)/linux @$(POSTBUILD)