summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorJustin M. Forbes <jforbes@fedoraproject.org>2021-03-05 10:03:27 -0600
committerJustin M. Forbes <jforbes@fedoraproject.org>2021-03-05 10:03:27 -0600
commit3422e04a2e31dba3e17af206f160d4fc409f4250 (patch)
treeef03b0b60e236af96331d0ddb83208bb40bcf9f0 /Makefile
parent7a64d107da5cd0ea8bad9200ebcd37146324361f (diff)
downloadkernel-3422e04a2e31dba3e17af206f160d4fc409f4250.tar.gz
kernel-3422e04a2e31dba3e17af206f160d4fc409f4250.tar.xz
kernel-3422e04a2e31dba3e17af206f160d4fc409f4250.zip
kernel-5.11.3-50
* Fri Mar 05 2021 Justin M. Forbes <jforbes@fedoraproject.org> [5.11.3-50] - PCI: Add MCFG quirks for Tegra194 host controllers (Vidya Sagar) - Revert "PCI: Add MCFG quirks for Tegra194 host controllers" (Peter Robinson) - forgot to push this one earlier (Justin M. Forbes) - Reference the patch as version.patchlevel to more easily see diffs between stable releases (Justin M. Forbes) Resolves: rhbz# Signed-off-by: Justin M. Forbes <jforbes@fedoraproject.org>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile50
1 files changed, 0 insertions, 50 deletions
diff --git a/Makefile b/Makefile
deleted file mode 100644
index 1c0aaa6e8..000000000
--- a/Makefile
+++ /dev/null
@@ -1,50 +0,0 @@
-# Makefile for source rpm: kernel
-SPECFILE := kernel.spec
-
-# we only check the .sign signatures
-UPSTREAM_CHECKS = sign
-
-.PHONY: help
-help:
-%:
- @echo "Try fedpkg $@ or something like that"
- @exit 1
-
-prep: config-files
- fedpkg -v prep
-
-noarch:
- fedpkg -v local --arch=noarch
-
-# 'make local' also needs to build the noarch firmware package
-local:
- fedpkg -v local
-
-extremedebug:
- @perl -pi -e 's/# CONFIG_DEBUG_PAGEALLOC is not set/CONFIG_DEBUG_PAGEALLOC=y/' config-nodebug
-
-config-files:
- @./build_configs.sh
-
-debug:
- @perl -pi -e 's/^%define debugbuildsenabled 1/%define debugbuildsenabled 0/' kernel.spec
- @rpmdev-bumpspec -c "Reenable debugging options." kernel.spec
-
-release:
- @perl -pi -e 's/^%define debugbuildsenabled 0/%define debugbuildsenabled 1/' kernel.spec
- @rpmdev-bumpspec -c "Disable debugging options." kernel.spec
-
-nodebuginfo:
- @perl -pi -e 's/^%define with_debuginfo %\{\?_without_debuginfo: 0\} %\{\?\!_without_debuginfo: 1\}/%define with_debuginfo %\{\?_without_debuginfo: 0\} %\{\?\!_without_debuginfo: 0\}/' kernel.spec
-
-nodebug: release
- @perl -pi -e 's/^%define debugbuildsenabled 1/%define debugbuildsenabled 0/' kernel.spec
-
-ifeq ($(MAKECMDGOALS),me a sandwich)
-.PHONY: me a sandwich
-me a:
- @:
-
-sandwich:
- @[ `id -u` -ne 0 ] && echo "What? Make it yourself." || echo Okay.
-endif