6/7: Use RTEMS 6 tools

This commit is contained in:
Sebastian Huber 2020-06-30 09:38:40 +02:00
parent 9a7082c99f
commit c7516528c5
4 changed files with 46 additions and 3 deletions

View File

@ -12,4 +12,4 @@ tools/rtems-gdb-head
tools/rtems-binutils-head
tools/rtems-gcc-10-newlib-head
tools/rtems-tools-5-1
tools/rtems-tools-6

View File

@ -14,4 +14,4 @@ devel/expat-2.1.0-1
tools/rtems-binutils-head
tools/rtems-gcc-10-newlib-head
tools/rtems-gdb-7.8.1-1
tools/rtems-tools-5-1
tools/rtems-tools-6

View File

@ -10,4 +10,4 @@ tools/rtems-gdb-head
tools/rtems-binutils-head
tools/rtems-gcc-head-newlib-head
tools/rtems-tools-5-1
tools/rtems-tools-6

View File

@ -0,0 +1,43 @@
#
# RTEMS Tools for 6.
#
#
# The RTEMS Tools version is set to the RSB version or the RTEMS version.
#
%if %{rsb_released}
%define rtems_tools_version %{rsb_version}
%define rtems_tools_source rtems-tools-%{rtems_tools_version}
%define rtems_tools_ext xz
%else
%define rtems_tools_version 351bb7e41d15a18ed388b005f8c21614a272e8c0
%define rtems_tools_ext bz2
%endif
%define rtems_tools_source rtems-tools-%{rtems_tools_version}
%source set rtems-tools https://git.rtems.org/rtems-tools/snapshot/%{rtems_tools_source}.tar.%{rtems_tools_ext}
%hash sha512 rtems-tools-%{rtems_tools_version}.tar.bz2 f0c4366bcb6eaa5e65476d197236c5873cb1f573ccdc2d2299272923a7e6a05479f63eaa904672c7f2a667a5c06f91a3389979f62d3eceff48cd48bdc72f6924
#
# Optionally enable/disable building the RTEMS Tools via the command line.
#
%if %{defined with_rtems_tools}
%define rtems_tools_build 1
%endif
%if %{defined without_rtems_tools}
%define rtems_tools_build 0
%endif
#
# Build by default.
#
%if ! %{defined rtems_tools_build}
%define rtems_tools_build 1
%endif
%if %{rtems_tools_build}
#
# The RTEMS Tools build instructions.
#
%include tools/rtems-tools-common-1.cfg
%endif