move grub_halt out of kernel on most platforms

This commit is contained in:
Vladimir 'phcoder' Serbinenko 2010-05-04 17:15:36 +02:00
parent 4dff488793
commit 8496927478
18 changed files with 65 additions and 65 deletions

View file

@ -16,7 +16,6 @@
* along with GRUB. If not, see <http://www.gnu.org/licenses/>.
*/
#include <grub/machine/init.h>
#include <grub/machine/memory.h>
#include <grub/machine/boot.h>
#include <grub/types.h>

View file

@ -94,6 +94,9 @@ codestart:
call EXT_C(grub_main)
/* This should never happen. */
jmp EXT_C(grub_stop)
cli
1:
hlt
jmp 1b
#include "../realmode.S"