1 ###############################################################################
3 # IPFire.org - A linux based firewall #
4 # Copyright (C) 2007-2022 IPFire Team <info@ipfire.org> #
6 # This program is free software: you can redistribute it and/or modify #
7 # it under the terms of the GNU General Public License as published by #
8 # the Free Software Foundation, either version 3 of the License, or #
9 # (at your option) any later version. #
11 # This program is distributed in the hope that it will be useful, #
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of #
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
14 # GNU General Public License for more details. #
16 # You should have received a copy of the GNU General Public License #
17 # along with this program. If not, see <http://www.gnu.org/licenses/>. #
19 ###############################################################################
21 ###############################################################################
23 ###############################################################################
28 ARM_PATCHES = 5.15-ipfire5
30 THISAPP = linux-$(VER)
31 DL_FILE = linux-$(VER).tar.xz
32 DL_FROM = $(URL_IPFIRE)
33 DIR_APP = $(DIR_SRC)/$(THISAPP)
37 HEADERS_ARCH = $(BUILD_PLATFORM)
38 KERNEL_ARCH = $(BUILD_ARCH)
39 KERNEL_TARGET = bzImage
41 ifeq "$(BUILD_ARCH)" "aarch64"
47 ifeq "$(BUILD_ARCH)" "armv6l"
49 KERNEL_TARGET = zImage
52 ifeq "$(BUILD_ARCH)" "riscv64"
54 KERNEL_TARGET = Image.gz
57 VERSUFIX=ipfire$(KCFG)
59 ifeq "$(TOOLCHAIN)" "1"
60 TARGET = $(DIR_INFO)/linux-$(VER)-$(VERSUFIX)-tools
61 HEADERS_PREFIX = $(TOOLS_DIR)
62 EXTRAMAKE = CROSS_COMPILE=$(CROSSTARGET)-
64 TARGET = $(DIR_INFO)/linux-$(VER)-$(VERSUFIX)
72 ###############################################################################
74 ###############################################################################
76 arm-multi-patches-$(ARM_PATCHES).patch.xz
78 $(DL_FILE) = $(URL_IPFIRE)/$(DL_FILE)
79 arm-multi-patches-$(ARM_PATCHES).patch.xz = $(URL_IPFIRE)/arm-multi-patches-$(ARM_PATCHES).patch.xz
81 $(DL_FILE)_BLAKE2 = 37db43d3fae8d56cfc9b4f9bd3a76f450b401cbe643c89191de4ab442cc0910fa2d67f2cddd2069d517fb426f6437ff7e05b43ff2a314da04f883d25e354dff2
82 arm-multi-patches-$(ARM_PATCHES).patch.xz_BLAKE2 = 58a70e757a9121a0aac83604a37aa787ec7ac0ee4970c5a3ac3bcb2dbaca32b00089cae6c0da5cf2fe0a2e156427b5165c6a86e0371a3e896f4c7cdd699c34a0
86 check : $(patsubst %,$(DIR_CHK)/%,$(objects))
88 download :$(patsubst %,$(DIR_DL)/%,$(objects))
90 b2 : $(subst %,%_BLAKE2,$(objects))
95 ###############################################################################
96 # Downloading, checking, b2sum
97 ###############################################################################
99 $(patsubst %,$(DIR_CHK)/%,$(objects)) :
102 $(patsubst %,$(DIR_DL)/%,$(objects)) :
105 $(subst %,%_BLAKE2,$(objects)) :
108 ###############################################################################
109 # Installation Details
110 ###############################################################################
112 $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
114 @rm -rf $(DIR_APP) $(DIR_SRC)/linux && cd $(DIR_SRC) && tar axf $(DIR_DL)/$(DL_FILE)
116 ln -svf linux-$(VER) $(DIR_SRC)/linux
119 cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/linux/linux-5.15.17-layer7.patch
122 cd $(DIR_APP) && patch -Np2 < $(DIR_SRC)/src/patches/v4l-dvb_fix_tua6034_pll.patch
125 cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/linux/linux-4.14_ath_user_regd.patch
126 cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/linux/linux-4.9.8-iwlwifi-noibss_only_on_radar_chan.patch
128 # Fix igb and e1000e crash
129 cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/linux/linux-4.14.1-igb-e1000e_fix_lock_at_update_stats.patch
131 # cs5535audio spams syslog if no ac97 was present (geos router)
132 cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/linux/linux-4.9.8_cs5535audio_fix_logspam_on_geos.patch
134 # Fix uevent PHYSDEVDRIVER
135 cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/linux/linux-2.6.32.27_mcs7830-fix-driver-name.patch
137 # fix Boot with enabled usercopy hardening
138 cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/linux/linux-5.9-crypto_testmgr_allocate_buffers_with____GFP_COMP.patch
140 # Patch performance monitoring restrictions to allow further hardening
141 cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/linux/linux-5.15.17-security-perf-allow-further-restriction-of-perf_event_open.patch
143 ifeq "$(BUILD_ARCH)" "armv6l"
144 # Apply Arm-multiarch kernel patches.
145 cd $(DIR_APP) && xzcat $(DIR_DL)/arm-multi-patches-$(ARM_PATCHES).patch.xz | patch -Np1
147 ifeq "$(BUILD_ARCH)" "aarch64"
148 # Apply Arm-multiarch kernel patches.
149 cd $(DIR_APP) && xzcat $(DIR_DL)/arm-multi-patches-$(ARM_PATCHES).patch.xz | patch -Np1
151 cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/linux/linux-3.14.79-amba-fix.patch
153 ifeq "$(KCFG)" "-headers"
154 # Install the header files
155 cd $(DIR_APP) && make ARCH=$(HEADERS_ARCH) $(EXTRAMAKE) headers
156 -mkdir -pv $(BUILDROOT)/$(HEADERS_PREFIX)/include
157 cd $(DIR_APP) && find usr/include -name '.*' -delete
158 cd $(DIR_APP) && rm usr/include/Makefile
159 cd $(DIR_APP) && cp -rv usr/include/* $(BUILDROOT)/$(HEADERS_PREFIX)/include
162 # Install ipfire logo
163 cd $(DIR_APP) && cp -vf $(DIR_SRC)/config/kernel/ipfire_logo.ppm \
164 drivers/video/logo/logo_linux_clut224.ppm
166 # Cleanup kernel source
167 cp $(DIR_SRC)/config/kernel/kernel.config.$(BUILD_ARCH)-$(VERSUFIX) $(DIR_APP)/.config
168 cd $(DIR_APP) && make oldconfig
169 cd $(DIR_APP) && make clean
170 cd $(DIR_APP) && sed -i -e 's/EXTRAVERSION\ =.*/EXTRAVERSION\ =\ -$(VERSUFIX)/' Makefile
172 # Copy Module signing key configuration
173 cp -f $(DIR_SRC)/config/kernel/x509.genkey $(DIR_APP)/certs/x509.genkey
175 # Remove modules folder if exists
176 rm -rf /lib/modules/$(VER)-$(VERSUFIX)
179 cd $(DIR_APP) && make $(MAKETUNING) $(KERNEL_TARGET) modules
182 cd $(DIR_APP) && cp -v arch/$(KERNEL_ARCH)/boot/$(KERNEL_TARGET) /boot/vmlinuz-$(VER)-$(VERSUFIX)
183 cd $(DIR_APP) && cp -v System.map /boot/System.map-$(VER)-$(VERSUFIX)
184 cd $(DIR_APP) && cp -v .config /boot/config-$(VER)-$(VERSUFIX)
185 cd $(DIR_APP) && make $(MAKETUNING) modules_install
187 ifeq "$(BUILD_PLATFORM)" "arm"
188 cd $(DIR_APP) && make $(MAKETUNING) dtbs
189 mkdir -p /boot/dtb-$(VER)-$(VERSUFIX)
190 cd $(DIR_APP)/arch/$(KERNEL_ARCH)/boot/dts && for f in $$(find -name "*.dtb"); do \
191 cp -v --parents $$f /boot/dtb-$(VER)-$(VERSUFIX)/ ; \
192 chmod 644 /boot/dtb-$(VER)-$(VERSUFIX)/$$f ; \
196 # Recreate source and build links
197 rm -rf /lib/modules/$(VER)-$(VERSUFIX)/{build,source}
198 mkdir -p /lib/modules/$(VER)-$(VERSUFIX)/build
199 ln -sf build /lib/modules/$(VER)-$(VERSUFIX)/source
201 # Create dirs for extra modules
202 mkdir -p /lib/modules/$(VER)-$(VERSUFIX)/extra
204 cd $(DIR_APP) && cp --parents $$(find -type f -name "Makefile*" -o -name "Kconfig*") \
205 /lib/modules/$(VER)-$(VERSUFIX)/build
206 cd $(DIR_APP) && cp Module.symvers System.map /lib/modules/$(VER)-$(VERSUFIX)/build
207 rm -rf /lib/modules/$(VER)-$(VERSUFIX)/build/{Documentation,scripts,include}
209 cd $(DIR_APP) && cp .config /lib/modules/$(VER)-$(VERSUFIX)/build
210 cd $(DIR_APP) && cp -a scripts /lib/modules/$(VER)-$(VERSUFIX)/build
211 find /lib/modules/$(VER)-$(VERSUFIX)/build/scripts -name "*.o" -exec rm -vf {} \;
213 cd $(DIR_APP) && cp -a --parents arch/$(HEADERS_ARCH)/include /lib/modules/$(VER)-$(VERSUFIX)/build
214 cd $(DIR_APP) && cp -a include /lib/modules/$(VER)-$(VERSUFIX)/build/include
216 # Copy module signing key for off tree modules
217 cd $(DIR_APP) && cp -f certs/signing_key.* /lib/modules/$(VER)-$(VERSUFIX)/build/certs/
220 cd $(DIR_APP) && cp -a tools/objtool/objtool \
221 /lib/modules/$(VER)-$(VERSUFIX)/build/tools/objtool/ || :
222 cd $(DIR_APP) && cp -a --parents tools/build/{Build,Build.include,fixdep.c} \
223 tools/scripts/utilities.mak /lib/modules/$(VER)-$(VERSUFIX)/build
225 # Make sure we can build external modules
226 touch -r /lib/modules/$(VER)-$(VERSUFIX)/build/Makefile \
227 /lib/modules/$(VER)-$(VERSUFIX)/build/include/generated/uapi/linux/version.h
228 touch -r /lib/modules/$(VER)-$(VERSUFIX)/build/.config \
229 /lib/modules/$(VER)-$(VERSUFIX)/build/autoconf.h
230 cp /lib/modules/$(VER)-$(VERSUFIX)/build/.config \
231 /lib/modules/$(VER)-$(VERSUFIX)/build/include/config/auto.conf
234 find /lib/modules/$(VER)-$(VERSUFIX) -name "modules.order" \
235 -exec chmod 644 {} \;
237 find /lib/modules/$(VER)-$(VERSUFIX) -name ".*.cmd" -exec rm -f {} \;
239 ifeq "$(LASTKERNEL)" "1"
241 cd $(DIR_APP) && install -m 755 usr/gen_init_cpio /sbin/
243 # disable drm by install drm to /bin/false because i915 ignore blacklisting
244 echo install drm /bin/false > /etc/modprobe.d/framebuffer.conf
246 # Blacklist old framebuffer modules
247 for f in $$(find /lib/modules/$(VER)-$(VERSUFIX)/kernel/drivers/video/fbdev/ -name *.ko.xz); do \
248 echo "blacklist $$(basename $$f)" >> /etc/modprobe.d/framebuffer.conf ; \
250 # Blacklist new drm framebuffer modules
251 for f in $$(find /lib/modules/$(VER)-$(VERSUFIX)/kernel/drivers/gpu/drm -name *.ko.xz); do \
252 echo "blacklist $$(basename $$f)" >> /etc/modprobe.d/framebuffer.conf ; \
254 sed -i -e "s|.ko.xz||g" /etc/modprobe.d/framebuffer.conf
256 # Disable ipv6 at runtime
257 echo "options ipv6 disable_ipv6=1" > /etc/modprobe.d/ipv6.conf
261 #force new build of external modules and initrd if the kernel was rebuild
262 -rm -f /usr/src/log/*-kmod-$(VER)-$(VERSUFIX)
263 -rm -f /usr/src/log/linux-initrd-$(VER)-$(VERSUFIX)
265 @rm -rf $(DIR_APP) $(DIR_SRC)/linux