source: rtems/c/src/lib/libbsp/powerpc/virtex4/bsp_specs @ 4648ade

4.115
Last change on this file since 4648ade was 16a8616, checked in by Ric Claus <claus@…>, on 03/30/12 at 15:03:43

Add Virtex4 and Virtex5 BSPs

This commit covers at least PR2020, 2022, and 2023. This
patch adds all of the code for both BSPs, modifications
to libcpu/powerpc for the ppc440, and some updates to the
BSPs from follow up review and testing.

These BSPs should be good baselines for future development.
The configurations used by Ric are custom and have a non-standard
NIC. They also do not have a UART. Thus the current console
driver just prints to a RAM buffer.

The NIC and UART support are left for future work. When the UART
support is added, moving the existing "to RAM" console driver to
a shared location is likely desirable because boards with no debug
UART port are commonly deployed. This would let printk() go to RAM.

  • Property mode set to 100644
File size: 368 bytes
Line 
1%rename startfile old_startfile
2%rename link      old_link
3%rename endfile   old_endfile
4
5
6*startfile:
7%{!qrtems: %(old_startfile)} \
8%{!nostdlib: %{qrtems:  ecrti%O%s rtems_crti%O%s crtbegin.o%s }}
9
10*link:
11%{!qrtems: %(old_link)} \
12%{qrtems: -dc -dp -Bstatic -u __vectors -u download_entry -N }
13
14*endfile:
15%{!qrtems: %(old_endfile)} \
16%{qrtems: crtend.o%s ecrtn.o%s}
Note: See TracBrowser for help on using the repository browser.