vote up 1 vote down star
1

How do we shift from protected mode to real mode in Linux 2.6?

flag

3  
Why? Your Linux install not crashing enough for ya' ? – paxdiablo May 6 at 13:02
1  
What exactly are you trying to achieve? What you're asking isn't really possible, but if you give a bit more context, someone might be able to show you another way to achieve what you need. – jalf May 6 at 17:00

4 Answers

vote up 9 vote down check

You do not.

The kernel cannot function at all in real mode, nor can bios calls be (sensibly) made, so you wouldn't be able to do anything anyway.

You might look at how DosEMU uses v86 mode to run your "real mode" code, but that's all.

link|flag
vote up 1 vote down

You could also take a look at FreeDOS if you really need real mode on the hardware.

link|flag
vote up 1 vote down

The kernel switches from real mode to protected mode during the very beginning of the boot/start sequence and there is no turning back. See How Boot Loaders Work for more detailed information.

If you have some program that needs real mode, there is v86 mode. Some work is ongoing to add support for this in 64 bit mode.

link|flag
vote up 0 vote down

The ELKS Linux port can do real mode, but its nowhere near 2.6.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.