-
-
Notifications
You must be signed in to change notification settings - Fork 4.1k
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
fix Synchronous Exception on some arm cpus #2488
fix Synchronous Exception on some arm cpus #2488
Conversation
Thank you. |
Thank you. |
Success works in Qingyun L420 with SecureBoot Disabled. I thinks that it solves #2458 #1099 . |
I try ventoy(1.0.93) on my QingYun L420,but got Synchronous Exception error while boot from usbdisk: here is what i found at the BiosDfxExceptionLog Synchronous Exception at 0x0000000075DED2B0 X0 0x0000000000000000 X1 0x0000000075DF0F6C X2 0x0000000000000003 X3 0x000000000000003A V0 0x0046454542444145 4478305F454C4449 V1 0x0000000000000000 0000000000000000 SP 0x000000007FFFF440 ELR 0x0000000075DED2B0 SPSR 0x20000205 FPSR 0x00000000 ESR : EC 0x25 IL 0x1 ISS 0x00000007 Data abort: Translation fault, third level Stack dump:
|
the error above fixed in ventoy 1.0.94 ,ventoy can start from usb on Qintyun L420 now. Thank amazingfate and ospiff! |
Hi ! I tried to install debian/ubuntu/windows on Qingyun L420 with ventoy , but faiiled with hang_in_black_screen. have you any idea install os other than UOS on Qingyun L420? |
HUAWEI provide their BSP kernel with their many no upstream changes and some AOSP kernel changes in L420,and if you want to bootup other distro,just try to binary replace vmlinux and some other kernel modules, rebuild initrd,and usermode driver like mesa. Other person has an exapmle,link: |
Issues maybe related: #1188 #1658 #2458
I'm testing on a rk3588 sbc with an edk2 firmware.
I encountered the same issue edk2-porting/edk2-rk3588#6 as above.
After a lot of
grub_printf
I find thatfile->name
here is not initilized by grub_bufio_open. And my rk3588 will getSynchronous Exception
when grub_strncmp runs with nullfile->name
. So I just skip it when there is nofile->name
.