diff options
| author | H. Peter Anvin <hpa@linux.intel.com> | 2010-06-21 15:14:19 -0700 |
|---|---|---|
| committer | H. Peter Anvin <hpa@linux.intel.com> | 2010-06-21 15:14:19 -0700 |
| commit | 837c24157e599cff5d6ed2cc2af1891aaed77a65 (patch) | |
| tree | e3a33453cbe14ab19d5f73a125545a5c28e5b73f /core | |
| parent | 88dd13080be414afa5ea2a47f08c632bc143dc58 (diff) | |
| download | syslinux-837c24157e599cff5d6ed2cc2af1891aaed77a65.tar.gz | |
pxelinux: use alignb not alignz in a bss sections
In .bss sections use alignb, not alignz.
Signed-off-by: H. Peter Anvin <hpa@linux.intel.com>
Diffstat (limited to 'core')
| -rw-r--r-- | core/pxelinux.asm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/pxelinux.asm b/core/pxelinux.asm index 6fb77c25..8084ac9a 100644 --- a/core/pxelinux.asm +++ b/core/pxelinux.asm @@ -534,7 +534,7 @@ KeepPXE db 0 ; Should PXE be kept around? ; Linux kernel expects in the ip= option. ; section .bss16 - alignz 4 + alignb 4 global IPInfo IPInfo: .IPv4 resd 1 ; IPv4 information |
