Last change
on this file since 583 was
516,
checked in by alain, 10 years ago
|
Remove the vobj object from the mapping_info,
and remove global segment seg_unckdata.
|
-
Property svn:executable set to
*
|
File size:
784 bytes
|
Rev | Line | |
---|
[258] | 1 | |
---|
| 2 | /******************************************************************************/ |
---|
| 3 | /* Definition of the base addresses for all vsegs used by the GIET_VM */ |
---|
| 4 | /******************************************************************************/ |
---|
| 5 | |
---|
| 6 | INCLUDE giet_vsegs.ld |
---|
| 7 | |
---|
| 8 | /******************************************************************************/ |
---|
| 9 | /* Grouping sections into virtual segments for system code and data */ |
---|
| 10 | /******************************************************************************/ |
---|
| 11 | |
---|
| 12 | SECTIONS |
---|
| 13 | { |
---|
[322] | 14 | . = kernel_code_vbase; |
---|
[258] | 15 | seg_kernel_code : |
---|
| 16 | { |
---|
| 17 | *(.giet) |
---|
| 18 | *(.text) |
---|
| 19 | } |
---|
| 20 | |
---|
[322] | 21 | . = kernel_data_vbase; |
---|
[258] | 22 | seg_kernel_data : |
---|
| 23 | { |
---|
| 24 | *(.kdata) |
---|
| 25 | } |
---|
| 26 | |
---|
[322] | 27 | . = kernel_init_vbase; |
---|
[258] | 28 | seg_kernel_init : |
---|
| 29 | { |
---|
| 30 | *(.kinit) |
---|
| 31 | } |
---|
| 32 | } |
---|
| 33 | |
---|
Note: See
TracBrowser
for help on using the repository browser.