source: rtems-source-builder/rtems/config/tools/rtems-kernel-4.11.cfg @ 40e4222

4.104.95
Last change on this file since 40e4222 was 40e4222, checked in by Chris Johns <chrisj@…>, on 12/10/15 at 05:54:40

Support released downloading of the RTEMS Tools and RTEMS Kernel.

Add a --without-error-reports flags to reduce the noise on --with-downloading.

  • Property mode set to 100644
File size: 1.0 KB
Line 
1#
2# RTEMS 4.11
3#
4
5#
6# Optionally enable/disable building the RTEMS kernel via the command line.
7#
8%if %{defined with_rtems}
9 %define rtems_kernel_build 1
10%else
11 %define rtems_kernel_build 0
12%endif
13
14#
15# Build if the RSB is released.
16#
17%if ! %{rtems_kernel_build}
18 %if %{rsb_released}
19  %define rtems_kernel_build 1
20 %endif
21%endif
22
23%if %{rtems_kernel_build}
24 %include %{_configdir}/checks.cfg
25 %include %{_configdir}/base.cfg
26 %include %{_configdir}/versions.cfg
27
28 %define rtems_kernel_version 4.11.0-rc1
29
30 #
31 # A magic internal path that would break if changes in the defaults.mc
32 # macro file are made.
33 #
34 %define _internal_autotools_path %{_tmppath}/sb-%{_uid}/${SB_PREFIX_CLEAN}
35
36 #
37 # Check the version of autoconf. Check autoreconf as it is used.
38 #
39 %if %{__autoreconf_ver} <= 2.68
40  %if %{__autoreconf_bindir_ver} <= 2.68
41   %if %{__autoreconf_path_ver} <= 2.68
42    %error Autoconf (autoreconf) version 2.69 or higher is needed.
43   %endif
44  %endif
45 %endif
46
47 #
48 # The RTEMS build instructions. We use 4.xx Release 1.
49 #
50 %include tools/rtems-kernel-4-1.cfg
51%endif
Note: See TracBrowser for help on using the repository browser.