2005-05-18 00:43:02 +08:00
|
|
|
SECTIONS
|
|
|
|
{
|
|
|
|
.text : { *(.text) }
|
2005-06-10 08:44:01 +08:00
|
|
|
/* Alignment at beginning shouldn't result in empty section being kept. */
|
|
|
|
.text1 ALIGN (4096) :
|
|
|
|
{
|
|
|
|
*(.text1)
|
|
|
|
}
|
2014-01-22 09:13:03 +08:00
|
|
|
/* Same for alignment at beginning and end, although we need to be
|
|
|
|
careful in the expression used to align. */
|
2005-06-10 08:44:01 +08:00
|
|
|
.text2 ALIGN (4096) :
|
2005-05-18 00:43:02 +08:00
|
|
|
{
|
|
|
|
*(.text2)
|
2014-01-22 09:13:03 +08:00
|
|
|
. = ALIGN (. != 0 ? 4096 : 1);
|
2005-05-18 00:43:02 +08:00
|
|
|
}
|
2014-01-22 09:13:03 +08:00
|
|
|
/* Same for alignment just at end. */
|
2005-05-18 00:43:02 +08:00
|
|
|
.text3 :
|
|
|
|
{
|
|
|
|
*(.text3)
|
2005-06-10 08:44:01 +08:00
|
|
|
. = ALIGN (. != 0 ? 4096 : 1);
|
|
|
|
}
|
|
|
|
/* Same when setting vma and lma. This also shouldn't result in
|
|
|
|
.text3 being kept. */
|
|
|
|
.text4 ADDR (.text3) + SIZEOF (.text3) + 8192 : AT (LOADADDR (.text3))
|
|
|
|
{
|
|
|
|
*(.text4)
|
2005-05-18 00:43:02 +08:00
|
|
|
}
|
2005-08-15 22:08:58 +08:00
|
|
|
/DISCARD/ : { *(*) }
|
2005-05-18 00:43:02 +08:00
|
|
|
}
|