Disable warning errors
This commit is contained in:
parent
07a3149396
commit
0451f149c4
4 changed files with 17 additions and 1 deletions
|
@ -4,6 +4,8 @@ on:
|
||||||
push:
|
push:
|
||||||
tags:
|
tags:
|
||||||
- 'v*'
|
- 'v*'
|
||||||
|
env:
|
||||||
|
PVE_KERNEL_CFLAGS: -Wno-error=format-truncation -Wno-error=array-bounds -Wno-error=stringop-overflow
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
release-build:
|
release-build:
|
||||||
|
|
13
debian/patches/pve/0013-cast-pthreatd-stack-min-to-int.patch
vendored
Normal file
13
debian/patches/pve/0013-cast-pthreatd-stack-min-to-int.patch
vendored
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
diff --git a/tools/perf/builtin-sched.c b/tools/perf/builtin-sched.c
|
||||||
|
index 954ce2f..aaf1cde 100644
|
||||||
|
--- a/tools/perf/builtin-sched.c
|
||||||
|
+++ b/tools/perf/builtin-sched.c
|
||||||
|
@@ -670,7 +670,7 @@ static void create_tasks(struct perf_sched *sched)
|
||||||
|
err = pthread_attr_init(&attr);
|
||||||
|
BUG_ON(err);
|
||||||
|
err = pthread_attr_setstacksize(&attr,
|
||||||
|
- (size_t) max(16 * 1024, PTHREAD_STACK_MIN));
|
||||||
|
+ (size_t) max(16 * 1024, (int)PTHREAD_STACK_MIN));
|
||||||
|
BUG_ON(err);
|
||||||
|
err = pthread_mutex_lock(&sched->start_work_mutex);
|
||||||
|
BUG_ON(err);
|
1
debian/patches/series.linux
vendored
1
debian/patches/series.linux
vendored
|
@ -10,3 +10,4 @@ pve/0009-NFSv4-pnfs-Fix-a-use-after-free-bug-in-open.patch
|
||||||
pve/0010-scsi-Revert-scsi-qla2xxx-Fix-disk-failure-to-redisco.patch
|
pve/0010-scsi-Revert-scsi-qla2xxx-Fix-disk-failure-to-redisco.patch
|
||||||
pve/0011-ext4-recover-csum-seed-of-tmp_inode-after-migrating-.patch
|
pve/0011-ext4-recover-csum-seed-of-tmp_inode-after-migrating-.patch
|
||||||
pve/0012-drm-i915-gt-Serialize-TLB-invalidates-with-GT-resets.patch
|
pve/0012-drm-i915-gt-Serialize-TLB-invalidates-with-GT-resets.patch
|
||||||
|
pve/0013-cast-pthreatd-stack-min-to-int.patch
|
||||||
|
|
2
debian/rules
vendored
2
debian/rules
vendored
|
@ -59,7 +59,6 @@ override_dh_auto_build:
|
||||||
# Kernel
|
# Kernel
|
||||||
dh_auto_build -D ${KERNEL_SRC} -- \
|
dh_auto_build -D ${KERNEL_SRC} -- \
|
||||||
CC="${PVE_KERNEL_CC}" \
|
CC="${PVE_KERNEL_CC}" \
|
||||||
KCFLAGS="${PVE_KERNEL_CFLAGS}" \
|
|
||||||
EXTRAVERSION="${EXTRAVERSION}" \
|
EXTRAVERSION="${EXTRAVERSION}" \
|
||||||
LOCALVERSION="${LOCALVERSION}" \
|
LOCALVERSION="${LOCALVERSION}" \
|
||||||
KBUILD_BUILD_VERSION_TIMESTAMP="${PKG_DISTRIBUTOR} ${DEB_VERSION} (${PKG_DATE_UTC_ISO})"
|
KBUILD_BUILD_VERSION_TIMESTAMP="${PKG_DISTRIBUTOR} ${DEB_VERSION} (${PKG_DATE_UTC_ISO})"
|
||||||
|
@ -133,6 +132,7 @@ debian/${PVE_KERNEL_PKG}.%: debian/templates/pve-kernel.%.in
|
||||||
NO_LIBPYTHON=1 \
|
NO_LIBPYTHON=1 \
|
||||||
NO_LIBPERL=1 \
|
NO_LIBPERL=1 \
|
||||||
NO_LIBCRYPTO=1 \
|
NO_LIBCRYPTO=1 \
|
||||||
|
EXTRA_CFLAGS="${PVE_KERNEL_CFLAGS}" \
|
||||||
PYTHON=python3
|
PYTHON=python3
|
||||||
# echo "checking GPL-2 only perf binary for library linkage with incompatible licenses.."
|
# echo "checking GPL-2 only perf binary for library linkage with incompatible licenses.."
|
||||||
# ! ldd ${KERNEL_SRC}/tools/perf/perf | grep -q -E '\blibbfd'
|
# ! ldd ${KERNEL_SRC}/tools/perf/perf | grep -q -E '\blibbfd'
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue