Correct a comment.

This commit is contained in:
thorpej 2002-02-24 20:51:56 +00:00
parent fa1cc12897
commit c92241b420

View File

@ -4,9 +4,9 @@ OUTPUT_ARCH(arm)
ENTRY(FLASH) ENTRY(FLASH)
MEMORY MEMORY
{ {
/* We will locate the .text section in flash, and run directly /* We will locate the .text section in flash, and will run directly
from there. The data and bss sections are small, and we from there just long enough to relocate our .text and .data into
will locate them offset 1MB in SDRAM. */ a small chunk of SDRAM starting at (SDRAM + 1M). */
flash : o = 0x80000, l = 6M flash : o = 0x80000, l = 6M
sdram : o = 0xa0100000, l = 1M /* kernel loads at 0xa0200000 */ sdram : o = 0xa0100000, l = 1M /* kernel loads at 0xa0200000 */
} }