summaryrefslogtreecommitdiffstats
path: root/scripts/fast-build.sh
diff options
context:
space:
mode:
authorJustin M. Forbes <jforbes@fedoraproject.org>2020-08-12 08:03:24 -0500
committerJustin M. Forbes <jforbes@fedoraproject.org>2020-08-12 08:03:24 -0500
commit47a895f435cccb2cb14eb5d0c52d2f6d4d904907 (patch)
tree628be9cf983bcdfedd940131f8f7187020cff5f2 /scripts/fast-build.sh
parent29d3f64f7e887d5cf9ae5f496febe5954fc49117 (diff)
downloadkernel-47a895f435cccb2cb14eb5d0c52d2f6d4d904907.tar.gz
kernel-47a895f435cccb2cb14eb5d0c52d2f6d4d904907.tar.xz
kernel-47a895f435cccb2cb14eb5d0c52d2f6d4d904907.zip
Linux v5.8.1
Signed-off-by: Justin M. Forbes <jforbes@fedoraproject.org>
Diffstat (limited to 'scripts/fast-build.sh')
-rwxr-xr-xscripts/fast-build.sh13
1 files changed, 13 insertions, 0 deletions
diff --git a/scripts/fast-build.sh b/scripts/fast-build.sh
new file mode 100755
index 000000000..8286a110f
--- /dev/null
+++ b/scripts/fast-build.sh
@@ -0,0 +1,13 @@
+#! /bin/sh
+# Description:
+# rpmbuild combo to build the given architecture without
+# debugging information, perf or tools.
+#
+# Sample usage:
+# ./fast-build.sh x86_64 kernel-4.7.0-0.rc1.git1.2.fc25.src.rpm
+
+if [ -z "$1" ] || [ -z "$2" ]; then
+ echo "usage: $0 [ arch ] [ kernel-x.x.x.fcxx.src.rpm ] "
+fi
+
+rpmbuild --target $1 --without debug --without debuginfo --without perf --without tools --rebuild $2