Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Include edid info for DREAMNEXTGEN #3459

Draft
wants to merge 2 commits into
base: master
Choose a base branch
from

Conversation

thestormbreaker
Copy link

No description provided.

@@ -401,7 +401,7 @@ def getWakeOnLANType(fileName):
BoxInfo.setItem("HasSDmmc", MultiBoot.canMultiBoot() and "sd" in MultiBoot.getBootSlots()["2"] and "mmcblk" in MTDROOTFS)
BoxInfo.setItem("HasSDswap", MODEL in ("h9", "i55plus") and pathExists("/dev/mmcblk0p1"))
BoxInfo.setItem("HaveCISSL", fileCheck("/etc/ssl/certs/customer.pem") and fileCheck("/etc/ssl/certs/device.pem"))
BoxInfo.setItem("HAVEEDIDDECODE", fileCheck("/proc/stb/hdmi/raw_edid") and fileCheck("/usr/bin/edid-decode"))
BoxInfo.setItem("HAVEEDIDDECODE", fileCheck("/proc/stb/hdmi/raw_edid") or fileCheck("/sys/class/amhdmitx/amhdmitx0/rawedid") and fileCheck("/usr/bin/edid-decode"))
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I this is wrong.

>>> True or False and False
True

You need extra brackets.

>>> (True or False) and False
False

@jbleyel jbleyel marked this pull request as draft November 28, 2024 21:16
@jbleyel
Copy link
Contributor

jbleyel commented Nov 28, 2024

I will take over this and do that differently.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants