forked from Imagelibrary/rtems
University of British Columbia. The BSP is for:
Yes, this is the "entry model" of a series of boards from Technologic
Systems. Costs <$200 I believe. They have a WWW page at www.t-systems.com.
I am letting them know about the availability of this BSP too.
24 lines
543 B
Plaintext
24 lines
543 B
Plaintext
%rename cpp old_cpp
|
|
%rename lib old_lib
|
|
%rename endfile old_endfile
|
|
%rename startfile old_startfile
|
|
%rename link old_link
|
|
|
|
*cpp:
|
|
%(old_cpp) %{qrtems: -D__embedded__} -Asystem(embedded)
|
|
|
|
*lib:
|
|
%{!qrtems: %(old_lib)} %{qrtems: --start-group \
|
|
%{!qrtems_debug: -lrtemsall} %{qrtems_debug: -lrtemsall_g} \
|
|
-lc -lgcc --end-group \
|
|
%{!qnolinkcmds: -T linkcmds%s}}
|
|
|
|
*startfile:
|
|
%{!qrtems: %(old_startfile)} %{qrtems: \
|
|
%{!qrtems_debug: start.o%s} \
|
|
%{qrtems_debug: start_g.o%s}}
|
|
|
|
*link:
|
|
%{!qrtems: %(old_link)} %{qrtems: -dc -dp -N -e _init_i386ex}
|
|
|