mirror of
https://git.rtems.org/rtems-source-builder
synced 2024-10-09 07:15:10 +08:00

All patches are now downloaded. No patches or source is held in the RTEMS Source Builder repo. As part of this the build sets now have a single rtems_arch define and the base RTEMS 4.11 build set now creates the _target macro. With this change a method to manage RTEMS specific patches has been put in place where build sets can define patches. This avoids needing special configuration files.
28 lines
614 B
INI
28 lines
614 B
INI
#
|
|
# Manage RTEMS GDB specific patches in the build sets
|
|
#
|
|
%if %{defined rtems_gdb_patch1}
|
|
Patch1: %{rtems_gdb_patch1}
|
|
%endif
|
|
%if %{defined rtems_gdb_patch2}
|
|
Patch2: %{rtems_gdb_patch2}
|
|
%endif
|
|
%if %{defined rtems_gdb_patch3}
|
|
Patch3: %{rtems_gdb_patch3}
|
|
%endif
|
|
%if %{defined rtems_gdb_patch4}
|
|
Patch4: %{rtems_gdb_patch4}
|
|
%endif
|
|
%if %{defined rtems_gdb_patch11}
|
|
Patch11: %{rtems_gdb_patch11}
|
|
%endif
|
|
%if %{defined rtems_gdb_patch12}
|
|
Patch12: %{rtems_gdb_patch12}
|
|
%endif
|
|
%if %{defined rtems_gdb_patch13}
|
|
Patch13: %{rtems_gdb_patch13}
|
|
%endif
|
|
%if %{defined rtems_gdb_patch14}
|
|
Patch14: %{rtems_gdb_patch14}
|
|
%endif
|