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:
igor.v.kovalenko
2009-08-21 19:15:46 +00:00
committed by Blue Swirl
parent e56cc95fb0
commit b26b3c4391
2 changed files with 21 additions and 19 deletions

View File

@@ -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.*)