I’m facing issues with some kernel panic but I don’t have any idea how to find which soft is exacly causing this issue. I’m trying to compile some soft on remote host using distcc software but my machines which are compiling are going down because of this issue. Could you point me where shoud I start looking? What could cause
Tag: panic
Kernel Panic with Buildroot Linux
I (try to) make a complete minimal Kodi Linux system with buildroot from scratch, everything compiles fine and i also got it to boot but after some lines of console output and graphics reset it gives me a kernel panic error: I have no clue why… My buildroot config file: https://pastebin.com/7PC4zLEa Image from the kernel panic: https://imgur.com/a/dPECTRH Answer It turns
What is the meaning of question marks ‘?’ in Linux kernel panic call traces?
The Call Trace contains entries like that: What is the meaning of the ‘?’ mark before AnotherFunctionName? Answer ‘?’ means that the information about this stack entry is probably not reliable. The stack output mechanism (see the implementation of dump_trace() function) was unable to prove that the address it has found is a valid return address in the call stack.