Skip to content

Commit bf809ea

Browse files
committed
machine_configuration: Add MCO to disable in-tree i915 and intel_vsec driver
There was a conflict between in-tree i915 drivers and the out of tree drivers. So blacklist the in-tree drivers so that the out of tree drivers can be loaded properly. Signed-off-by: Manish Regmi <manish.regmi@intel.com>
1 parent e065e01 commit bf809ea

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
# Copyright (c) 2022 - 2023 Intel Corporation
2+
# SPDX-License-Identifier: Apache-2.0
3+
4+
apiVersion: machineconfiguration.openshift.io/v1
5+
kind: MachineConfig
6+
metadata:
7+
labels:
8+
machineconfiguration.openshift.io/role: intel-dgpu
9+
name: 100-intel-dgpu-machine-config-disable-i915
10+
spec:
11+
config:
12+
ignition:
13+
version: 3.2.0
14+
storage:
15+
files:
16+
- contents:
17+
source: data:,blacklist%20i915
18+
mode: 0644
19+
overwrite: true
20+
path: /etc/modprobe.d/blacklist-i915.conf
21+
- contents:
22+
source: data:,blacklist%20intel_vsec
23+
mode: 0644
24+
overwrite: true
25+
path: /etc/modprobe.d/blacklist-intel-vsec.conf

0 commit comments

Comments
 (0)