Restructure RTEMS Config Files

Add arch build files. This allows archs to have different versions
and patches for specific tools.

Break the RTEMS config directory up into separate directories to
make long term maintenance easier. This required a change to config.py
to handle the config files being in subdirs of the config directory.

The defaults have been updated to include the install SB root so
packages built before a package are available.

Add makeinfo to the required tools. GDB (and others) need it to
build without error.
This commit is contained in:
Chris Johns
2013-02-13 11:30:47 +11:00
parent aa46b9cec0
commit d963553b51
25 changed files with 167 additions and 15 deletions

View File

@@ -35,9 +35,7 @@ cd ..
export PATH="%{_bindir}:${PATH}"
mkdir -p build
cd build
%if %{host_force_32bit} == %{nil}
HOST_FORCE_32BIT="-m32"
%endif
%{?host_force_32bit:HOST_FORCE_32BIT="-m32"}
%if "%{_build}" != "%{_host}"
CFLAGS_FOR_BUILD="-g -O2 -Wall ${HOST_FORCE_32BIT}" \
%endif