mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git
synced 2024-12-13 10:48:48 +00:00
32eb7c7307
GPLv2 firmware for carl9170, Atheros AR9170 802.11 draft-n USB driver. Cc: Christian Lamparter <chunkeey@googlemail.com> Cc: David Woodhouse <dwmw2@infradead.org> Cc: Ben Hutchings <ben@decadent.org.uk> Signed-off-by: Xose Vazquez Perez <xose.vazquez@gmail.com> Signed-off-by: Ben Hutchings <ben@decadent.org.uk>
21 lines
313 B
Plaintext
21 lines
313 B
Plaintext
ENTRY(_start);
|
|
|
|
MEMORY
|
|
{
|
|
pram : ORIGIN = 0x200000, LENGTH = 16k
|
|
}
|
|
|
|
SECTIONS
|
|
{
|
|
.padding : {
|
|
/* NOP NOP just in case */
|
|
LONG(0x00090009)
|
|
} > pram
|
|
|
|
.boot : { *(.boot) } > pram
|
|
.text : { *(.text*) } > pram
|
|
.rodata : { *(.rodata*) } > pram
|
|
.bss : { *(.bss) } > pram
|
|
.data : { *(.data*) } > pram
|
|
}
|