diff options
author | H. Peter Anvin <hpa@zytor.com> | 2009-05-21 16:15:42 -0700 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2009-05-21 16:15:42 -0700 |
commit | 89ec5fa741f415296c6d6c83da5bad32710aaa38 (patch) | |
tree | a09428adfb9ab6e41b415fe8507e89c12ec66fa8 /core | |
parent | 4558c4f20d269282eaa9180e5735f23da7685234 (diff) | |
download | syslinux-89ec5fa741f415296c6d6c83da5bad32710aaa38.tar.gz |
idle: set NoHalt back to 0 as it should besyslinux-3.81-pre10
NoHalt was set to 1 temporarily for debugging; return it to 0.
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
Diffstat (limited to 'core')
-rw-r--r-- | core/idle.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/idle.inc b/core/idle.inc index 67a5c3ed..bd134ff6 100644 --- a/core/idle.inc +++ b/core/idle.inc @@ -70,7 +70,7 @@ do_idle: section .data IdleHook dw do_idle.ret -NoHalt dw 1 +NoHalt dw 0 hlt_err db 'ERROR: idle with IF=0', CR, LF, 0 |