Skip to content

Commit 3051e02

Browse files
authored
Merge pull request #11 from Niklas04/patch-1
Update EDID page
2 parents 3d07705 + b9d67c3 commit 3051e02

File tree

1 file changed

+10
-8
lines changed

1 file changed

+10
-8
lines changed

configuration/edid.md

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -82,13 +82,13 @@ mkdir -p /storage/.config/firmware/edid
8282
HDMI-A-1
8383

8484
```text
85-
cat /sys/class/drm/card0-HDMI-A-1/edid > /storage/.config/firmware/edid/edid.bin</code>
85+
cat /sys/class/drm/card0-HDMI-A-1/edid > /storage/.config/firmware/edid/edid.bin
8686
```
8787

8888
HDMI-A-2
8989

9090
```text
91-
cat /sys/class/drm/card0-HDMI-A-2/edid > /storage/.config/firmware/edid/edid.bin</code>
91+
cat /sys/class/drm/card0-HDMI-A-2/edid > /storage/.config/firmware/edid/edid.bin
9292
```
9393

9494
Next a cpio archive file will be created which will be loaded at boot.
@@ -121,39 +121,41 @@ Search for "extlinux.conf" or "syslinux.cfg" and edit it. Only one of them is av
121121
**syslinux.cfg**
122122

123123
```text
124-
nano -w /flash/syslinux.cfg
124+
nano /flash/syslinux.cfg
125125
```
126126

127127
**extlinux.conf**
128128

129129
```text
130-
nano -w /flash/extlinux.conf
130+
nano /flash/extlinux.conf
131131
```
132132

133+
Note: If you are not using LibreELEC 9.0 or newer please use nano -w instead of nano
134+
133135
Add to the APPEND line the following things.
134136

135137
HDMI-A-1
136138

137139
```text
138-
initrd=/edid.cpio drm_kms_helper.edid_firmware=HDMI-A-1:edid/edid.bin video=HDMI-A-1:D
140+
initrd=/edid.cpio drm.edid_firmware=edid/edid.bin video=HDMI-A-1:D
139141
```
140142

141143
The APPEND line should look this like this after \(everything in a single line\):
142144

143145
```text
144-
APPEND boot=LABEL=System disk=LABEL=Storage ssh quiet initrd=/edid.cpio drm_kms_helper.edid_firmware=HDMI-A-1:edid/edid.bin video=HDMI-A-1:D
146+
APPEND boot=LABEL=System disk=LABEL=Storage ssh quiet initrd=/edid.cpio drm.edid_firmware=edid/edid.bin video=HDMI-A-1:D
145147
```
146148

147149
HDMI-A-2
148150

149151
```text
150-
initrd=/edid.cpio drm_kms_helper.edid_firmware=HDMI-A-2:edid/edid.bin video=HDMI-A-2:D
152+
initrd=/edid.cpio drm.edid_firmware=edid/edid.bin video=HDMI-A-2:D
151153
```
152154

153155
The APPEND line should look this like this after \(everything in a single line\).
154156

155157
```text
156-
APPEND boot=LABEL=System disk=LABEL=Storage ssh quiet initrd=/edid.cpio drm_kms_helper.edid_firmware=HDMI-A-2:edid/edid.bin video=HDMI-A-2:D
158+
APPEND boot=LABEL=System disk=LABEL=Storage ssh quiet drm.edid_firmware=edid/edid.bin video=HDMI-A-2:D
157159
```
158160

159161
Last step is to reboot the device.

0 commit comments

Comments
 (0)