summaryrefslogtreecommitdiffstats
path: root/rtems-release-kernel
blob: a4cf7fda6ca100d62e06b3ab9021a4401f05538b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
#! /bin/sh
#
# RTEMS Tools Project (http://www.rtems.org/)
# Copyright 2015,2016,2019 Chris Johns (chrisj@rtems.org)
# All rights reserved.
#
# This file is part of the RTEMS Tools package in 'rtems-tools'.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are met:
#
# 1. Redistributions of source code must retain the above copyright notice,
# this list of conditions and the following disclaimer.
#
# 2. Redistributions in binary form must reproduce the above copyright notice,
# this list of conditions and the following disclaimer in the documentation
# and/or other materials provided with the distribution.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
# POSSIBILITY OF SUCH DAMAGE.
#

set -e

#
# This worker script bootstraps the RTEMS kernel.
#
. ${release_top}/rtems-release-version
echo "RTEMS Release RTEMS Kernel, v${rtems_release_version}"

#
# Defaults.
#
. ${release_top}/rtems-release-defaults

#
# The package, version, revision and release URL.
#
if [ $# -ne 5 ]; then
    echo "error: must be arguments, the package, version," \
	 "release, release URL and the top directory."
 exit 1
fi
package=$1
version=$2
revision=$3
release_url=$4
toptop=$5

release=${version}.${revision}
prefix=${package}-${release}

echo "Package: ${package}"
echo "Release: ${release}"

#
# Unpack the released RSB.
#
rsb=rtems-source-builder-${release}
echo "tar ${comp_tar}xf ../${rsb}.tar.${comp_ext}"
tar ${comp_tar}xf ../${rsb}.tar.${comp_ext}

#
# Build autoconf and automake.
#
cd ${rsb}/rtems
../source-builder/sb-set-builder --without-release-url \
				 --prefix=${top}/at ${version}/rtems-autotools
cd ../..

#
# Set the path to the autotools.
#
export XPATH=$PATH
export PATH=${top}/at/bin:$PATH

#
# Massage the version.revision string into major.minor.revision
#
release_ver_rel=$(echo ${release} | sed 's/-.*//g')
dots_plus_one=$(echo ${release_ver_rel} | tr . \\n | wc -l)
if [ $dots_plus_one -ne 2 ]; then
 echo "error: invalid release string, only one dot allowed"
 exit 1
fi
release_ver_rel_minor="${release_ver_rel}.0"

#
# Bootstrap RTEMS, collect the BSPs, and update the README.
#
cd ${prefix}
 echo "Set the version in the build system.."
 for f in $(find . -name version.m4)
 do
  echo " Generating ${f}"
  cat <<EOF > ${f}
dnl Autogenerated for RTEMS release: ${release} (${release_ver_rel_minor})
AC_DEFUN([RTEMS_VERSIONING],
m4_define([_RTEMS_VERSION],[${release_ver_rel_minor}]))
dnl RTEMS API Version
m4_define([_RTEMS_API],[${version}])
EOF
 done
 echo "Bootstrapping RTEMS"
  ./bootstrap -c
 if [ ${version} -lt 5 ]; then
  ./bootstrap -p
  ${top}/${rsb}/source-builder/sb-bootstrap
 else
  ./rtems-bootstrap
 fi
 echo "Cleaning autom4te.cache"
 rm -rf $(find . -name autom4te.cache)
 echo "Generate ARCH-BSP.txt"
 ./rtems-bsps -m > ${toptop}/ARCH-BSP.md
 echo "Generate README"
 cp README README.tmp
 cat README.tmp | \
  sed -e "s|docs\.rtems\.org\/branches\/master\/|docs\.rtems\.org\/releases\/rtems-docs-${release}\/|g" | \
  sed -e "s|docs\.rtems\.org\/doxygen\/branches\/master\/|docs\.rtems\.org\/doxygen\/releases\/rtems-doxygen-${release}\/|g" | \
  awk "/https:\/\/git\.rtems\.org\/rtems/{\$0=\$0\"?h=${version}\"}{print}" > README
 rm -r README.tmp
 cd ..

#
# Clean up.
#
rm -rf ${rsb} ${at}

echo "Bootstrap complete."

#
# Only build doxygen output if present on the system.
#
if [ "`command -v doxygen`"no = no ]; then
 echo "warning: doxygen not built: doxygen not found"
 exit 0
fi

#
# Doxygen
#
echo "Creating: Doxyfile"
top_srcdir=$(echo ${prefix}/cpukit | sed -e 's/\//\\\//g')
perl=$(which perl | sed -e 's/\//\\\//g')
if [ -f ${prefix}/cpukit/Doxyfile.in ]; then
 cat ${prefix}/cpukit/Doxyfile.in | \
  sed -e "s/@PACKAGE_VERSION@/${release}/g" \
      -e "s/@top_srcdir@/${top_srcdir}/g" \
      -e "s/@PERL@/${perl}/g" \
      -e "s/^INPUT[[:space:]].*=.*$/INPUT = ${top_srcdir}/g" \
      -e "s/^HAVE_DOT[[:blank:]]/DOT_NUM_THREADS = 1\\
HAVE_DOT /g"> Doxyfile
 doxygen Doxyfile
elif [ ${prefix}/Doxygen ]; then
 cat ${prefix}/Doxyfile | \
  sed -e "s/^PROJECT_NUMBER[[:space:]].*=.*$/PROJECT_NUMBER = ${release}/g" \
  > Doxyfile
 cd ${prefix}
  doxygen ../Doxyfile
  cd ..
else
 echo "error: no doxygen configuration file found"
 exit 1
fi

echo "Creating: rtems-doxygen-${release}.tar.${comp_ext}"
if [ ${version} -lt 5 ]; then
 mv cpukit_doxy/html rtems-doxygen-${release}
else
 cp -r ${prefix}/doc/html rtems-doxygen-${release}
fi
tar cf - rtems-doxygen-${release} | \
    ${comp} > ../rtems-${release}-doxygen-html.tar.${comp_ext}

exit 0