mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-20 06:08:08 +00:00
230f2fccd1
The testing kernel has been running fine for months on a rather complex network setup, with one exception being a crash in __xfrm_state_delete(). This crash has been fixed in kernel 5.15.82, so let's switch the qoriq target to kernel 5.15 by default. Signed-off-by: Stijn Tintel <stijn@linux-ipv6.be>
23 lines
471 B
Makefile
23 lines
471 B
Makefile
# SPDX-License-Identifier: GPL-2.0-only
|
|
#
|
|
# Copyright (C) 2021 Stijn Tintel <stijn@linux-ipv6.be>
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
ARCH:=powerpc64
|
|
BOARD:=qoriq
|
|
BOARDNAME:=NXP QorIQ (PowerPC)
|
|
CPU_TYPE:=e5500
|
|
FEATURES:=boot-part ext4 fpu legacy-sdcard powerpc64 ramdisk rootfs-part rtc source-only
|
|
SUBTARGETS:=generic
|
|
|
|
KERNEL_PATCHVER:=5.15
|
|
|
|
KERNELNAME:=zImage
|
|
|
|
include $(INCLUDE_DIR)/target.mk
|
|
|
|
DEFAULT_PACKAGES += e2fsprogs mkf2fs uboot-envtools
|
|
|
|
$(eval $(call BuildTarget))
|