blob: f4372e164a80f84a45c1bf5db6922fe628a8ea97 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
# Copyright 2020 syzkaller project authors. All rights reserved.
# Use of this source code is governed by Apache 2 LICENSE that can be found in the LICENSE file.
kernel:
repo: https://chromium.googlesource.com/chromiumos/third_party/kernel
# HEAD of chromeos-5.4 branch.
tag: 659b005fb0dcc1747094201a14945a6af734be50
shell:
- chromeos/scripts/prepareconfig chromiumos-x86_64 ${BUILDDIR}/.config
- make olddefconfig
config:
# DRM_I915 is broken in 5.4 with:
# drivers/gpu/drm/i915/i915_selftest.h:118:31: error: statement with no effect
- DRM_I915: n
|