Hi there, try modifying backend/bios.c in function verify_bios like this...
/* All bioses start with this '0x55 0xAA' signature */ if((rom[0] != (char)0x55) || ((rom[1] & 0xff) != (char)0xAA)) return 0; Don't know why rom[1] is 0xffffff55 when my sizeof(char) is 1 :( but this solves problem with stack smashing in my case (Ti4200) Good luck -- Stack Smashing Prevents Use https://bugs.launchpad.net/bugs/72117 You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. -- ubuntu-bugs mailing list [email protected] https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
