mirror of
https://gitlab.com/qemu-project/openbios.git
synced 2024-02-13 08:34:06 +08:00
Save locked tlb space by aligning to 512k pages.
Signed-off-by: igor.v.kovalenko@gmail.com Signed-off-by: Blue Swirl <blauwirbel@gmail.com> git-svn-id: svn://coreboot.org/openbios/trunk/openbios-devel@562 f158a5a8-5612-0410-a976-696ce0be7e32
This commit is contained in:
committed by
Blue Swirl
parent
e56cc95fb0
commit
b26b3c4391
@@ -25,12 +25,12 @@ SECTIONS
|
||||
_start = .;
|
||||
|
||||
/* Normal sections */
|
||||
.text ALIGN(65536): {
|
||||
.text ALIGN(524288): {
|
||||
*(.text.vectors)
|
||||
*(.text)
|
||||
*(.text.*)
|
||||
}
|
||||
.rodata ALIGN(65536): {
|
||||
.rodata ALIGN(524288): {
|
||||
_rodata = .;
|
||||
sound_drivers_start = .;
|
||||
*(.rodata.sound_drivers)
|
||||
@@ -39,7 +39,7 @@ SECTIONS
|
||||
*(.rodata.*)
|
||||
*(.note.ELFBoot)
|
||||
}
|
||||
.data ALIGN(65536): {
|
||||
.data ALIGN(524288): {
|
||||
_data = .;
|
||||
*(.data)
|
||||
*(.data.*)
|
||||
|
||||
Reference in New Issue
Block a user