Originally Posted by
Virchanza
Hmm... I wonder would it be as simple as recompiling everything with an ARM compiler? The only trouble I can forsee you running into is:
1) If you have C code that depends on x86 CPU's (which really would only be a problem for compiling something low-level like a kernel, but who knows maybe even the kernel doesn't do anything specific with x86)
2) If you have assembly code specific to x86's.
The second problem could be solved simply by having an x86-to-ARM assembly converter, which wouldn't be complicated at all.
For the first problem, you'd just have to look for the bits of code that do stuff like use special CPU instructions (but hopefully all of these instances are documented).