diff options
| author | H. Peter Anvin <hpa@zytor.com> | 2009-05-13 22:46:25 -0700 |
|---|---|---|
| committer | H. Peter Anvin <hpa@zytor.com> | 2009-05-13 22:46:25 -0700 |
| commit | 4cc0c3ab6541753b89cba58c345c0cae8c7d151d (patch) | |
| tree | fb8904a1e48da982a6fe3eb105a5c8be20c5a342 /core/cpuinit.inc | |
| parent | 95a461a83adf65aa5689b65f85330ce970121f56 (diff) | |
| download | syslinux-unify-pm.tar.gz | |
core: rename .text, .data and .bss to .text16, .data16, .bss16unify-pm
Rename the .text, .data and .bss sections to .text16, .data16 and
.bss16, in anticipation of being linked with compiler-generated 32-bit
code, which presumably would like to use the standard section names.
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
Diffstat (limited to 'core/cpuinit.inc')
| -rw-r--r-- | core/cpuinit.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/cpuinit.inc b/core/cpuinit.inc index 2b6460a8..85490ef0 100644 --- a/core/cpuinit.inc +++ b/core/cpuinit.inc @@ -40,7 +40,7 @@ enough_ram: skip_checks: call pm_init - section .data + section .data16 err_noram db 'It appears your computer has less than ' asciidec dosram_k db 'K of low ("DOS")' @@ -50,4 +50,4 @@ err_noram db 'It appears your computer has less than ' db 'this message in error, hold down the Ctrl key while' db CR, LF db 'booting, and I will take your word for it.', CR, LF, 0 - section .text + section .text16 |
