summaryrefslogtreecommitdiffstats
path: root/c6x/fipscanister.cmd
blob: a06ee15cb3c63f298499fa2981f10cf295403e49 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
SECTIONS
{
    .text:
    {
	*(.fips_text:start)
	*(.text)
	*(.const:aes_asm)
	*(.const:sha_asm)
	*(.const:des_sptrans)
	*(.switch)
	*(.fips_text:end)
    }
    .const:
    {
	*(.fips_const:start)
	*(.const)
	*(.fips_const:end)
    }
}