Makefile (940da138b03ecb5bca68ef51dc1141f115100eed) | Makefile (e1789d7c752ed001cf1a4bbbd624f70a7dd3c6db) |
---|---|
1# SPDX-License-Identifier: GPL-2.0 2VERSION = 6 3PATCHLEVEL = 1 4SUBLEVEL = 0 | 1# SPDX-License-Identifier: GPL-2.0 2VERSION = 6 3PATCHLEVEL = 1 4SUBLEVEL = 0 |
5EXTRAVERSION = -rc3 | 5EXTRAVERSION = -rc1 |
6NAME = Hurr durr I'ma ninja sloth 7 8# *DOCUMENTATION* 9# To see a list of typical targets execute "make help" 10# More info can be located in ./README 11# Comments in this file are targeted only to the developer, do not 12# expect to learn how to build the kernel reading this file. 13 --- 1099 unchanged lines hidden (view full) --- 1113 1114ifeq ($(CONFIG_RELR),y) 1115LDFLAGS_vmlinux += --pack-dyn-relocs=relr --use-android-relr-tags 1116endif 1117 1118# We never want expected sections to be placed heuristically by the 1119# linker. All sections should be explicitly named in the linker script. 1120ifdef CONFIG_LD_ORPHAN_WARN | 6NAME = Hurr durr I'ma ninja sloth 7 8# *DOCUMENTATION* 9# To see a list of typical targets execute "make help" 10# More info can be located in ./README 11# Comments in this file are targeted only to the developer, do not 12# expect to learn how to build the kernel reading this file. 13 --- 1099 unchanged lines hidden (view full) --- 1113 1114ifeq ($(CONFIG_RELR),y) 1115LDFLAGS_vmlinux += --pack-dyn-relocs=relr --use-android-relr-tags 1116endif 1117 1118# We never want expected sections to be placed heuristically by the 1119# linker. All sections should be explicitly named in the linker script. 1120ifdef CONFIG_LD_ORPHAN_WARN |
1121LDFLAGS_vmlinux += --orphan-handling=warn | 1121LDFLAGS_vmlinux += --orphan-handling=$(CONFIG_LD_ORPHAN_WARN_LEVEL) |
1122endif 1123 1124# Align the bit size of userspace programs with the kernel 1125KBUILD_USERCFLAGS += $(filter -m32 -m64 --target=%, $(KBUILD_CFLAGS)) 1126KBUILD_USERLDFLAGS += $(filter -m32 -m64 --target=%, $(KBUILD_CFLAGS)) 1127 1128# make the checker run with the right architecture 1129CHECKFLAGS += --arch=$(ARCH) --- 993 unchanged lines hidden --- | 1122endif 1123 1124# Align the bit size of userspace programs with the kernel 1125KBUILD_USERCFLAGS += $(filter -m32 -m64 --target=%, $(KBUILD_CFLAGS)) 1126KBUILD_USERLDFLAGS += $(filter -m32 -m64 --target=%, $(KBUILD_CFLAGS)) 1127 1128# make the checker run with the right architecture 1129CHECKFLAGS += --arch=$(ARCH) --- 993 unchanged lines hidden --- |