-
Notifications
You must be signed in to change notification settings - Fork 179
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
iasl error? #9
Comments
I am in the exact same boat. Trying this on my catalina macbook. Well almost the same
|
Manually download and install python, it will work after that. |
For the record, the script works on my 10.13.6 system. (But not Windows 10) |
Same here on Don't forget to fix the issue here. |
With regard to the iasl issues - you can try downloading the zip from the corresponding link for your OS in the following: self.iasl_url_macOS = "https://bitbucket.org/RehabMan/acpica/downloads/iasl.zip"
self.iasl_url_linux = "http://amdosx.kellynet.nl/iasl.zip"
self.iasl_url_windows = "https://acpica.org/sites/acpica/files/iasl-win-20180105.zip" Then extract the iasl(.exe) binary to the As for the -CorpNewt |
Latest post seems to be irrelevant and should have its own issue instead. As for (the Linux side of) this issue, the script seems to either misreport a failed download as a successful one, or does some magic when it comes to the (uuid of the) temp folder. Further debugging would be necessary however I am unable to reproduce the issue. |
For those who are stuck with this on download the zip file, and extract the contents to then run the script again. |
Thanks @fallen90, your instructions helped. It appears the acpica.org is having certificate issues (Firefox warns with SEC_ERROR_UNKNOWN_ISSUER) and that might prevent the downloader.py script from downloading the content: def open_url(self, url, headers = None):
# Fall back on the default ua if none provided
headers = self.ua if headers == None else headers
# Wrap up the try/except block so we don't have to do this for each function
try:
response = urlopen(Request(url, headers=headers))
except Exception as e:
if sys.version_info >= (3, 0) or not (isinstance(e, urllib2.URLError) and "CERTIFICATE_VERIFY_FAILED" in str(e)):
# Either py3, or not the right error for this "fix"
return None
# Py2 and a Cert verify error - let's set the unverified context
context = ssl._create_unverified_context()
try:
response = urlopen(Request(url, headers=headers), context=context)
except:
# No fixing this - bail
return None
return response |
Fix the issue with a different file host in dsdt.py. Swap: For this: |
Hi, I had this same issue on Linux but seemingly due to the fact that http://amdosx.kellynet.nl/ is down. |
I've changed this line
to this:
and now it works. |
was wondering your steps to achieve this |
I'm having this same issue, I'm on Linux Mint. I've installed python and have acpica built in, but can't find a way to get the iasl.zip anywhere. |
Hi, I had this same issue on Linux, and like Meleck76 say create a folder in SSDTTime-master/Scripts/ call it iasl copy /user/share/doc/acpica-tools to that folder . |
Thanks, these methods work for me ./SSDTTime-master/Scripts/dsdt.py and find the line self.iasl_url_windows (copy the link and open to download) download the zip file, and extract the contents to ./SSDTTime-master/Scripts open CMD here: \SSDTTime-master\SSDTTime-master |
The command doesn't work always giving an iasl error?
The text was updated successfully, but these errors were encountered: