source: trunk/boot/tsar_mips32/boot.ld @ 610

Last change on this file since 610 was 610, checked in by alain, 5 years ago

Fix several bugs in VFS to support the following
ksh commandis : cp, mv, rm, mkdir, cd, pwd

File size: 699 bytes
Line 
1/*******************************************************************
2 * This is the linker script for the ALMOS-MKH boot-loader,
3 * to generate the 'boot.elf' file used for the TSAR architecture.
4 *******************************************************************/
5
6/* define the boot code base address */
7
8boot_code_base = 0x100000;
9
10/* Set the entry point of the boot-loader */
11/* (e_entry field in the "boot.elf" file header) */
12
13ENTRY(boot_entry)
14
15/* Describe how to group the sections */
16
17SECTIONS
18{
19    . = boot_code_base;
20    .text :
21    {
22        *(.text)
23        *(.rodata*)
24    }
25    . = ALIGN(0x1000);
26    .data :
27    {
28        *(.data*)
29    }
30    .bss :
31    {
32        *(.bss)
33    }
34}
Note: See TracBrowser for help on using the repository browser.